/* ════════════════════════════════════════════════════════════
   Grand Round Partners — shared stylesheet
   Palette: slate & teal (modern)
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #EEF1F5;   /* cool light slate page bg */
  --bg-alt:    #F6F8FB;   /* near-white alt sections */
  --card:      #E2E8F1;   /* light slate-blue card bg */
  --white:     #FFFFFF;
  --ink:       #10213C;   /* navy footer & CTA strip */
  --dark:      #15294B;   /* navy headings */
  --text:      #3C495E;   /* slate body text */
  --muted:     #6B7689;   /* labels, captions */
  --border:    #CBD5E2;
  --border-lt: #E0E6EF;
  --teal:      #15294B;   /* primary (navy) — buttons, links, icons */
  --teal-dk:   #0E1C36;   /* hover */
  --gold:      #B09466;   /* brand gold accent */
  --gold-dk:   #8F7649;
  --gold-ink:  #8A6A2B;   /* darker gold for small text (legibility) */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
body > nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-logo em { font-style: italic; color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }
.nav-links a.active { color: var(--dark); font-weight: 600; }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.35rem !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
  letter-spacing: 0 !important;
}

.nav-cta:hover { background: var(--teal-dk) !important; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SHARED ── */
section { padding: 100px 6%; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.wrap-narrow { max-width: 760px; }

/* ── Brand name story ── */
.name-story { max-width: 800px; margin: 0 auto; text-align: center; }
.name-story .rounds-mark { color: var(--gold); margin: 0 auto 1.4rem; width: 54px; height: 54px; }
.name-story .rounds-mark svg { width: 100%; height: 100%; display: block; }
.name-story-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  max-width: 720px;
  margin: 0 auto 1.2rem;
}
.name-story p { color: var(--text); font-size: 1.02rem; line-height: 1.8; max-width: 700px; margin: 0 auto; }
.name-story .rule-center { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1.6rem auto 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.78rem 1.75rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--teal);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--teal-dk); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--teal);
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-light:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ── HERO (home) ── */
.hero {
  background: var(--bg);
  padding: 88px 6% 76px;
}

.hero-inner { max-width: 740px; }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.9vw, 2.85rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.78;
}

.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-lt);
  padding: 76px 6% 60px;
}

.page-hero-inner { max-width: 760px; }

.page-hero .breadcrumb {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  line-height: 1.8;
}

/* ── METRICS ── */
.metrics {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}

.metrics-inner {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 2.25rem 1rem;
  border-right: 1px solid var(--border-lt);
}

.metric:last-child { border-right: none; }

.metric-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: transform 0.25s;
}

.service-card:hover { transform: translateY(-3px); }

.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 1px 6px rgba(16,42,46,0.09);
}

.svc-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-wrap: balance;
}

.svc-desc {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.svc-list li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.svc-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.52rem;
  opacity: 0.5;
}

/* ── WHY / VALUE GRID ── */
.alt { background: var(--white); }
.alt2 { background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(16,42,46,0.06);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.why-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.why-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.why-card p { font-size: 0.875rem; color: var(--text); line-height: 1.75; }

/* When why-grid sits on a white section, cards use the tinted bg for contrast */
.alt .why-card { background: var(--bg); border-color: var(--border-lt); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--ink);
  padding: 88px 6%;
}

.cta-strip-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.cta-strip h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  margin-bottom: 2.25rem;
}

/* ── ABOUT / SPLIT LAYOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1060px;
}

.about-wrap.reverse { grid-template-columns: 1fr 360px; }

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.photo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
}

.photo-hint { font-size: 0.8rem; color: var(--muted); font-weight: 500; text-align: center; padding: 0 1rem; }

.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { font-size: 1rem; color: var(--text); line-height: 1.82; margin-bottom: 1rem; }
.about-text p strong { color: var(--dark); font-weight: 600; }

.creds { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }

.cred {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.cred svg {
  width: 13px;
  height: 13px;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

/* ── PROCESS: HORIZONTAL STEPS (preview) ── */
.steps-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.step { flex: 1; position: relative; }

