/* ════════════════════════════════════════════════════════════════════════
   HINENI — SHARED DESIGN SYSTEM (light theme: cerulean · brass · paper)
   One stylesheet for the whole multi-page site. Sections:
     1. Tokens
     2. Base + typography
     3. Shared nav (with Services dropdown) + footer
     4. Buttons, section headers, layout helpers
     5. Hero
     6. Ghostwriting-page components (preserved from the original site)
     7. Multi-page components (hub, service template, work, about, contact)
     8. Light-theme palette application
     9. Animations
   Image placeholders use .ph* classes — clearly marked "photo coming soon"
   blocks for Mike to swap with real photography after shoots.
   ════════════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ─── */
:root {
  --teal:      #3A8FAC;   /* cerulean — primary accent */
  --teal-dark: #2A6E87;   /* cerulean deep */
  --teal-deep: #1E5067;   /* cerulean ink — deepest */
  --gold:      #A48150;   /* brass — warm secondary accent */
  --gold-light:#C9A876;   /* brass light */
  --charcoal:  #1E5067;   /* "dark" sections use cerulean ink */
  --charcoal2: #2A6E87;
  --parchment: #F8F5EE;   /* paper cream */
  --parchment2:#F1ECDF;   /* paper cream deeper */
  --text:      #1B262C;   /* ink */
  --text-muted:#5E6575;
  --white:     #FFFFFF;

  --paper:           #F8F5EE;
  --paper-deep:      #F1ECDF;
  --cerulean-paper:  #EEF5F7;
  --cerulean-mist:   #D9E8EE;
  --brass-soft:      #E7D9BF;
  --ink:             #1B262C;
  --ink-soft:        #3A4A52;
  --slate:           #6A7B83;
}

/* ─── 2. BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--ink); background: var(--paper); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.15; color: var(--charcoal); }
.section-title.light { color: var(--white); }
.section-title::after {
  content: ''; display: block; width: 64px; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--teal) 50%, transparent 100%);
  margin: 1.5rem auto 0; opacity: 0.6;
}
.section-title.light::after { background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.7; }
/* left-aligned title variant (no centered hairline) */
.section-title.tleft::after { margin-left: 0; }

/* ─── 3. NAV ─── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: space-between; transition: all 0.35s ease; }
#nav.solid {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.10) 8%, rgba(255,255,255,0.03) 25%, transparent 55%),
    rgba(30, 80, 103, 0.54);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.44), inset 0 -1px 0 rgba(255,255,255,0.08), 0 10px 36px rgba(0,0,0,0.20);
}
#nav.solid .nav-name, #nav.solid .nav-links a { text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem; letter-spacing: 0.06em; color: var(--white); }
.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.25s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 0.45rem 1.2rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important; }
.nav-cta:hover { background: #8E6F45 !important; color: var(--white) !important; }
.nav-caret { font-size: 0.6em; vertical-align: middle; }

/* Services dropdown */
.nav-dropdown-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; }
/* Invisible bridge across the gap between the toggle and the menu, so moving
   the mouse down into the submenu keeps .nav-dropdown:hover alive (no dead zone). */
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: -0.5rem; right: -0.5rem; height: 1.2rem; }
.nav-dropdown-menu {
  list-style: none; position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; padding: 0.6rem 0; display: flex; flex-direction: column; gap: 0;
  background: rgba(30, 80, 103, 0.96);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 18px 44px rgba(0,0,0,0.30);
  opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a { display: block; padding: 0.7rem 1.4rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.82); }
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
@media (max-width: 900px) {
  #nav { padding: 1.2rem 1.5rem; }
  #nav.solid { padding: 0.85rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--teal-deep); flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem; overflow-y: auto; padding: 5rem 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; background: none;
    border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    padding: 0.8rem 0 0; min-width: 0; text-align: center; gap: 0.9rem;
  }
  .nav-dropdown-menu a { padding: 0.2rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
  .nav-caret { display: none; }
  .nav-dropdown::after { display: none; }
}

