:root {
  --ink: #121212;
  --charcoal: #1b1b19;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --gold: #bd9559;
  --gold-light: #d6b77f;
  --muted: #6f6c65;
  --line: rgba(18, 18, 18, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.8rem); letter-spacing: -.035em; }
h3 { font-size: 1.65rem; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(250px, 370px) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(24px, 5vw, 78px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.brand { display: block; }
.brand img {
  width: min(340px, 100%);
  filter: brightness(0) invert(1);
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.primary-nav a, .header-phone {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.primary-nav a:hover, .header-phone:hover { color: var(--gold-light); }
.header-phone { white-space: nowrap; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(940px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,10,9,.9) 0%, rgba(10,10,9,.64) 42%, rgba(10,10,9,.16) 76%),
    linear-gradient(0deg, rgba(10,10,9,.42), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 86%);
  padding: 160px clamp(24px, 8vw, 130px) 90px;
}
.hero-content h1 { max-width: 800px; margin-bottom: 28px; }
.hero-copy {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,.84);
}
.eyebrow {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #8c672e; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-decoration: none;
  font: 700 .85rem/1 "DM Sans", sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
}
.button-gold { color: var(--ink); background: var(--gold-light); }
.button-gold:hover { background: white; }
.button-outline { color: white; border-color: rgba(255,255,255,.5); }
.button-outline:hover { color: var(--ink); background: white; }
.text-link { font-weight: 700; text-underline-offset: 4px; }
.text-link.light { color: white; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 78px);
  bottom: 28px;
  display: flex;
  gap: 28px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-pad { padding: 120px clamp(24px, 7vw, 110px); }
.intro {
  display: grid;
  grid-template-columns: .7fr 1.4fr;
  gap: 8vw;
  padding: 130px clamp(24px, 9vw, 150px);
  background: var(--cream);
}
.intro h2 { max-width: 900px; }
.intro div > p { max-width: 750px; color: var(--muted); font-size: 1.12rem; }
.section-heading { max-width: 880px; margin-bottom: 68px; }
.section-heading.compact { max-width: 690px; margin-bottom: 54px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-card { min-height: 390px; padding: 38px 34px 26px 0; border-right: 1px solid var(--line); }
.service-card + .service-card { padding-left: 34px; }
.service-card:last-child { border-right: 0; }
.card-number, .principles span {
  display: block;
  margin-bottom: 70px;
  color: #9a7844;
  font-size: .78rem;
  letter-spacing: .15em;
}
.service-card p { min-height: 105px; color: var(--muted); }
.approach {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  color: white;
  background: var(--charcoal);
}
.approach-panel p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.approach-panel .button { margin-top: 25px; }
.principles > div { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.principles span { margin-bottom: 12px; color: var(--gold-light); }
.principles h3 { margin-bottom: 8px; }
.principles p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.about {
  background:
    linear-gradient(90deg, rgba(189,149,89,.08), transparent 42%),
    var(--paper);
}
.about-heading {
  display: grid;
  grid-template-columns: .72fr 1.45fr;
  gap: 8vw;
  align-items: start;
  margin-bottom: 70px;
}
.about-heading h2 { max-width: 900px; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 32px;
  margin: 0;
  overflow: hidden;
  background: #dedbd6;
  box-shadow: 0 30px 70px rgba(18,18,18,.13);
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-story {
  padding-left: clamp(0px, 3vw, 46px);
  border-left: 1px solid var(--gold);
}
.about-story p { color: #57544e; font-size: 1.05rem; }
.about-story .about-lead {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.35;
}
.button-dark { color: white; background: var(--charcoal); }
.button-dark:hover { background: #8c672e; }
.about-button { margin-top: 36px; min-width: 180px; }
.testimonials {
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(189,149,89,.2), transparent 30%),
    #181817;
}
.testimonial-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 64px;
}
.testimonial-heading h2 { max-width: 780px; margin-bottom: 0; }
.review-summary {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 15px;
  align-items: center;
  min-width: 190px;
  padding-bottom: 10px;
}
.review-summary .stars {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: .15em;
}
.review-summary strong {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  line-height: 1;
}
.review-summary span:last-child { color: rgba(255,255,255,.62); font-size: .85rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.testimonial-card {
  min-height: 300px;
  margin: 0;
  padding: 42px 44px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.testimonial-card:nth-child(even) { border-right: 0; }
.testimonial-card:nth-last-child(-n+2) { border-bottom: 0; }
.testimonial-card blockquote {
  min-height: 150px;
  margin: 0 0 38px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.4;
}
.testimonial-card figcaption { display: grid; }
.testimonial-card figcaption strong { color: var(--gold-light); font-size: .86rem; }
.testimonial-card figcaption span { color: rgba(255,255,255,.5); font-size: .76rem; }
.review-links { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 34px; }
.review-note { margin: 26px 0 0; color: rgba(255,255,255,.45); font-size: .75rem; }
.markets { background: var(--cream); }
.market-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-list span { padding: 30px 20px 30px 0; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.contact {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 9vw;
  color: white;
  background: #232321;
}
.contact-copy > p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.68); }
.contact-direct { display: grid; gap: 10px; margin-top: 42px; }
.contact-direct a { width: max-content; color: var(--gold-light); font-size: 1.1rem; text-underline-offset: 4px; }
.contact-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  padding: 12px 0;
  color: white;
  background: transparent;
  font: inherit;
}
.contact-form option { color: var(--ink); background: white; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 4px; }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; font-weight: 400; }
.consent input { width: 17px; margin-top: 4px; }
.submit-button { width: max-content; min-width: 180px; }
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 46px clamp(24px, 5vw, 78px);
  color: rgba(255,255,255,.7);
  background: #111;
  font-size: .8rem;
}
.site-footer > div { display: grid; align-content: start; gap: 5px; }
.site-footer > div:nth-child(2) { text-align: center; }
.site-footer > div:last-child { text-align: right; }
.footer-brand strong { color: white; font-family: "Playfair Display", serif; font-size: 1.1rem; }

.simple-page { min-height: 100vh; padding: 120px 24px; background: var(--cream); }
.simple-card { width: min(760px, 100%); margin: 0 auto; padding: clamp(30px, 6vw, 72px); background: white; box-shadow: 0 24px 80px rgba(0,0,0,.08); }
.simple-card h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.simple-card h2 { margin-top: 36px; font-size: 1.6rem; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 88px; padding: 14px 24px; }
  .brand img { width: 255px; }
  .menu-toggle {
    display: block;
    padding: 10px 0;
    border: 0;
    color: white;
    background: transparent;
    font: 700 .86rem "DM Sans", sans-serif;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 18px;
    background: rgba(18,18,18,.97);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; padding: 13px; text-align: center; }
  .header-phone { display: none; }
  .intro, .approach, .contact { grid-template-columns: 1fr; }
  .about-heading, .about-layout { grid-template-columns: 1fr; }
  .about-heading { gap: 20px; }
  .about-portrait { position: static; width: min(520px, 100%); }
  .about-story { padding-left: 0; border-left: 0; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:nth-child(2) { border-right: 0; }
  .testimonial-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card { min-height: 0; padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .card-number { margin-bottom: 25px; }
  .service-card p { min-height: 0; }
  .market-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 3.25rem; }
  .hero { min-height: 820px; align-items: flex-end; }
  .hero-content { width: 100%; padding: 160px 24px 115px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(10,10,9,.94) 5%, rgba(10,10,9,.5) 72%, rgba(10,10,9,.38)); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-note { left: 24px; right: auto; gap: 16px; }
  .section-pad, .intro { padding: 84px 24px; }
  .intro { grid-template-columns: 1fr; gap: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .testimonial-heading { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card, .testimonial-card:first-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .testimonial-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .testimonial-card:last-child { border-bottom: 0; }
  .testimonial-card blockquote { min-height: 0; margin-bottom: 24px; }
  .market-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div:nth-child(2), .site-footer > div:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
