:root {
  --taupe: #a99a87;
  --taupe-dark: #74685b;
  --sand: #e9e3dc;
  --paper: #f8f6f2;
  --white: #ffffff;
  --ink: #282725;
  --muted: #68635d;
  --line: rgba(40,39,37,.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; font-size: 17px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
h1 { margin-bottom: 1.6rem; font-size: clamp(3rem, 6.4vw, 6.6rem); }
h1 em { color: var(--taupe-dark); font-weight: 500; }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.35rem, 4.2vw, 4.5rem); }
h3 { margin-bottom: .45rem; font-size: 1.2rem; line-height: 1.3; }
.eyebrow { margin-bottom: 1.2rem; font-size: .78rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }

.site-header { position: relative; z-index: 10; display: flex; width: 100%; min-height: 126px; align-items: center; justify-content: space-between; padding: 1.25rem clamp(1.25rem, 5vw, 5rem); background: var(--taupe); color: var(--white); }
.brand { display: block; width: 205px; overflow: hidden; }
.brand img { width: 100%; }
nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); font-size: .9rem; font-weight: 500; }
nav a { text-decoration: none; }
.nav-contact { border-bottom: 1px solid currentColor; }

.hero { min-height: 680px; display: flex; align-items: center; background: var(--sand); }
.hero-copy { width: min(1200px, 100%); padding: 6rem clamp(2rem, 8vw, 9rem); }
.hero-text { max-width: 620px; margin-bottom: 2rem; color: var(--muted); font-size: 1.2rem; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .8rem 1.45rem; border: 1px solid transparent; text-decoration: none; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: var(--white); }
.dark { background: var(--ink); color: var(--white); }
.light { background: var(--white); color: var(--ink); }
.text-link { font-weight: 600; text-decoration: none; }

.intro { display: grid; grid-template-columns: 120px minmax(0, 900px); gap: 2rem; padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 9rem); }
.intro > div > p:last-child { max-width: 760px; color: var(--muted); font-size: 1.15rem; }
.section-number { color: var(--taupe-dark); font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; }

.service-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 8rem); padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 8vw, 9rem); background: var(--taupe-dark); color: var(--white); }
.service-heading { align-self: start; position: sticky; top: 4rem; }
.service-heading > p:last-child { max-width: 520px; color: rgba(255,255,255,.78); }
.service-list article { display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem; padding: 1.6rem 0 1.8rem; border-top: 1px solid rgba(255,255,255,.25); }
.service-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.service-list article > span { color: rgba(255,255,255,.62); font-size: .8rem; }
.service-list p { margin-bottom: 0; color: rgba(255,255,255,.76); }

.individual { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 720px; }
.individual-mark { display: grid; place-items: center; overflow: hidden; background: var(--taupe); }
.individual-mark img { width: 100%; height: 100%; object-fit: cover; }
.individual-copy { padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 9rem); }
.individual-copy > p { max-width: 720px; color: var(--muted); }
.individual-copy ul { display: flex; gap: 1rem 2.4rem; flex-wrap: wrap; padding: 1.3rem 0 1.8rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style-position: inside; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--white); }
.about-photo { max-height: 760px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.about-copy { align-self: center; padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 9rem); }
.about-copy p { max-width: 700px; color: var(--muted); }
.about-copy .credential { margin-bottom: 1.8rem; color: var(--taupe-dark); font-weight: 600; }

.contact { padding: clamp(5rem, 10vw, 9rem) 1.5rem; background: var(--ink); color: var(--white); text-align: center; }
.contact h2 { max-width: 900px; margin-right: auto; margin-left: auto; }
.contact > p:not(.eyebrow):not(.phone) { color: rgba(255,255,255,.75); }
.contact .phone { margin: 1.5rem 0 0; font-weight: 600; letter-spacing: .04em; }

footer { display: grid; grid-template-columns: 220px 1fr 1fr auto; align-items: center; gap: 1.5rem; padding: 2rem clamp(1.5rem, 5vw, 5rem); background: var(--taupe); color: var(--white); font-size: .8rem; }
footer img { width: 210px; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .site-header { min-height: 104px; }
  nav a:not(.nav-contact) { display: none; }
  .hero { min-height: 620px; }
  .hero-copy { padding-top: 5rem; padding-bottom: 5rem; }
  .intro { grid-template-columns: 1fr; }
  .section-number { display: none; }
  .service-panel { grid-template-columns: 1fr; }
  .service-heading { position: static; }
  .individual, .about { grid-template-columns: 1fr; }
  .individual-mark { max-height: 430px; }
  .about-photo { max-height: 620px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { padding: 1rem 1.1rem; }
  .brand, footer img { width: 165px; }
  .nav-contact { padding: .35rem 0; }
  h1 { font-size: 3.05rem; }
  .hero-copy { padding: 4rem 1.25rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .intro, .service-panel, .individual-copy, .about-copy { padding: 4.5rem 1.25rem; }
  .individual-mark { height: 320px; }
  .service-list article { grid-template-columns: 34px 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: 0 auto; }
}

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