/* ─── 4. BUTTONS ─── */
.btn { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; padding: 1rem 2.2rem; cursor: pointer; border: none; transition: all 0.25s ease; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #8E6F45; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(164,129,80,0.50); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-teal { background: var(--teal-dark); color: var(--white); }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,143,172,0.40); }
/* dark-on-light outline for use over paper sections */
.btn-outline-ink { background: transparent; color: var(--teal-deep); border: 1px solid rgba(30,80,103,0.35); }
.btn-outline-ink:hover { border-color: var(--gold); color: var(--gold); }

/* ─── 5. HERO ─── */
#hero { min-height: 92vh; background: var(--teal-dark); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-gradient { position: absolute; inset: 0; display: block; background: linear-gradient(150deg, #1E5067 0%, #5BA5C2 50%, #2A6E87 100%); opacity: 0.94; }
.hero-book-art { position: absolute; right: 0; bottom: 0; top: 0; width: 55%; display: flex; align-items: center; justify-content: center; }
.hero-content { position: relative; z-index: 2; padding: 9rem 3rem 6rem; max-width: 1160px; margin: 0 auto; width: 100%; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 1.5rem; opacity: 0; animation: riseIn 0.9s cubic-bezier(.16,1,.3,1) forwards 0.2s; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 600; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; max-width: 820px; opacity: 0; animation: riseIn 0.9s cubic-bezier(.16,1,.3,1) forwards 0.4s; }
.hero-title em { font-style: italic; color: var(--brass-soft); }
.hero-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 600px; font-weight: 300; margin-bottom: 2.5rem; opacity: 0; animation: riseIn 0.9s cubic-bezier(.16,1,.3,1) forwards 0.6s; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: riseIn 0.9s cubic-bezier(.16,1,.3,1) forwards 0.8s; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0; animation: riseIn 0.9s ease forwards 1.2s; }
.hero-scroll span { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollBounce 2s ease-in-out infinite; }
/* compact hero for interior pages */
#hero.hero-sm { min-height: 70vh; }

/* ════════ 6. GHOSTWRITING-PAGE COMPONENTS (preserved) ════════ */

/* WHO WE SERVE */
#serve { padding: 7rem 0; background: var(--paper); }
.serve-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.serve-card { background: var(--white); padding: 2.75rem 2.25rem; border-bottom: 3px solid transparent; transition: all 0.3s ease; position: relative; }
.serve-card:hover { border-bottom-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.serve-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.serve-icon svg { width: 24px; height: 24px; color: var(--white); }
.serve-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.25; }
.serve-card-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-muted); }
@media (max-width: 768px) { .serve-grid { grid-template-columns: 1fr; } }

/* PROBLEM */
#problem { padding: 7rem 0; background: var(--teal); }
.problem-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }
.problem-label { font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 1.2rem; font-weight: 500; }
.problem-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 600; color: var(--white); line-height: 1.1; }
.problem-heading em { font-style: italic; color: var(--brass-soft); }
.problem-divider { width: 80px; height: 2px; background: var(--brass-soft); margin: 2rem 0; }
.problem-body { font-size: 1rem; line-height: 1.95; color: rgba(255,255,255,0.88); font-weight: 300; }
.problem-body strong { color: #fff; font-weight: 500; }
.problem-stats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.stat-row { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; background: rgba(255,255,255,0.08); border-left: 3px solid var(--brass-soft); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--brass-soft); line-height: 1; flex-shrink: 0; }
.stat-text { font-size: 0.87rem; color: rgba(255,255,255,0.82); line-height: 1.55; font-weight: 300; }
@media (max-width: 768px) { .problem-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* PROCESS (also reused as "How it works" on service pages) */
#process { padding: 7rem 0; background: var(--paper); }
.process-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: calc(100% / 6); right: calc(100% / 6); height: 1px; background: linear-gradient(to right, transparent, var(--teal), transparent); opacity: 0.35; pointer-events: none; }
.process-steps.steps-5::before, .process-steps.steps-4::before { display: none; }
.step { padding: 0 1.5rem 3rem; text-align: center; position: relative; }
.step-num-wrap { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; transition: transform 0.3s ease; }
.step:hover .step-num-wrap { transform: scale(1.08); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; color: var(--white); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); }
.process-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 4rem; }
.meta-card { background: var(--white); padding: 2rem 2.5rem; border-left: 3px solid var(--gold); }
.meta-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal-dark); font-weight: 500; margin-bottom: 0.5rem; }
.meta-value { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.meta-detail { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; } .process-meta { grid-template-columns: 1fr; } .process-steps::before { display: none; } }

