/* ==========================================================
   The Grace & Gratitude Group — Shared Stylesheet
   ========================================================== */

:root {
  /* Core palette */
  --pink-blush: #F8D7DB;
  --pink-petal: #F4C2C9;
  --pink-soft:  #FBE4E7;
  --pink-mist:  #FDF1F3;
  --pink-deep:  #E8A9B2;
  --pink-rose:  #D98F99;

  --gold:        #C9A24B;
  --gold-bright: #E0BE6B;
  --gold-deep:   #9E7C30;
  --gold-pale:   #F3E3B8;

  --pearl:        #FBF8F3;
  --pearl-warm:   #F5EEE4;
  --pearl-shadow: #E9DFD2;

  --ink:       #2B1B1E;
  --ink-soft:  #5A4146;
  --ink-mute:  #876C72;
  --ink-faint: #B39BA1;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-soft: 0 10px 40px -18px rgba(140, 70, 80, 0.25);
  --shadow-card: 0 30px 60px -30px rgba(140, 70, 80, 0.22),
                 0 2px 8px -2px rgba(140, 70, 80, 0.08);
  --shadow-hover: 0 40px 80px -30px rgba(140, 70, 80, 0.3),
                  0 4px 12px -4px rgba(140, 70, 80, 0.12);

  --nav-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, var(--pink-mist) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 30%, var(--pearl) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, var(--pink-soft) 0%, transparent 50%),
    linear-gradient(180deg, var(--pink-blush) 0%, var(--pink-petal) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Decorative pearl motes */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.25) 0 1.5px, transparent 3px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 85%, rgba(255,255,255,0.28) 0 1.5px, transparent 3px),
    radial-gradient(circle at 25% 50%, rgba(201,162,75,0.10) 0 1px, transparent 2px);
  background-size: 700px 700px, 600px 600px, 800px 800px, 650px 650px, 500px 500px;
  z-index: 0;
}

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

.kathleen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kathleen-photo-frame {
  overflow: hidden;
  background: linear-gradient(160deg, var(--pink-soft), var(--pink-blush));
}

.kathleen-photo-round {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 6px solid rgba(251,248,243,0.72);
  box-shadow: var(--shadow-soft);
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  padding-right: max(32px, env(safe-area-inset-right));
  padding-left: max(32px, env(safe-area-inset-left));
  background: rgba(248, 215, 219, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.nav-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-mark .nav-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-mark .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}
.nav-mark .wordmark em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 2px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}
.nav-cta {
  background: linear-gradient(135deg, var(--ink), #3E282C);
  color: var(--pearl) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--pearl) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}

/* ==========================================================
   LAYOUT
   ========================================================== */
.page { position: relative; z-index: 1; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* Section eyebrow */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 8px 20px;
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

/* ==========================================================
   TYPE
   ========================================================== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; color: var(--ink); margin: 0; }
h1 em, h2 em, h3 em, h4 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.h-display {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
}
.h-card {
  font-size: 24px;
  line-height: 1.2;
}
.lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
.subtle { color: var(--ink-mute); font-size: 15px; }

p { color: var(--ink-soft); margin: 0 0 1em; }

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cred-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, #A07A2E, #7A5C20);
  color: var(--pearl);
  box-shadow: 0 10px 30px -10px rgba(122,92,32,0.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(158,124,48,0.6);
}
.btn-ink {
  background: linear-gradient(135deg, var(--ink), #3E282C);
  color: var(--pearl);
}
.btn-ink:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(43,27,30,0.2);
}
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================
   CARDS
   ========================================================== */
.card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-pearl {
  background: linear-gradient(160deg, var(--pearl), var(--pearl-warm));
  border: 1px solid var(--pearl-shadow);
}
.card-ink {
  background: linear-gradient(160deg, var(--ink), #3E282C);
  color: var(--pearl);
  border: none;
}
.card-ink h2, .card-ink h3, .card-ink p { color: var(--pearl); }

/* ==========================================================
   GG MARK (official lockup + monogram)
   ========================================================== */
.gg-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  height: 64px;
}
.gg-mark img {
  display: block;
  height: 100%;
  width: auto;
}
.gg-xl { height: clamp(110px, 16vw, 200px); }
.gg-lg { height: 96px; }
.gg-md { height: 64px; }
.gg-sm { height: 40px; }
.logo-full {
  display: block;
  margin: 0 auto;
  width: min(280px, 68vw);
  height: auto;
}
.logo-full-sm {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

/* ==========================================================
   HERO PATTERNS
   ========================================================== */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-panel {
  position: relative;
  padding: 80px 56px 72px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(253,241,243,0.35) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  bottom: -120px; right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ==========================================================
   AUDIENCE CARDS
   ========================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: rgba(255,255,255,0.7);
}
.audience-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
}
.audience-card h3 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}
.audience-card h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
}
.audience-card p { font-size: 15px; margin: 0; }
.audience-card .link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ==========================================================
   TESTIMONIAL
   ========================================================== */
