/* ===================== TOKENS ===================== */
:root {
  --cream: #f4f0e7;
  --cream-2: #efe8db;
  --ink: #221f1a;
  --ink-soft: #4a4740;
  --muted: #6d685e;
  --line: #ddd3c0;
  --gold: #a9834a;
  --gold-soft: #c2a271;
  --max: 1200px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
a { color: inherit; text-decoration: none; }

/* ===================== BRAND ===================== */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; }
.brand-word {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.16em; display: flex; align-items: baseline; gap: 0.5em;
  color: var(--ink);
}
.brand-sub { font-size: 0.6em; letter-spacing: 0.3em; color: var(--gold); font-weight: 500; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav { display: flex; gap: 48px; }
.nav a {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .2s; position: relative;
}
.nav a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); display: block; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }
.hero-inner { padding: 104px 40px 116px; position: relative; z-index: 1; }

/* ---- Decorative olive-branch motif (from the logo) ---- */
.hero::before, .hero::after,
.section-cta::before, #services::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  background: url("assets/olive-branch.svg") no-repeat center / contain;
}
/* Hero: large branch upper-right, small mirrored branch lower-left */
.hero::before { width: 560px; height: 240px; right: -30px; top: 96px; transform: rotate(-6deg); opacity: 0.10; }
.hero::after  { width: 380px; height: 163px; left: -70px; bottom: 40px; transform: rotate(168deg); opacity: 0.06; }
/* Services: faint branch in the lower-right corner */
#services::after { width: 460px; height: 197px; right: -90px; bottom: -20px; transform: rotate(8deg); opacity: 0.05; }
/* Dark CTA band: gold branch reads nicely at slightly higher opacity */
.section-cta { position: relative; overflow: hidden; }
.section-cta::before { width: 420px; height: 180px; left: -60px; bottom: -20px; transform: rotate(174deg); opacity: 0.12; }
#services { position: relative; overflow: hidden; }
#services .container, .section-cta .container { position: relative; z-index: 1; }

.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1.02;
  letter-spacing: -0.01em; max-width: 12ch;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--gold); }
.rule { display: block; width: 56px; height: 2px; background: var(--gold); margin: 40px 0 32px; }
.hero-lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin: 40px 0 44px; max-width: 660px; }
.pills li {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.08rem;
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 2px; color: var(--ink-soft);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 19px 32px; border-radius: 2px; transition: all .22s; cursor: pointer;
  font-weight: 400; border: 1px solid transparent; font-family: var(--sans);
}
.btn-dark { background: var(--gold); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ===================== STRIP =====================
   A quiet credentials band. Same vocabulary as the rest of the page:
   cream ground, hairline rules, gold diamond, uppercase micro-label. */
.strip {
  background: var(--cream-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.strip-inner span {
  display: flex; align-items: center; gap: 11px;
  padding: 26px 26px; line-height: 1.5;
  border-left: 1px solid var(--line);
}
.strip-inner span:first-child { border-left: 0; padding-left: 0; }
.strip-inner span:last-child { padding-right: 0; }
.strip-inner span::before {
  content: "◆"; color: var(--gold); font-size: 0.66em; flex: none;
}

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; }
.section-alt { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 22px;
}
.section-lede { font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }

/* ===================== SERVICES ===================== */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 56px;
}
.card { background: var(--cream); padding: 44px 36px; transition: background .2s; }
.card:hover { background: var(--cream-2); }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; margin-bottom: 14px; transition: color .2s; }
.card:hover h3 { color: var(--gold); }
.card p { color: var(--muted); font-size: 0.98rem; }