/* SERVICES (ghostwriting pricing) */
#services { padding: 7rem 0; background: var(--paper); }
.services-header { text-align: center; max-width: 620px; margin: 0 auto 1.5rem; }
.services-note { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 4rem; font-style: italic; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.svc-card { background: var(--white); padding: 2.75rem 2.25rem; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.svc-card.featured { background: var(--charcoal); }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.svc-card.featured:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.svc-badge { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); background: rgba(58,143,172,0.1); border: 1px solid rgba(58,143,172,0.25); padding: 0.3rem 0.85rem; display: inline-block; margin-bottom: 1.5rem; }
.svc-card.featured .svc-badge { color: var(--gold); background: rgba(164,129,80,0.1); border-color: rgba(164,129,80,0.3); }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; line-height: 1.15; }
.svc-card.featured .svc-name { color: var(--white); }
.svc-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; font-style: italic; }
.svc-card.featured .svc-tagline { color: rgba(255,255,255,0.45); }
.svc-divider { height: 1px; background: linear-gradient(to right, transparent 0%, var(--parchment2) 20%, var(--parchment2) 80%, transparent 100%); margin-bottom: 1.75rem; }
.svc-card.featured .svc-divider { background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.20) 20%, rgba(255,255,255,0.20) 80%, transparent 100%); }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.svc-features li { font-size: 0.875rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; line-height: 1.55; }
.svc-card.featured .svc-features li { color: rgba(255,255,255,0.55); }
.svc-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.svc-card.featured .svc-features li::before { background: var(--gold); }
.svc-card.featured .svc-features li.svc-feature-highlight { color: var(--brass-soft); }
.svc-card.featured .svc-features li.svc-feature-highlight::before { background: var(--gold); width: 8px; height: 8px; top: calc(0.5em - 1px); }
.svc-founding-banner { display: block; margin: 1.5rem 0 1.75rem; padding: 1rem 1.2rem 1.1rem; background: linear-gradient(180deg, #E5C293 0%, #D4B080 55%, #B89360 100%); text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 6px 22px rgba(212,175,80,0.55), 0 1px 3px rgba(164,129,80,0.45), inset 0 1px 0 rgba(255,255,255,0.50); }
.svc-founding-banner:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(212,175,80,0.72), 0 2px 6px rgba(164,129,80,0.55), inset 0 1px 0 rgba(255,255,255,0.60); }
.svc-founding-label { display: block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.30); margin-bottom: 0.5rem; }
.svc-founding-text { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; color: var(--white); font-weight: 500; line-height: 1.3; }
.svc-founding-text strong { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 700; color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.40); line-height: 1; }
.svc-founding-savings { font-size: 0.85rem; color: rgba(255,255,255,0.92); font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,0.25); }
.svc-founding-arrow { margin-left: auto; font-size: 1rem; font-weight: 700; color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.30); }
.svc-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--parchment2); }
.svc-card.featured .svc-footer { border-top-color: rgba(255,255,255,0.1); }
.svc-timeline { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); font-weight: 500; }
.svc-card.featured .svc-timeline { color: var(--gold); }
.svc-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 0.25rem; }
.svc-card.featured .svc-price { color: var(--white); }
.svc-price-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.svc-card.featured .svc-price-label { color: rgba(255,255,255,0.4); }
.svc-payment { font-size: 0.78rem; color: var(--text-muted); line-height: 1.75; margin-top: 1rem; }
.svc-card.featured .svc-payment { color: rgba(255,255,255,0.45); }
.svc-payment strong { color: var(--charcoal); font-weight: 600; }
.svc-card.featured .svc-payment strong { color: rgba(255,255,255,0.75); }
.addon-card { background: var(--white); border: 1px solid var(--paper-deep); padding: 2.25rem 2.5rem; margin-top: 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.addon-badge { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); background: rgba(58,143,172,0.1); border: 1px solid rgba(58,143,172,0.25); padding: 0.3rem 0.85rem; display: inline-block; margin-bottom: 1rem; }
.addon-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.addon-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.addon-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); }
.addon-features li { padding-left: 1.1rem; position: relative; }
.addon-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.addon-disclosure { font-size: 0.7rem; font-style: italic; color: var(--text-muted); margin-top: 0.9rem; line-height: 1.6; }
.addon-pricing { text-align: right; white-space: nowrap; }
.addon-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.addon-price-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.addon-bundles { font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; text-align: right; }
.addon-bundles strong { color: var(--charcoal); }
@media (max-width: 700px) { .addon-card { grid-template-columns: 1fr; } .addon-pricing { text-align: left; } }
.pricing-disclosure { max-width: 720px; margin: 2rem auto 0; font-size: 0.75rem; font-style: italic; color: var(--text-muted); line-height: 1.75; text-align: center; }
.services-cta { text-align: center; margin-top: 3.5rem; }
.services-cta p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; max-width: 500px; } }