.testimonial {
  text-align: center;
  padding: 48px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.testimonial cite small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 400;
}

/* ==========================================================
   FORMS
   ========================================================== */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 1px solid rgba(43,27,30,0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: rgba(255,255,255,0.65);
  transition: all 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-inline {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.form-inline input { flex: 1; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status[hidden] { display: none; }
.form-status.is-success {
  color: var(--ink);
  background: rgba(248, 215, 219, 0.45);
  border: 1px solid rgba(201, 162, 75, 0.3);
}
.form-status.is-error {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 78, 63, 0.35);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding: 72px 32px 40px;
  background:
    linear-gradient(180deg, transparent, rgba(248,215,219,0.4) 30%, rgba(252,248,243,0.6));
  border-top: 1px solid rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .gg-mark { display: block; margin-bottom: 16px; height: 56px; }
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 320px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer p a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer ul a:hover, .footer p a:hover { color: var(--gold-deep); }
.footer .contact-line { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201,162,75,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-sig {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: var(--gold-deep);
  font-weight: 600;
}
.footer-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================
   DIVIDER / ORNAMENT
   ========================================================== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}
.ornament .line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,0.5), transparent);
}
.ornament .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 2px 8px rgba(158,124,48,0.4);
}

/* ==========================================================
   PILLS / BADGES
   ========================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--gold-deep);
}
.pill-filled {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--pearl);
  border: none;
}

/* ==========================================================
   MOBILE NAV
   ========================================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  position: relative;
  z-index: 51;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:first-child { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(251, 240, 243, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 49;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-deep); }
.nav-mobile .mob-cta {
  margin-top: 28px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--ink), #3E282C);
  color: var(--pearl) !important;
  padding: 18px 32px;
  border-radius: 999px;
  text-align: center;
  border: none;
}

/* ==========================================================
   NAMED GRID CLASSES (responsive-friendly replacements for inline styles)
   ========================================================== */
.about-preview  { display: grid; grid-template-columns: 1fr 1fr;   gap: 64px; align-items: center; }
.bio-grid       { display: grid; grid-template-columns: 5fr 7fr;   gap: 72px; align-items: start; }
.beliefs-grid   { display: grid; grid-template-columns: 1fr 1fr;   gap: 24px; }
.cred-grid      { display: grid; grid-template-columns: 1fr 1fr;   gap: 32px 48px; }
.philosophy-grid{ display: grid; grid-template-columns: 1fr 1fr;   gap: 40px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr;   gap: 16px; }

