:root {
  --forest: #183f3a;
  --teal: #245b57;
  --deep-brown: #3c2c24;
  --burlap: #b89974;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --sage: #cbd7c9;
  --ink: #2f312d;
  --muted: #68675f;
  --line: rgba(60, 44, 36, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, a { overflow-wrap: break-word; }

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.35rem 2rem;
}
.brand { text-decoration: none; line-height: 1.08; }
.brand-name { display: block; color: var(--forest); font: 600 1.25rem/1.1 "Fraunces", Georgia, serif; }
.brand-service { display: block; margin-top: .3rem; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; gap: 2rem; }
nav a { color: var(--deep-brown); font-size: .88rem; font-weight: 600; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--teal); }
.header-call { justify-self: end; border-bottom: 1px solid var(--burlap); color: var(--forest); font-size: .88rem; font-weight: 700; text-decoration: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  left: -14rem;
  bottom: -23rem;
  border: 1px solid rgba(36, 91, 87, .18);
  border-radius: 45% 55% 58% 42%;
}
.hero-copy { position: relative; z-index: 1; max-width: 680px; justify-self: end; padding: 6rem 5rem 6rem 2.5rem; }
.eyebrow { margin: 0 0 1rem; color: var(--burlap); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--forest); font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.08; }
h1 { margin-bottom: 1.6rem; font-size: clamp(3.7rem, 6.4vw, 6.7rem); letter-spacing: -.045em; }
h1 em, h2 em { color: var(--burlap); font-weight: 500; }
.hero-lead { max-width: 590px; margin: 0; color: #494a45; font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2.1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .8rem 1.35rem; border-radius: 2px; font-size: .9rem; font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.primary { background: var(--forest); color: #fff; }
.primary:hover { background: var(--teal); }
.text-link { color: var(--deep-brown); font-weight: 700; text-decoration: none; }
.text-link span { margin-left: .35rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-top: 3rem; color: var(--muted); font-size: .77rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.trust-row span { position: relative; }
.trust-row span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -.85rem; width: 3px; height: 3px; border-radius: 50%; background: var(--burlap); }

.portrait-wrap { position: relative; align-self: stretch; min-height: 700px; background: var(--forest); }
.portrait-frame { position: absolute; inset: 3.7rem 0 0 3.5rem; overflow: hidden; border-radius: 240px 0 0 0; background: #918a83; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(24,63,58,.35)); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(.92) contrast(.98) sepia(.04); }
.portrait-note { position: absolute; left: 1.5rem; bottom: 2rem; margin: 0; padding: .85rem 1rem; background: rgba(247,241,231,.92); color: var(--deep-brown); font-size: .82rem; line-height: 1.4; }
.portrait-note strong { color: var(--forest); font-family: "Fraunces", Georgia, serif; font-size: 1rem; }

.intro-strip { display: grid; grid-template-columns: 1fr 2fr; align-items: center; gap: 3rem; padding: 2.1rem max(2rem, calc((100vw - 1160px) / 2)); background: var(--deep-brown); color: var(--cream); }
.intro-strip p { margin: 0; color: var(--burlap); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.intro-strip h2 { margin: 0; color: var(--cream); font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 500; }

.section { max-width: 1160px; margin: 0 auto; padding: 7rem 2rem; }
.section-heading { max-width: 670px; }
.section-heading h2, .about-copy h2, .contact-section h2 { margin-bottom: 1.25rem; font-size: clamp(2.4rem, 4.2vw, 4.25rem); letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article { min-height: 245px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); transition: background .2s ease, transform .2s ease; }
.service-grid article:hover { background: var(--cream); transform: translateY(-3px); }
.service-grid article > span { color: var(--burlap); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.service-grid h3 { margin: 2.2rem 0 .75rem; font-size: 1.35rem; }
.service-grid p { margin: 0; color: var(--muted); font-size: .94rem; }
.scope-note { max-width: 900px; margin: 2rem 0 0; color: var(--muted); font-size: .9rem; }
.scope-note strong { color: var(--deep-brown); }

.about { display: grid; grid-template-columns: .78fr 1.22fr; gap: 6rem; align-items: center; max-width: none; padding-right: max(2rem, calc((100vw - 1160px) / 2)); padding-left: max(2rem, calc((100vw - 1160px) / 2)); background: #e7ebe3; }
.about-image { position: relative; isolation: isolate; display: grid; place-items: center; min-height: 510px; padding: 3rem; overflow: hidden; border-radius: 48% 48% 8px 8px; background: var(--teal); color: var(--cream); text-align: center; }
.botanical-backdrop { position: absolute; z-index: 0; width: 112%; max-width: none; height: 112%; object-fit: contain; opacity: .22; transform: scaleX(-1) rotate(-7deg) scale(1.08); filter: sepia(.08); }
.monogram { position: relative; z-index: 2; display: grid; place-items: center; width: 10.5rem; height: 10.5rem; border: 1px solid rgba(247,241,231,.76); border-radius: 50%; background: var(--forest); box-shadow: 0 18px 55px rgba(16,47,43,.28); font: 500 3.5rem/1 "Fraunces", Georgia, serif; }
.monogram span { position: relative; z-index: 1; text-shadow: 0 1px 16px rgba(24,63,58,.45); }
.about-image p { position: relative; z-index: 2; margin: -4rem 0 0; color: var(--sage); font: 500 1.1rem/1.5 "Fraunces", Georgia, serif; text-shadow: 0 1px 12px rgba(24,63,58,.55); }
.about-copy > p:not(.eyebrow) { color: #4d4f49; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(31,73,58,.2); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--forest); font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; }
.about-values span { margin-top: .25rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.centered { margin: 0 auto; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 0; margin: 3.5rem 0 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding-top: 1.5rem; border-top: 2px solid var(--sage); }
.steps li > span { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--cream); color: var(--burlap); font: 600 1.1rem/1 "Fraunces", Georgia, serif; }
.steps h3 { margin: .35rem 0 .55rem; font-size: 1.25rem; }
.steps p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-section { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 4rem; padding: 6rem max(2rem, calc((100vw - 1160px) / 2)); background: var(--forest); color: var(--cream); }
.contact-section h2 { max-width: 760px; margin: 0; color: var(--cream); }
.contact-subtext { max-width: 720px; margin: 1.25rem 0 0; color: rgba(247,241,231,.76); font-size: .96rem; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.cream { width: 100%; background: var(--cream); color: var(--forest); }
.cream:hover { background: #fff; }
.outline { width: 100%; border: 1px solid rgba(247,241,231,.65); color: var(--cream); }
.outline:hover { background: rgba(247,241,231,.1); }

footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.4rem max(2rem, calc((100vw - 1160px) / 2)); background: #102f2b; color: rgba(247,241,231,.72); font-size: .75rem; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { width: 100%; max-width: 760px; justify-self: center; padding: 5rem 2rem 4rem; }
  .portrait-wrap { min-height: 560px; }
  .portrait-frame { inset: 0 0 0 2rem; }
  .intro-strip { grid-template-columns: 1fr; gap: .5rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { width: min(100%, 620px); min-height: 430px; margin: 0 auto; }
  .botanical-backdrop { width: 105%; height: 105%; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { padding: 1rem 1.2rem; }
  .brand-service { display: none; }
  .header-call { display: inline-flex; align-items: center; min-height: 46px; padding: .55rem .8rem; border: 1px solid var(--burlap); }
  h1 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .hero-copy { padding: 4rem 1.3rem 3.5rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-row { gap: .5rem 1rem; }
  .trust-row span::after { display: none; }
  .portrait-wrap { min-height: 470px; }
  .portrait-frame { left: 1.3rem; border-radius: 180px 0 0 0; }
  .intro-strip, .section, .about, .contact-section { padding-left: 1.3rem; padding-right: 1.3rem; }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .service-grid, .steps, .about-values { grid-template-columns: 1fr; }
  .service-grid article { min-height: 0; }
  .service-grid h3 { margin-top: 1.2rem; }
  .about-image { min-height: 370px; padding: 2rem; border-radius: 44% 44% 6px 6px; }
  .botanical-backdrop { width: 122%; height: 122%; opacity: .2; }
  .monogram { width: 8.5rem; height: 8.5rem; font-size: 3rem; }
  .about-image p { margin-top: -2.5rem; }
  .steps { gap: 2.5rem; }
  .contact-actions { width: 100%; }
  .button { width: 100%; min-height: 52px; }
  footer { align-items: center; flex-direction: column; padding: 1.4rem 1.3rem; text-align: center; }
}

@media (max-width: 400px) {
  .site-header { gap: .75rem; }
  .brand-name { font-size: 1.05rem; }
  .header-call { font-size: .8rem; }
  .hero-copy { padding-top: 3.5rem; }
  h1 { font-size: 3rem; }
  .portrait-wrap { min-height: 410px; }
  .about-image { min-height: 330px; }
  .intro-strip h2 { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