/* FOUNDING */
#founding { padding: 5rem 0; background: var(--brass-soft); }
.founding-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.founding-badge { display: inline-block; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--white); background: var(--gold); border: 1px solid transparent; padding: 0.35rem 1rem; margin-bottom: 2rem; }
.founding-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 1rem; }
.founding-sub { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 2.25rem; }
.founding-offer { background: var(--white); border: 1px solid rgba(164,129,80,0.35); padding: 2.25rem 2.5rem; text-align: left; margin-bottom: 2rem; }
.founding-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.founding-price-old { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--slate); text-decoration: line-through; }
.founding-price-new { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 700; color: var(--gold); line-height: 1; }
.founding-price-pct { font-size: 0.78rem; color: var(--gold); opacity: 0.9; align-self: center; }
.founding-terms { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.founding-exchange-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.6rem; }
.founding-exchange-list { list-style: none; font-size: 0.83rem; color: var(--ink-soft); line-height: 1.8; }
.founding-exchange-list li { padding-left: 1.1rem; position: relative; }
.founding-exchange-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.9; }
.founding-spots { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 2rem; letter-spacing: 0.05em; }
.founding-spots strong { color: var(--gold); }

/* WHAT'S INCLUDED */
#included { padding: 5rem 0; background: var(--charcoal); }
.included-header { text-align: center; margin-bottom: 3rem; }
.included-header .section-eyebrow { color: var(--gold); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.inc-item { background: var(--charcoal); padding: 2rem 2.25rem; transition: background 0.3s; }
.inc-item:hover { background: rgba(58,143,172,0.18); }
.inc-icon { width: 36px; height: 36px; color: var(--teal); margin-bottom: 1rem; }
.inc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.inc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; font-weight: 300; }
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .included-grid { grid-template-columns: 1fr; } }

/* FAQ */
#faq { padding: 7rem 0; background: var(--paper); }
.faq-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-item { background: var(--white); padding: 2.25rem 2.5rem; border-top: 3px solid transparent; transition: border-color 0.3s, transform 0.3s; }
.faq-item:hover { border-top-color: var(--teal); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.07); }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.3; }
.faq-a { font-size: 0.875rem; line-height: 1.85; color: var(--text-muted); }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* WHY */
#why { padding: 7rem 0; background: var(--paper-deep); }
.why-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.why-header .section-eyebrow { color: var(--teal-dark); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.why-card { padding: 2.75rem; background: var(--white); border-left: 3px solid var(--teal); transition: background 0.3s; }
.why-card:hover { background: rgba(58,143,172,0.04); }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--teal); line-height: 1; margin-bottom: 1rem; opacity: 0.6; }
.why-text { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }
.why-text strong { color: var(--ink); font-weight: 500; }
#why .section-title.light { color: var(--ink); }
@media (max-width: 680px) { .why-grid { grid-template-columns: 1fr; } }

