/* ==========================================================================
   Lindenmere — Private Holdings & Advisory
   One cohesive, hand-written stylesheet. Shared by every page.
   Palette: botanical heritage (pine green + aged brass + sage parchment)
   Type:    Fraunces (display serif) + Manrope (grotesk body/utility)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Pine greens — primary brand, dark surfaces */
  --pine-900: #0a1c14;
  --pine-800: #0f2a20;
  --pine-700: #133326;
  --pine-600: #1b4434;
  --pine-500: #2c6a52;
  --pine-400: #4a8a72;
  --pine-300: #7aa994;

  /* Brass — heritage accent, hairlines, marks */
  --brass-700: #7e6238;
  --brass-600: #977943;
  --brass-500: #b08d57;
  --brass-400: #c6ab7c;
  --brass-300: #dcc395;
  --brass-200: #ead9b6;

  /* Sage parchment — page surfaces (cooler/greener than default cream) */
  --parchment: #ecefe7;
  --bone: #f6f8f2;
  --chiffon: #e1e6da;
  --mist: #d4dad0;

  /* Ink & text */
  --ink: #141d18;
  --ink-soft: #36433a;
  --slate: #5d6a60;
  --slate-soft: #7d887e;

  /* Lines */
  --hair: rgba(20, 29, 24, 0.14);
  --hair-strong: rgba(20, 29, 24, 0.22);
  --hair-light: rgba(246, 248, 242, 0.16);
  --hair-brass: rgba(176, 141, 87, 0.38);

  /* Brand ramps */
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb858;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.4rem);
  --step-2: clamp(1.4rem, 1.25rem + 0.7vw, 1.95rem);
  --step-3: clamp(1.85rem, 1.55rem + 1.4vw, 2.85rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.4vw, 4.25rem);
  --step-5: clamp(2.9rem, 2.1rem + 3.6vw, 5.4rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--pine-600); text-decoration: none; }
a:hover { color: var(--pine-500); }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: 0.35rem; }

:focus-visible {
  outline: 2px solid var(--brass-500);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--pine-600);
  color: var(--brass-200);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--pine-900);
  font-optical-sizing: auto;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); font-weight: 500; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: var(--step-0); font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

p { text-wrap: pretty; }
p + p { margin-top: 1rem; }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-700);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass-500);
  display: inline-block;
}
.eyebrow--center::before { display: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
  position: relative;
}
.section--tight { padding-block: clamp(2.75rem, 5vw, 4rem); }
.section--pine { background: var(--pine-800); color: var(--bone); }
.section--pine-700 { background: var(--pine-700); color: var(--bone); }
.section--bone { background: var(--bone); }
.section--chiffon { background: var(--chiffon); }

.section--pine h1,
.section--pine h2,
.section--pine h3 { color: var(--bone); }
.section--pine .eyebrow { color: var(--brass-300); }
.section--pine p { color: rgba(246, 248, 242, 0.82); }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); font-size: var(--step-0); }

/* Ensure fragment targets (incl. cross-page links like services.html#x) aren't hidden under the sticky header */
:target,
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.stack > * + * { margin-top: 1rem; }
.measure { max-width: 64ch; }
.center { text-align: center; }

/* Brass hairline divider with leaf node */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--brass-500);
  margin-block: clamp(2.5rem, 5vw, 4rem);
}
.rule::before,
.rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--hair-brass));
}
.rule::after { background: linear-gradient(90deg, var(--hair-brass), transparent); }
.rule .leaf { width: 20px; height: 20px; opacity: 0.85; }

/* ---------- Leaf mark ---------- */
.leaf { width: 28px; height: 28px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pine-600);
  --btn-fg: var(--bone);
  --btn-border: var(--pine-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  text-align: center;
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(10, 28, 20, 0.5);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  --btn-bg: var(--brass-500);
  --btn-fg: var(--pine-900);
  --btn-border: var(--brass-500);
}
.btn--primary:hover { --btn-bg: var(--brass-400); --btn-border: var(--brass-400); }

.btn--pine {
  --btn-bg: var(--pine-600);
  --btn-fg: var(--bone);
  --btn-border: var(--pine-600);
}
.btn--pine:hover { --btn-bg: var(--pine-500); --btn-border: var(--pine-500); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--pine-700);
  --btn-border: var(--hair-strong);
}
.btn--ghost:hover { --btn-border: var(--pine-500); color: var(--pine-600); box-shadow: none; transform: translateY(-1px); }

.btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  --btn-border: rgba(246, 248, 242, 0.4);
}
.btn--light:hover { --btn-border: var(--brass-300); color: var(--brass-300); box-shadow: none; }

.btn--whatsapp {
  --btn-bg: var(--whatsapp);
  --btn-fg: #ffffff;
  --btn-border: var(--whatsapp);
}
.btn--whatsapp:hover { --btn-bg: var(--whatsapp-dark); --btn-border: var(--whatsapp-dark); }

.btn--sm { padding: 0.7rem 1.05rem; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 239, 231, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--hair);
  box-shadow: 0 1px 30px -22px rgba(10, 28, 20, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--pine-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand:hover { color: var(--pine-600); }
.brand .leaf { color: var(--brass-600); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--brass-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--pine-700); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--pine-800); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pine-800);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--brass-600); }
.header-phone:hover { color: var(--pine-600); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair-strong);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--pine-800);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top: 0.3s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(176, 141, 87, 0.10), transparent 55%),
    linear-gradient(180deg, var(--parchment) 0%, var(--chiffon) 100%);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.5rem, 7vw, 5.5rem);
}
.hero__leaf {
  position: absolute;
  top: -4%;
  right: -6%;
  width: clamp(280px, 42vw, 620px);
  color: var(--pine-600);
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(8deg);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__copy .eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-size: var(--step-5);
  line-height: 1.04;
  margin-bottom: 1.4rem;
  color: var(--pine-900);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pine-600);
}
.hero__sub {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero__ctas { margin-bottom: 2.25rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair);
}
.hero__meta-item .k {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pine-700);
  line-height: 1.1;
}
.hero__meta-item .l {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--slate);
}

.hero__card {
  background: var(--pine-800);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(176, 141, 87, 0.25);
  box-shadow: 0 40px 80px -40px rgba(10, 28, 20, 0.55);
  position: relative;
}
.hero__card .leaf { color: var(--brass-400); margin-bottom: 1.25rem; }
.hero__card h2 {
  color: var(--bone);
  font-size: var(--step-1);
  margin-bottom: 0.75rem;
}
.hero__card p { color: rgba(246, 248, 242, 0.78); font-size: 0.96rem; }
.hero__card-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.hero__card-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(246, 248, 242, 0.9);
  padding-left: 0;
}
.hero__card-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-400);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ---------- Intro / statement band ---------- */
.statement {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.statement p {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
  color: var(--pine-800);
  font-weight: 400;
}
.statement p em { font-style: italic; color: var(--pine-500); }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ---------- Capability / service cards ---------- */
.card {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -32px rgba(10, 28, 20, 0.45);
  border-color: var(--hair-brass);
}
.card__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pine-800);
  color: var(--brass-300);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.6rem; color: var(--pine-900); }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card__link {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brass-700);
  letter-spacing: 0.02em;
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Principles (why) ---------- */
.principle {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.principle__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brass-600);
  min-width: 2rem;
  padding-top: 0.1rem;
  letter-spacing: 0.04em;
}
.principle h3 { margin-bottom: 0.4rem; }
.principle p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Process (numbered — real sequence) ---------- */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process__step {
  position: relative;
  padding: 0 1.5rem;
}
.process__step + .process__step { border-left: 1px solid var(--hair-brass); }
.process__step .step-no {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--brass-500);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process__step h3 { margin-bottom: 0.5rem; color: var(--bone); }
.process__step p { font-size: 0.92rem; color: rgba(246, 248, 242, 0.74); }

/* ---------- Sectors ---------- */
.sector {
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: var(--bone);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.sector:hover { border-color: var(--hair-brass); background: #fff; }
.sector svg { width: 22px; height: 22px; color: var(--brass-600); flex-shrink: 0; }
.sector span { font-weight: 600; color: var(--pine-800); font-size: 0.96rem; }

/* ---------- Split feature (used on capabilities & about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow { grid-template-columns: 0.9fr 1.1fr; }

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}
.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.feature-list li svg { width: 18px; height: 18px; color: var(--pine-500); flex-shrink: 0; margin-top: 0.2rem; }

/* Rich capability block */
.cap {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--hair);
  align-items: start;
}
.cap:first-of-type { border-top: none; }
.cap__no {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brass-700);
  text-transform: uppercase;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.cap__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--pine-800);
  color: var(--brass-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cap__icon svg { width: 28px; height: 28px; }
.cap h2 { margin-bottom: 0.85rem; }
.cap__body > p { color: var(--ink-soft); }
.cap__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.75rem;
}
.cap__col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hair);
}
.cap__col ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.cap__col li { font-size: 0.9rem; color: var(--ink-soft); display: flex; gap: 0.5rem; }
.cap__col li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-500);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ---------- Values ---------- */
.value {
  text-align: left;
  padding: 1.5rem 0;
}
.value__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}
.value__title svg { width: 22px; height: 22px; color: var(--brass-600); }
.value__title h3 { font-size: 1.1rem; }
.value p { font-size: 0.92rem; color: rgba(246, 248, 242, 0.74); }