@media (min-width: 641px) {
  .steps-row .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 42px;
    right: -2.5rem;
    height: 1px;
    background: var(--border);
    pointer-events: none;
  }
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.step p { font-size: 0.875rem; color: var(--text); line-height: 1.72; }

/* ── PROCESS: VERTICAL TIMELINE (process page) ── */
.timeline { max-width: 760px; position: relative; }

.tl-item {
  position: relative;
  padding: 0 0 2.75rem 4.5rem;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.tl-item:last-child::before { display: none; }

.tl-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
}

.tl-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.018em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  padding-top: 0.35rem;
}

.tl-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.tl-item p { font-size: 0.95rem; color: var(--text); line-height: 1.78; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 600px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover { box-shadow: 0 12px 40px rgba(16,42,46,0.09); transform: translateY(-2px); }

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.team-body { padding: 1.6rem 1.75rem 1.9rem; }

.team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.team-bio { font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }

.team-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.team-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-alt);
  border: 1px solid var(--border-lt);
  padding: 0.3rem 0.75rem;
  border-radius: 40px;
}

/* ── TESTIMONIALS ── */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tst-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.tst-card:hover { box-shadow: 0 8px 32px rgba(16,42,46,0.07); }

.tst-card.alt-bg { background: var(--card); border-color: transparent; }

.tst-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--teal);
  opacity: 0.35;
  margin-bottom: 0.75rem;
  height: 1.4rem;
}

.tst-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.tst-stars svg { width: 16px; height: 16px; fill: var(--teal); }

.tst-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tst-author { display: flex; align-items: center; gap: 0.85rem; }

.tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.tst-card.alt-bg .tst-avatar { background: var(--white); }

.tst-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.tst-author span { font-size: 0.8rem; color: var(--muted); }

/* ── LOGO / TRUST STRIP ── */
.trust-strip { background: var(--bg-alt); padding: 48px 6%; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); }
.trust-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.trust-logos span { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: var(--muted); opacity: 0.75; letter-spacing: -0.01em; }

/* ── CONTACT ── */
.booking-header { max-width: 640px; margin-bottom: 2.5rem; }
.booking-header .section-sub { margin-bottom: 0; }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.calendly-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.booking-placeholder {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.booking-placeholder-icon {
  width: 56px;
  height: 56px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.booking-placeholder-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.booking-placeholder h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.booking-placeholder p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 1.75rem;
}

.booking-placeholder-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

.booking-side { display: flex; flex-direction: column; gap: 1.5rem; }

.booking-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 1.75rem;
}

.booking-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
}

.contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.contact-row:last-child { margin-bottom: 0; }

.contact-icon {
  width: 34px;
  height: 34px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.c-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.c-text span { font-size: 0.82rem; color: var(--muted); }

.expect-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.expect-list li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.expect-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ── */
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-item:first-child { border-top: 1px solid var(--border-lt); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.015em;
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--teal); }

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-a p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.82;
  padding-bottom: 1.5rem;
}

.faq-a strong { color: var(--dark); font-weight: 600; }

/* ── MOBILE STICKY BAR ── */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--ink);
  border-top: 1px solid rgba(220,234,234,0.12);
  padding: 0.875rem 5%;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}