/* COMPARISON */
#compare { padding: 7rem 0; background: var(--charcoal); }
.compare-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.compare-subhead { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.7); margin-top: 1.25rem; font-style: italic; }
.compare-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 1.05rem 1.25rem; text-align: left; vertical-align: top; font-size: 0.9rem; line-height: 1.55; border-bottom: 1px solid rgba(255,255,255,0.10); }
.compare-table thead th { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.18); }
.compare-row-label { font-weight: 600; color: var(--gold); white-space: nowrap; }
.compare-table td { color: rgba(255,255,255,0.7); }
.compare-col-hineni { background: rgba(58,143,172,0.16); }
.compare-table thead th.compare-col-hineni { color: var(--white); border-top: 2px solid var(--teal); border-top-left-radius: 8px; border-top-right-radius: 8px; }
.compare-table td.compare-col-hineni { color: var(--white); }
.compare-table tbody tr:last-child td.compare-col-hineni { border-bottom: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.compare-bottomline { max-width: 760px; margin: 2.5rem auto 0; text-align: center; font-size: 1.02rem; line-height: 1.75; color: rgba(255,255,255,0.9); border-top: 1px solid rgba(212,175,80,0.35); padding-top: 2rem; }
@media (max-width: 720px) { #compare { padding: 5rem 0; } .compare-table th, .compare-table td { padding: 0.85rem 0.95rem; font-size: 0.85rem; } }

/* ABOUT */
#about { padding: 7rem 0; background: var(--paper-deep); }
.about-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5.5rem; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--teal-deep) 0%, var(--charcoal) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-photo-caption { position: absolute; bottom: -1rem; right: -1rem; background: var(--gold); color: var(--white); padding: 0.75rem 1.25rem; }
.about-photo-caption p { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.about-eyebrow { margin-bottom: 0.5rem; }
.about-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--charcoal); line-height: 1.15; margin-bottom: 1.5rem; }
.about-lead { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); margin-bottom: 1.5rem; }
.hineni-block { background: var(--charcoal); padding: 1.75rem 2rem; margin: 2rem 0; }
.hineni-word { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; font-style: italic; color: var(--teal); margin-bottom: 0.25rem; }
.hineni-meaning { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.hineni-desc { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-list li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 1.4rem; position: relative; line-height: 1.6; }
.about-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* CONTACT */
#contact { padding: 7rem 0; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; inset: 0; background: var(--teal-deep); }
.contact-inner { position: relative; z-index: 1; }
.contact-top { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.contact-top .section-eyebrow { color: var(--gold); }
.contact-top .section-title { color: var(--white); margin-bottom: 1rem; }
.contact-top p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; font-style: italic; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; }
.calendly-inline-widget { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.form-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-bottom: 0.5rem; font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; }
.form-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.9rem; padding: 0.85rem 1.1rem; outline: none; transition: border-color 0.25s; font-weight: 300; width: 100%; }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--teal); }
select.form-input { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
select.form-input option { color: var(--ink); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit { background: var(--gold); color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2rem; cursor: pointer; border: none; transition: all 0.25s ease; text-align: center; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* FINAL CTA */
#final-cta { padding: 6rem 0; background: var(--cerulean-paper); text-align: center; }
.final-cta-inner { max-width: 620px; margin: 0 auto; }
.final-cta-inner .section-title { margin-bottom: 1.25rem; }
.final-cta-inner p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; }

/* MEANING */
#meaning { padding: 6rem 0; background: var(--teal-deep); }
.meaning-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.meaning-hebrew { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; }
.meaning-transliteration { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; display: block; }
.meaning-body { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; line-height: 1.85; color: rgba(255,255,255,0.8); }
.meaning-body strong { font-style: normal; color: var(--gold); font-weight: 600; }

/* FOOTER (expanded, shared) */
#footer { background: var(--teal-deep); padding: 3.5rem 3rem 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-col-brand .footer-logo { height: 38px; margin-bottom: 1rem; }
.footer-hineni { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--teal); margin-bottom: 0.75rem; }
.footer-meaning { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; }
.footer-heading { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { max-width: 1160px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-note { font-size: 0.7rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); }
.footer-note a { color: inherit; text-decoration: none; }
.footer-note a:hover { color: var(--gold); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .footer-nav, .footer-contact { align-items: center; } .footer-meaning { margin: 0 auto; } .footer-bottom { justify-content: center; text-align: center; } }

/* ════════ 7. MULTI-PAGE COMPONENTS ════════ */

/* Generic section helpers for new pages */
.sec { padding: 7rem 0; }
.sec-sm { padding: 5rem 0; }
.bg-paper { background: var(--paper); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-pale { background: var(--cerulean-paper); }
.bg-ink { background: var(--teal-deep); }
.bg-cerulean { background: var(--teal); }
.bg-ink, .bg-cerulean { color: #fff; }
.bg-ink .section-title, .bg-cerulean .section-title { color: #fff; }
.bg-ink .section-eyebrow, .bg-cerulean .section-eyebrow { color: var(--gold); }
.sec-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.sec-header.tleft { text-align: left; margin-left: 0; }
.lead { font-size: 1.05rem; line-height: 1.85; color: var(--ink-soft); }
.bg-ink .lead, .bg-cerulean .lead { color: rgba(255,255,255,0.85); }

/* Photo placeholder blocks — clearly marked, swap with real photos later */
.ph { position: relative; background: linear-gradient(150deg, var(--teal-deep) 0%, var(--teal) 55%, var(--teal-dark) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: rgba(255,255,255,0.85); overflow: hidden; min-height: 220px; }
.ph::after { content: 'PHOTO PLACEHOLDER'; position: absolute; top: 0.75rem; right: 0.75rem; font-size: 0.52rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.3); padding: 0.2rem 0.5rem; }
.ph svg { width: 40px; height: 40px; opacity: 0.7; margin-bottom: 0.85rem; }
.ph-label { font-size: 0.8rem; letter-spacing: 0.03em; padding: 0 1.5rem; line-height: 1.5; font-style: italic; color: rgba(255,255,255,0.75); max-width: 320px; }
.ph-tall { aspect-ratio: 3/4; }
.ph-wide { aspect-ratio: 16/9; }
.ph-square { aspect-ratio: 1/1; }

/* Hub: service preview cards */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.preview-card { display: flex; flex-direction: column; background: var(--white); padding: 2.75rem 2.25rem; text-decoration: none; border-bottom: 3px solid transparent; transition: all 0.3s ease; height: 100%; }
.preview-card:hover { border-bottom-color: var(--teal); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
.preview-icon { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.preview-icon svg { width: 26px; height: 26px; color: #fff; }
.preview-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.2; }
.preview-desc { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); flex: 1; }
.preview-link { margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); }
.preview-card:hover .preview-link { color: var(--gold); }
@media (max-width: 900px) { .preview-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* Photography band (image + text) */
.media-band { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.media-band.reverse .media-text { order: 2; }
.media-text h2 { margin-bottom: 1.25rem; }
.media-text .lead { margin-bottom: 1.5rem; }
@media (max-width: 820px) { .media-band { grid-template-columns: 1fr; gap: 2.5rem; } .media-band.reverse .media-text { order: 0; } }

/* Proof strip */
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 700px) { .proof-strip { grid-template-columns: 1fr 1fr; } }

/* Honest-truth callout */
.truth-callout { max-width: 820px; margin: 0 auto; background: var(--white); border-left: 4px solid var(--gold); padding: 2.75rem 3rem; box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.truth-callout .truth-kicker { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.truth-callout p { font-size: 1.02rem; line-height: 1.9; color: var(--ink-soft); }
.truth-callout p + p { margin-top: 1.1rem; }

/* Included list (service pages) */
.incl-list { max-width: 760px; margin: 0 auto; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2.5rem; }
.incl-list li { position: relative; padding-left: 2rem; font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.incl-list li::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(58,143,172,0.15); }
.incl-list li strong { color: var(--ink); font-weight: 600; }
@media (max-width: 700px) { .incl-list { grid-template-columns: 1fr; } }

/* Monthly plan cards (websites / social) */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.plan-card { background: var(--white); padding: 2.5rem 2.25rem; display: flex; flex-direction: column; border-top: 3px solid transparent; transition: all 0.3s ease; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); border-top-color: var(--teal); }
.plan-card.featured { background: var(--charcoal); color: #fff; border-top-color: var(--gold); }
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.plan-card.featured .plan-name { color: #fff; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 700; color: var(--teal-deep); line-height: 1; margin: 0.75rem 0 0.25rem; }
.plan-card.featured .plan-price { color: #fff; }
.plan-price span { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-tagline { font-size: 0.85rem; font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.5); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; padding-top: 1.5rem; border-top: 1px solid var(--parchment2); }
.plan-card.featured .plan-features { border-top-color: rgba(255,255,255,0.15); }
.plan-features li { font-size: 0.875rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; line-height: 1.5; }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.6); }
.plan-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.plan-card.featured .plan-features li::before { background: var(--gold); }
.plan-note { max-width: 760px; margin: 2.5rem auto 0; text-align: center; font-size: 0.9rem; line-height: 1.7; color: var(--ink-soft); }
.plan-note strong { color: var(--ink); }
@media (max-width: 900px) { .plan-grid, .plan-grid.cols-2 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* Photography note (service pages) */
.photo-note { max-width: 820px; margin: 3rem auto 0; padding: 1.75rem 2.25rem; background: rgba(58,143,172,0.07); border: 1px solid rgba(58,143,172,0.2); font-size: 0.95rem; line-height: 1.8; color: var(--ink-soft); text-align: center; }
.photo-note strong { color: var(--ink); }

/* "What it is / isn't" two-column (social) */
.isnt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.isnt-card { background: var(--white); padding: 2.25rem 2.25rem; border-top: 3px solid var(--teal); }
.isnt-card.muted { border-top-color: var(--slate); }
.isnt-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--charcoal); margin-bottom: 1rem; }
.isnt-card p { font-size: 0.92rem; line-height: 1.8; color: var(--ink-soft); }
@media (max-width: 700px) { .isnt-grid { grid-template-columns: 1fr; } }

/* Work gallery */
.work-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.work-item { background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; }
.work-media { width: 100%; }
.work-media .ph { min-height: 280px; }
.work-tag { display: inline-block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); background: rgba(58,143,172,0.1); border: 1px solid rgba(58,143,172,0.25); padding: 0.25rem 0.7rem; margin-bottom: 0.85rem; align-self: flex-start; }
.work-body { padding: 2rem 2.25rem 2.25rem; }
.work-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.25; }
.work-body p { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); }
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

/* Cross-link banner (about) */
.crosslink { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.crosslink a { display: block; background: var(--white); padding: 2rem 2.25rem; text-decoration: none; border-left: 3px solid var(--teal); transition: all 0.3s ease; }
.crosslink a:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.crosslink h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.crosslink p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 700px) { .crosslink { grid-template-columns: 1fr; } }

/* Prose (privacy) */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--charcoal); margin: 2.5rem 0 0.85rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 0.95rem; line-height: 1.85; color: var(--ink-soft); }
.prose ul { margin: 0.5rem 0 0.5rem 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--teal-dark); }
.prose .muted { font-size: 0.82rem; font-style: italic; color: var(--slate); }

/* Page intro hero variant text alignment */
.hero-sub-eyebrow { color: var(--brass-soft); }

/* Why-Us intro + punch line (websites #why) */
.why-intro { max-width: 640px; margin: 1.25rem auto 0; font-size: 1rem; line-height: 1.8; color: var(--ink-soft); }
.why-punch { max-width: 800px; margin: 3rem auto 0; text-align: center; font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.7vw, 1.95rem); font-style: italic; line-height: 1.5; color: var(--ink); border-top: 1px solid rgba(164,129,80,0.45); padding-top: 2.25rem; }
.why-punch strong { font-style: normal; color: var(--gold); font-weight: 700; }