/* ---------- Team / partnership roles ---------- */
.role {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}
.role__discipline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 0.9rem;
}
.role h3 { margin-bottom: 0.6rem; }
.role p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq-item {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.is-open { border-color: var(--hair-brass); box-shadow: 0 14px 30px -22px rgba(10, 28, 20, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--pine-900);
  line-height: 1.4;
}
.faq-q:hover { color: var(--pine-600); }
.faq-q .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brass-600);
  position: relative;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-q .icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner {
  overflow: hidden;
  padding: 0 1.4rem;
}
.faq-item.is-open .faq-a__inner { padding-bottom: 1.35rem; }
.faq-a__inner p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(176, 141, 87, 0.18), transparent 55%),
    var(--pine-800);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(176, 141, 87, 0.25);
  position: relative;
  overflow: hidden;
}
.cta-band .leaf {
  position: absolute;
  right: -3%;
  bottom: -25%;
  width: 280px;
  color: var(--brass-400);
  opacity: 0.08;
  transform: rotate(-12deg);
  pointer-events: none;
}
.cta-band h2 { color: var(--bone); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(246, 248, 242, 0.8); max-width: 52ch; }
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-card {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hair);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine-800);
  color: var(--brass-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ic svg { width: 20px; height: 20px; }
.contact-detail .lbl {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.2rem;
}
.contact-detail .val { font-weight: 600; color: var(--pine-800); }
.contact-detail a.val:hover { color: var(--pine-500); }
.contact-detail .sub { font-size: 0.85rem; color: var(--slate); font-weight: 400; }

/* Form */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .req { color: var(--brass-600); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid var(--hair-strong);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pine-500);
  background: var(--bone);
  box-shadow: 0 0 0 3px rgba(44, 106, 82, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--slate); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--slate); }
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li + li::before {
  content: "/";
  color: var(--mist);
}
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--pine-600); }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(120% 90% at 90% -20%, rgba(176, 141, 87, 0.10), transparent 55%),
    linear-gradient(180deg, var(--parchment), var(--chiffon));
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--hair);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: var(--step-4); margin-bottom: 1rem; max-width: 18ch; }
.page-hero p { font-size: var(--step-1); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-900);
  color: rgba(246, 248, 242, 0.72);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-brand .brand { color: var(--bone); }
.footer-brand .brand .leaf { color: var(--brass-400); }
.footer-brand .brand-text small { color: rgba(246, 248, 242, 0.5); }
.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: rgba(246, 248, 242, 0.62);
  max-width: 34ch;
}
.footer-col h4 {
  color: var(--brass-300);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a {
  color: rgba(246, 248, 242, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--brass-300); }
.footer-contact .val { color: var(--bone); font-weight: 600; }
.footer-contact a.val:hover { color: var(--brass-300); }

.footer-group {
  border-top: 1px solid rgba(246, 248, 242, 0.1);
  border-bottom: 1px solid rgba(246, 248, 242, 0.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
}
.footer-group .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-300);
}
.footer-group a { color: var(--bone); font-weight: 600; border-bottom: 1px solid rgba(176, 141, 87, 0.4); padding-bottom: 1px; }
.footer-group a:hover { color: var(--brass-300); border-color: var(--brass-300); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  font-size: 0.82rem;
  color: rgba(246, 248, 242, 0.5);
}
.footer-bottom .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(246, 248, 242, 0.5); }
.footer-bottom a:hover { color: var(--brass-300); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 520px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
  .process__step:nth-child(3) { border-left: none; }
  .cap__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--parchment);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 30px 50px -30px rgba(10, 28, 20, 0.4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid var(--hair);
    font-size: 1rem;
  }
  .main-nav a::after { display: none; }
  .header-phone { display: none; }
  .split, .split--narrow { grid-template-columns: 1fr; }
  .cap { grid-template-columns: 1fr; gap: 1.25rem; }
  .cap__no { position: static; }
  .cap__cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process__step + .process__step { border-left: none; border-top: 1px solid var(--hair-brass); padding-top: 1.5rem; margin-top: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero__meta { gap: 1.25rem 2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