.mobile-book-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mbb-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.mbb-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.mbb-cta {
  background: var(--white);
  color: var(--teal);
  padding: 0.6rem 1.35rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mbb-cta:hover { background: rgba(255,255,255,0.9); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3.5rem 6% 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 1.75rem;
}

.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

.footer-email {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.75rem;
  transition: color 0.2s;
}

.footer-email:hover { color: rgba(255,255,255,0.75); }

.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.28);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-wrap, .about-wrap.reverse { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-col { max-width: 320px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-side { flex-direction: row; flex-wrap: wrap; }
  .booking-card { flex: 1 1 280px; }
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0.5rem 6% 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border-lt);
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(16,42,46,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-lt);
  }

  .nav-links li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav-links a { font-size: 1rem; color: var(--dark); }

  .nav-cta { display: inline-block; padding: 0.6rem 1.4rem !important; }

  .hero { padding: 60px 5% 52px; }
  .hero h1 { font-size: 1.8rem; line-height: 1.15; }
  .hero-sub { font-size: 1rem; }
  .page-hero { padding: 56px 5% 44px; }

  .metrics-inner { flex-wrap: wrap; }
  .metric { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border-lt); }
  .metric:nth-child(odd) { border-right: 1px solid var(--border-lt); }
  .metric:nth-last-child(-n+2) { border-bottom: none; }

  section { padding: 72px 5%; }
  .section-sub { margin-bottom: 2.5rem; }

  .mobile-book-bar { display: block; }
  body { padding-bottom: 70px; }

  .steps-row { flex-direction: column; gap: 2rem; }
  .about-photo-col { max-width: 100%; }
  .booking-side { flex-direction: column; }
  .cta-strip { padding: 72px 5%; }

  .tl-item { padding-left: 3.75rem; padding-bottom: 2.25rem; }
}

/* ════════════════════════════════════════════
   ADDITIONS — logo, hero visual, path selector,
   tombstones, forms, prose, insights, legal,
   scroll-reveal, accessibility
   ════════════════════════════════════════════ */

/* ── LOGO MARK ── */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; display: block; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center; }
.footer-logo .logo-mark { width: 26px; height: 26px; }

/* ── HERO (2-column with visual) ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
}
.hero-grid .hero-inner { max-width: none; }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 48px rgba(16,42,46,0.13)); }

/* ── PATH SELECTOR ── */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 1.25rem;
}
.path-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 1.85rem 1.6rem;
  transition: transform 0.25s, border-color 0.2s, box-shadow 0.2s;
}
.path-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 12px 36px rgba(16,42,46,0.09); }
.path-icon {
  width: 46px; height: 46px;
  background: var(--card);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.path-icon svg { width: 22px; height: 22px; stroke: var(--teal); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.path-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.02em; margin-bottom: 0.45rem;
}
.path-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.path-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); }

/* ── DEAL TOMBSTONES ── */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1.25rem;
}
.deal-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  padding: 1.7rem 1.6rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.deal-card:hover { box-shadow: 0 8px 28px rgba(16,42,46,0.07); }
.deal-status {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); background: var(--card);
  padding: 0.25rem 0.7rem; border-radius: 40px; margin-bottom: 1rem;
}
.deal-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 1rem;
}
.deal-meta { list-style: none; border-top: 1px solid var(--border-lt); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.deal-meta li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.8rem; }
.deal-meta .dm-label { color: var(--muted); }
.deal-meta .dm-val { color: var(--dark); font-weight: 600; text-align: right; }