/* Homepage "why us" echo band (on dark) */
.echo-lead { max-width: 720px; margin: 0 auto 1rem; font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.9); font-weight: 300; }
.echo-punch { max-width: 760px; margin: 0 auto 2rem; font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-style: italic; line-height: 1.45; color: #fff; }
.echo-punch strong { color: var(--gold); font-style: normal; font-weight: 700; }

/* Two-part pricing split (websites) */
.price-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 840px; margin: 0 auto 2rem; }
.price-part { background: var(--white); border-top: 3px solid var(--teal); padding: 1.75rem 2rem; }
.price-part.monthly { border-top-color: var(--gold); }
.price-part-label { display: block; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.6rem; }
.price-part.monthly .price-part-label { color: var(--gold); }
.price-part p { font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 0.7rem; }
.price-part-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.price-plain { max-width: 700px; margin: 0 auto 2.75rem; text-align: center; font-size: 1.02rem; line-height: 1.7; color: var(--ink); font-weight: 500; }
.price-own { max-width: 700px; margin: 1.5rem auto 0; text-align: center; font-size: 0.85rem; font-style: italic; color: var(--slate); }
@media (max-width: 700px) { .price-split { grid-template-columns: 1fr; } }

/* ─── 9. ANIMATIONS ─── */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.6); } }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}