.service-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.service-cats h4 {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.service-cats p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===================== ABOUT ===================== */
.about-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.about-copy p { color: var(--ink-soft); margin-bottom: 20px; max-width: 56ch; }
.about-copy strong { font-weight: 500; color: var(--ink); }
.about-facts { display: flex; flex-direction: column; gap: 22px; }
.fact { border-top: 1px solid var(--line); padding-top: 18px; }
.fact-num { display: block; font-family: var(--serif); font-size: 1.85rem; font-weight: 500; color: var(--gold); }
.fact-label { color: var(--muted); font-size: 0.92rem; }

/* ===================== CTA ===================== */
.section-cta { background: var(--ink); color: var(--cream); text-align: center; }
.section-cta .section-title { color: var(--cream); }
.section-cta .section-lede { color: rgba(244,240,231,0.72); margin: 0 auto 40px; }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.section-cta .btn-dark { background: var(--gold); color: #fff; }
.section-cta .btn-dark:hover { background: var(--gold-soft); }
.section-cta .btn-ghost { color: var(--cream); border-color: rgba(244,240,231,0.4); }
.section-cta .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ===================== CONTACT ===================== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-list { list-style: none; margin-top: 32px; }
.contact-list li { display: grid; grid-template-columns: 150px 1fr; padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline; }
.contact-list li span:first-child { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-list address { font-style: normal; }
.contact-list a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea {
  font-family: var(--sans); font-size: 1rem; padding: 14px 16px;
  border: 1px solid var(--line); background: var(--cream); color: var(--ink); border-radius: 2px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169, 131, 74, 0.12);
}
.contact-form .btn { align-self: flex-start; }
.contact-form .optional { text-transform: none; letter-spacing: normal; color: var(--muted); font-size: 0.92em; }
.form-note { font-size: 0.8rem; color: var(--muted); letter-spacing: normal; text-transform: none; }
.form-note a { color: var(--gold); }

.form-status { font-size: 0.9rem; letter-spacing: normal; text-transform: none; margin-top: -4px; display: none; }
.form-status.is-success, .form-status.is-error, .form-status.is-info {
  display: block; padding: 12px 16px; border-radius: 2px; border: 1px solid var(--line);
}
.form-status.is-success { color: #2f5d3a; background: #eef4ec; border-color: #cfe1cf; }
.form-status.is-error { color: #7a2e2e; background: #f6ecea; border-color: #e6cfcb; }
.form-status.is-info { color: var(--ink-soft); background: var(--cream-2); }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.brand-footer .brand-logo { height: 44px; width: 44px; }
.brand-footer .brand-word { font-size: 1.2rem; }
.footer-nav { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.copyright { font-size: 0.82rem; color: var(--muted); }

/* ===================== LEGAL PAGES ===================== */
.legal-hero { padding: 72px 0 40px; border-bottom: 1px solid var(--line); }
.legal-body { padding: 64px 0 100px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 { font-family: var(--serif); font-weight: 600; font-size: 1.75rem; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 14px; font-size: 1rem; }
.legal-body ul { padding-left: 22px; margin-bottom: 20px; }
.legal-body .meta { color: var(--muted); font-size: 0.9rem; }
.back-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ===================== POLISH =====================
   Small refinements only — safe to delete this whole block to revert. */

/* Warm selection instead of the browser's default blue */
::selection { background: var(--gold-soft); color: var(--ink); }

/* Visible keyboard focus, in the brand gold */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Anchor links (#services, #book) were landing under the sticky header */
section[id] { scroll-margin-top: 96px; }

/* Nav: a gold hairline that draws itself in from the left */
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* Buttons: the arrow eases forward on hover */
.btn span { transition: transform .22s ease; }
.btn:hover span { transform: translateX(5px); }

/* Pills: border warms to gold on hover */
.pills li { transition: border-color .22s, color .22s; }
.pills li:hover { border-color: var(--gold-soft); color: var(--ink); }

/* Keep headings from leaving one orphaned word on the last line */
.hero-title, .section-title, .card h3, .legal-body h2 { text-wrap: balance; }

/* Body links on the legal pages read as links */
.legal-body a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}

/* Footer and contact links pick up the same easing as the nav */
.footer-nav a, .contact-list a { transition: color .2s; }

/* Respect a reader's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 88px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); }
  .nav.open a { padding: 18px 24px; border-top: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .grid { grid-template-columns: 1fr; }
  .service-cats { grid-template-columns: 1fr; gap: 32px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero::before { width: 320px; height: 137px; right: -70px; top: 60px; }
  .hero::after { width: 240px; height: 103px; }
  .section-cta::before { width: 300px; height: 128px; }
  .section { padding: 72px 0; }
  .hero-inner { padding: 60px 24px 76px; }
  .brand-word { font-size: 1.15rem; }
  .brand-logo { height: 44px; width: 44px; }
  .strip-inner { grid-template-columns: 1fr; letter-spacing: 0.14em; }
  .strip-inner span {
    border-left: 0; border-top: 1px solid var(--line);
    padding: 15px 0;
  }
  .strip-inner span:first-child { border-top: 0; }
}