/* ── FORMS ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.field .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit; font-size: 0.9rem; color: var(--dark);
  background: var(--bg-alt);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9fb0b5; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(21,41,75,0.14);
  outline: none;
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-hint { font-size: 0.76rem; color: var(--muted); margin-top: 0.35rem; }
.form-note { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-top: 0.5rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.form-consent input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.form-success {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  font-size: 0.875rem; color: var(--dark);
  margin-bottom: 1.25rem;
}
.form-success strong { color: var(--teal); }
.btn-primary.full { width: 100%; justify-content: center; }
.privacy-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }
.privacy-note svg { width: 15px; height: 15px; stroke: var(--teal); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── PROSE / ARTICLE ── */
.prose { max-width: 740px; }
.prose > p { font-size: 1.02rem; color: var(--text); line-height: 1.85; margin-bottom: 1.2rem; }
.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.02em; line-height: 1.25;
  margin: 2.6rem 0 1rem;
}
.prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.015em; margin: 2rem 0 0.75rem;
}
.prose ul, .prose ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.prose li { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 0.5rem; }
.prose strong { color: var(--dark); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--teal);
  padding: 0.25rem 0 0.25rem 1.3rem;
  margin: 1.6rem 0;
  color: var(--dark); font-style: italic; font-size: 1.05rem;
}
.callout {
  background: var(--bg-alt);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  margin: 1.8rem 0;
}
.callout h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.callout p { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin: 0; }
.article-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.article-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 2.5rem;
}
.toc h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 0.5rem; }
.toc li { counter-increment: toc; font-size: 0.9rem; }
.toc a { color: var(--dark); font-weight: 500; }
.toc a:hover { color: var(--teal); }
.toc li::before { content: counter(toc, decimal-leading-zero) "  "; color: var(--teal); font-weight: 700; font-size: 0.78rem; }

/* ── INSIGHTS / POSTS ── */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(16,42,46,0.09); }
.post-thumb { aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--card), var(--bg-alt)); display: flex; align-items: center; justify-content: center; }
.post-thumb svg { width: 40px; height: 40px; stroke: var(--teal); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0.8; }
.post-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.post-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.12rem; font-weight: 700; color: var(--dark); letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 0.6rem; }
.post-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.post-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); }

/* ── LEAD-MAGNET BAND ── */
.lead-band { background: var(--card); }
.lead-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; max-width: 1000px; }
.lead-inner .section-title { margin-bottom: 0.75rem; }
.lead-inner p { font-size: 0.97rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.lead-visual { display: flex; justify-content: center; }
.lead-visual svg { width: 100%; max-width: 260px; height: auto; display: block; filter: drop-shadow(0 16px 32px rgba(16,42,46,0.12)); }

/* email-gate form on the lead-magnet band */
.gate-form { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 440px; margin-bottom: 0.7rem; }
.gate-form input { flex: 1 1 200px; min-width: 0; padding: 0.78rem 0.95rem; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 0.9rem; background: var(--white); color: var(--dark); }
.gate-form input::placeholder { color: #9fb0b5; }
.gate-form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,41,75,0.14); }
.lead-inner .gate-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 0; }

/* ── GLOSSARY ── */
.glossary { max-width: 760px; }
.glossary dt { font-family: 'Playfair Display', Georgia, serif; font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-top: 1.4rem; }
.glossary dd { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin: 0.35rem 0 0; }

/* ── 404 ── */
.err-wrap { text-align: center; max-width: 540px; margin: 0 auto; }
.err-code { font-family: 'Playfair Display', Georgia, serif; font-size: 4.5rem; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.5rem; }

/* ── FOOTER LEGAL ── */
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem; margin-top: 1.25rem; }
.footer-legal a { font-size: 0.74rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── REVEAL (transform-only entrance; fail-safe — never hides content,
   so even if animations are frozen/disabled the content stays visible) ── */
.reveal { animation: revealUp 0.6s ease both; }
@keyframes revealUp {
  from { transform: translateY(14px); }
  to   { transform: none; }
}

/* ── ACCESSIBILITY ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 400;
  background: var(--teal); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0; font-size: 0.85rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── RESPONSIVE (additions) ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 640px; }
  .hero-visual { max-width: 460px; }
  .lead-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .form-card { padding: 1.6rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── BRAND: logo images + gold eyebrow accents ── */
.nav-logo-img { height: 38px; width: auto; display: block; }
.footer-logo-img { height: 44px; width: auto; display: block; }
.section-eyebrow, .hero-eyebrow, .page-hero .breadcrumb { color: var(--gold-ink); }
section[id], #main { scroll-margin-top: 84px; }
@media (max-width: 640px) { .nav-logo-img { height: 30px; } }

/* ── HERO EXPERTISE PANEL ── */
.exp-card { background: var(--white); border: 1px solid var(--border-lt); border-radius: 22px; padding: 1.7rem 1.7rem 1.5rem; box-shadow: 0 24px 56px rgba(16,42,46,0.10); }
.exp-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--dark); padding-bottom: 0.9rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--border-lt); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem 0.4rem; }
.exp-item { text-align: center; }
.exp-ic { width: 48px; height: 48px; margin: 0 auto 0.5rem; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.exp-ic svg { width: 23px; height: 23px; stroke: var(--teal); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.exp-item span { display: block; font-size: 0.68rem; font-weight: 600; color: var(--text); line-height: 1.25; }
.exp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--border-lt); }
.exp-stat { display: flex; align-items: center; gap: 0.7rem; }
.exp-stat .si { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: rgba(176,148,102,0.16); display: flex; align-items: center; justify-content: center; }
.exp-stat .si svg { width: 20px; height: 20px; stroke: var(--gold-ink); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.exp-stat .sv { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); line-height: 1; letter-spacing: -0.02em; }
.exp-stat .sl { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); line-height: 1.3; margin-top: 0.25rem; }