/* iOS Safari: background-attachment:fixed causes scroll jank */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .nav {
    padding: 0 20px;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }
  .nav-inner { gap: 16px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { font-size: 12px; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-panel { padding: 56px 28px 48px; }
  .section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .about-preview, .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-grid > *:first-child { position: static !important; }
  .beliefs-grid, .philosophy-grid { grid-template-columns: 1fr; gap: 28px; }
  .cred-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-inline { flex-direction: column; }
  .gg-lg { height: 60px; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 80px 0; }
}
@media (max-width: 640px) {
  .nav-links .desktop-only { display: none; }
  .nav-links { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .testimonial { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .wrap, .wrap-narrow { padding: 0 16px !important; }
  .section { padding: 44px 0; }
  .section-lg { padding: 64px 0; }
  .card { padding: 22px 18px; }
  .btn { padding: 14px 22px; font-size: 12px; }
  .hero-panel { padding: 40px 20px 36px; border-radius: 20px; }
  .h-display { font-size: clamp(30px, 9vw, 48px); }
}

/* ==========================================================
   A11y
   ========================================================== */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.btn:focus-visible, .nav-cta:focus-visible {
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================
   NAV — five items + conversation CTA
   ========================================================== */
.nav-links { gap: 18px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.07em;
}
.nav-cta {
  min-height: 44px;
  white-space: nowrap;
  padding: 10px 16px !important;
  line-height: 1.2;
}
@media (max-width: 1120px) {
  .nav-mark .wordmark { display: none; }
}

/* ==========================================================
   CREDIBILITY / STATS
   ========================================================== */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  color: var(--ink);
  font-weight: 500;
}
.stat .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ==========================================================
   OCEAN MOMENT
   ========================================================== */
.ocean-moment {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.ocean-moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ocean-moment .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,32,48,0.28), rgba(27,32,48,0.55));
}
.ocean-moment .copy {
  position: relative;
  z-index: 1;
  padding: 64px 32px;
  max-width: 760px;
}
.ocean-moment h2 {
  color: #FBF8F3;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
}
.ocean-moment h2 em { color: #E8D7A8; }
.ocean-moment p {
  color: rgba(251,248,243,0.88);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  margin: 24px auto 0;
  max-width: 560px;
}

/* ==========================================================
   SPEAKING STRIP
   ========================================================== */
.speaking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.55);
}
.speaking-strip p {
  margin: 0;
  font-size: 16px;
}
.speaking-strip a {
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

/* ==========================================================
   BOOKING
   ========================================================== */
.booking-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(253,241,243,0.42));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.booking-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 70%);
  pointer-events: none;
}
.booking-panel > * { position: relative; z-index: 1; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 6px;
  border: 1px solid rgba(43,27,30,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  transition: all 0.18s ease;
}
.slot-grid label:hover { border-color: var(--gold); background: rgba(255,255,255,0.9); }
.slot-grid input { position: absolute; opacity: 0; pointer-events: none; }
.slot-grid label.is-selected {
  border-color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(224,190,107,0.28), rgba(201,162,75,0.16));
  color: var(--ink);
}
.slot-grid label.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.format-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.format-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(43,27,30,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  min-height: 44px;
}
.format-row input { accent-color: var(--gold-deep); }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.booking-card {
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(253,241,243,0.4));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.sidebar-card {
  padding: 40px 36px;
  background: linear-gradient(160deg, var(--ink), #3E282C);
  color: var(--pearl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.sidebar-card h3 { color: var(--pearl); margin-bottom: 12px; font-size: 22px; }
.sidebar-card h3 em { color: var(--gold-bright); }
.sidebar-card .contact-block { padding: 20px 0; border-bottom: 1px solid rgba(251,248,243,0.12); }
.sidebar-card .contact-block:last-child { border-bottom: none; }
.sidebar-card .label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); font-weight: 500; margin-bottom: 8px; }
.sidebar-card .value { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--pearl); text-decoration: none; }
.sidebar-card .value:hover { color: var(--gold-bright); }
.sidebar-card .hours-line { font-size: 14px; color: var(--pearl-shadow); margin-top: 4px; }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.timeline-step {
  padding: 32px 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.timeline-step .num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.radio-group { display: grid; gap: 8px; }
.radio-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(43,27,30,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  min-height: 44px;
}
.radio-group input { margin-top: 3px; accent-color: var(--gold-deep); }
.faq-item { border-bottom: 1px solid rgba(201,162,75,0.2); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.faq-item p { font-size: 15px; margin: 0; }
.inclusions { list-style: none; padding: 0; margin: 24px 0 0; }
.inclusions li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,75,0.25);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.inclusions li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  margin-top: 9px;
  flex-shrink: 0;
}

/* ==========================================================
   CONVERSATION (private door)
   ========================================================== */
body.conv-page .footer { display: none; }
.conv-shell { max-width: 720px; margin: 0 auto; padding: 28px 20px 80px; }
.conv-mark { display: block; width: 56px; height: auto; margin: 0 auto 28px; }
.conv-photo {
  width: min(220px, 56vw);
  height: min(220px, 56vw);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 6px solid rgba(251,248,243,0.8);
  box-shadow: var(--shadow-card);
}
.conv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.conv-kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  text-align: center;
}
.conv-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.12;
  color: var(--ink);
  text-align: center;
  margin: 12px 0 0;
}
.conv-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
  margin: 24px auto 0;
  max-width: 560px;
}
.conv-sig { text-align: center; margin-top: 20px; }

/* ==========================================================
   SEA FOR THE SOUL — navy used only here
   ========================================================== */
.sea-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: #F7F3EA;
  box-shadow: var(--shadow-card);
}
.sea-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sea-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,32,54,0.15) 0%, rgba(15,32,54,0.72) 70%);
}
.sea-hero .copy { position: relative; z-index: 1; padding: 48px 40px 44px; max-width: 720px; }
.sea-hero h1, .sea-hero p { color: #F7F3EA; }
.sea-hero .eyebrow {
  color: #E8D7A8;
  border-color: rgba(232,215,168,0.4);
  background: rgba(15,32,54,0.25);
}
.arc-grid { display: grid; gap: 14px; }
.arc-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.6);
}
.arc-item .step {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1E3A5F;
  padding-top: 4px;
}
.arc-item h3 { font-size: 22px; margin-bottom: 6px; }
.arc-item p { margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .stat-band { grid-template-columns: 1fr; }
  .speaking-strip { flex-direction: column; align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .timeline-grid { grid-template-columns: 1fr; }
  .booking-panel, .booking-card { padding: 36px 22px; }
  .sea-hero { min-height: 420px; }
  .sea-hero .copy { padding: 32px 22px; }
  .arc-item { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 720px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .format-row { grid-template-columns: 1fr; }
}

