@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #171717;
  --muted: #6d6d6d;
  --line: #e6e6e2;
  --accent: #b58a4a;
  --dark: #111111;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.topbar {
  height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,247,245,.92);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 90px 6vw;
  background:
    radial-gradient(circle at 78% 22%, rgba(181,138,74,.12), transparent 30%),
    linear-gradient(135deg, #f7f7f5 0%, #efefeb 100%);
}

.hero-inner {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 100px);
  line-height: .98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

h1 span { color: var(--accent); }

.lead {
  max-width: 680px;
  margin: 32px 0 36px;
  font-size: clamp(17px, 2vw, 21px);
  color: #555;
}

.scroll-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.scroll-link span {
  font-size: 20px;
  transition: transform .2s;
}

.scroll-link:hover span { transform: translateY(4px); }

.intro {
  padding: 110px 6vw;
  background: var(--surface);
}

.section-label {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 55px 0 70px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.intro-grid p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card {
  min-height: 245px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s, background .25s;
}

.card:hover {
  transform: translateY(-4px);
  background: #fafaf8;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid #d8c7ab;
  border-radius: 50%;
  color: var(--accent);
  font-size: 19px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote {
  padding: 130px 6vw;
  background: var(--dark);
  color: white;
  text-align: center;
}

.quote-mark {
  font-size: 76px;
  line-height: .5;
  color: var(--accent);
}

blockquote {
  margin: 35px auto 0;
  max-width: 900px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

blockquote strong { color: #d2aa6d; }

.closing {
  max-width: 1000px;
  margin: auto;
  padding: 120px 6vw;
}

.closing h2 { margin-bottom: 28px; }

.closing > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

footer {
  padding: 30px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer .brand { color: var(--text); }

footer p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 800px) {
  .hero { min-height: 65vh; padding-top: 70px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .topbar { height: 66px; padding: 0 22px; }
  .hero, .intro, .closing { padding-left: 22px; padding-right: 22px; }
  .hero { min-height: 70vh; padding-top: 60px; padding-bottom: 60px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; padding: 28px; }
  .quote { padding: 90px 22px; }
  .closing { padding-top: 90px; padding-bottom: 90px; }
  footer { padding: 24px 22px; flex-direction: column; gap: 10px; align-items: flex-start; }
}


/* SEO / informational section */
.locations {
  padding: 7rem 8vw;
  background: #f6f6f3;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.locations h2 {
  margin: 0;
}
.locations p {
  margin: 0 0 1.25rem;
  max-width: 42rem;
}
@media (max-width: 760px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .locations {
    padding: 5rem 7vw;
  }
}