/* ── HOW WE WORK CARDS (team) ── */
.work-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 3.5rem; align-items: start; max-width: 1120px; }
.work-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.work-card { background: var(--white); border: 1px solid var(--border-lt); border-radius: 14px; padding: 1.6rem 1.4rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.work-card:hover { box-shadow: 0 12px 32px rgba(16,42,46,0.08); transform: translateY(-2px); }
.wc-ic { width: 52px; height: 52px; margin: 0 auto; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.wc-ic svg { width: 24px; height: 24px; stroke: var(--teal); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.wc-line { display: block; width: 26px; height: 2px; background: var(--gold); margin: 0.85rem auto 0.7rem; }
.work-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; margin-bottom: 0.45rem; line-height: 1.25; }
.work-card p { font-size: 0.85rem; color: var(--text); line-height: 1.55; }

@media (max-width: 960px) {
  .work-wrap { grid-template-columns: 1fr; gap: 2.2rem; max-width: 640px; }
}
@media (max-width: 640px) {
  .exp-card { padding: 1.3rem; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .work-cards { grid-template-columns: 1fr; }
}

/* ── ABOUT branded graphic ── */
.about-photo .about-graphic { width: 100%; height: 100%; display: block; }

/* ── TEAM cards: 4:5 portrait photo + roomy text ── */
.team-grid { grid-template-columns: 1fr; max-width: 720px; gap: 1.5rem; }
.team-card { display: flex; gap: 1.4rem; padding: 1.5rem 1.6rem; align-items: flex-start; }
.team-photo { width: 215px; aspect-ratio: 4 / 5; border-radius: 12px; flex-shrink: 0; overflow: hidden; }
.team-body { flex: 1; padding: 0; }
@media (max-width: 560px) {
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; }
}

/* ── HOW WE WORK: 2×3 cards, matched to the text height ── */
.work-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; max-width: 1080px; align-items: stretch; }
.work-cards { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 0.85rem; height: 100%; }
.work-card { padding: 0.75rem 1.1rem; display: flex; flex-direction: column; justify-content: center; }
.wc-ic { width: 46px; height: 46px; }
.wc-ic svg { width: 22px; height: 22px; }
.wc-line { margin: 0.55rem auto 0.5rem; }
.work-card h4 { font-size: 0.94rem; margin-bottom: 0.35rem; }
.work-card p { font-size: 0.82rem; line-height: 1.45; }
.work-wrap .about-text p:last-of-type { margin-bottom: 0; }
@media (max-width: 760px) {
  .work-wrap { grid-template-columns: 1fr; gap: 2rem; max-width: 640px; align-items: start; }
  .work-cards { grid-template-rows: auto; height: auto; }
}
@media (max-width: 460px) {
  .work-cards { grid-template-columns: 1fr; }
}

