/* === DESIGN TOKENS (shadcn-style theming) === */
:root {
  /* brand */
  --emerald-50: #f4f7f4;
  --emerald-100: #e2ebe5;
  --emerald-200: #c2d4c8;
  --emerald-500: #3a6a52;
  --emerald-700: #1f4332;
  --emerald-900: #102b1e;
  --emerald-deep: #1b3a2e;

  --gold-50:  #faf3e3;
  --gold-200: #e8d49a;
  --gold-400: #c9a85f;
  --gold-500: #b68f40;
  --gold-700: #8a6622;

  --cream-50: #faf8f2;
  --cream-100: #f5f1e8;
  --cream-200: #ece5d3;

  --ink-900: #11241a;
  --ink-700: #2c3d33;
  --ink-500: #58655c;
  --ink-300: #8a948e;

  /* surfaces */
  --bg:       var(--cream-50);
  --bg-alt:   var(--cream-100);
  --surface:  #ffffff;
  --surface-deep: var(--emerald-deep);

  /* text */
  --text:     var(--ink-900);
  --text-muted: var(--ink-500);
  --text-on-deep: #f5f1e8;

  /* accents */
  --accent:   var(--gold-500);
  --primary:  var(--emerald-deep);

  /* radius (shadcn-style) */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(17,36,26,0.05);
  --shadow:    0 4px 16px rgba(17,36,26,0.06), 0 1px 3px rgba(17,36,26,0.04);
  --shadow-lg: 0 16px 48px rgba(17,36,26,0.10), 0 4px 12px rgba(17,36,26,0.06);

  /* type */
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], header[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

.display { font-family: var(--display); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 248, 242, 0.78);
  border-bottom: 1px solid rgba(17,36,26,0.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--cream-50);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--gold-400);
}
.brand-mark.sm { width: 28px; height: 28px; font-size: 11px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--cream-50) !important;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  transition: all .15s;
}
.nav-cta:hover { background: var(--emerald-700); }
@media (max-width: 700px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .brand-name { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(27,58,46,0.06), transparent 60%),
    var(--cream-50);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(27,58,46,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  opacity: 0.6;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}
.orb-emerald {
  width: 540px; height: 540px;
  background: var(--emerald-500);
  top: -180px; left: -160px;
}
.orb-gold {
  width: 420px; height: 420px;
  background: var(--gold-400);
  top: 80px; right: -140px;
  opacity: 0.20;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-eyebrow {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  color: var(--gold-500);
}
.lotus { display: inline-flex; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
}
.hero-title .given,
.hero-title .family { display: block; }
.hero-title .family { font-style: italic; color: var(--emerald-700); }

.hero-titles {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-titles .dot { color: var(--gold-200); }

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink-700);
  margin: 0 0 22px;
  font-weight: 400;
  font-style: italic;
}
.hero-lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 580px;
  margin: 0 0 36px;
}
.hero-lead strong { color: var(--primary); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === HERO PORTRAIT === */
.hero-portrait {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  animation: portraitIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes portraitIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Card: the visual container — soft white surface, padding, shadow, gold accent */
.portrait-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  background: var(--surface);
  padding: 14px 14px 22px;
  border-radius: 18px;
  border: 1px solid rgba(17,36,26,0.07);
  box-shadow:
    0 24px 60px -16px rgba(17,36,26,0.30),
    0 8px 20px -8px rgba(17,36,26,0.18),
    0 1px 3px rgba(17,36,26,0.05);
}
/* subtle gold underline inside the card */
.portrait-card::after {
  content: '';
  position: absolute;
  left: 22%; right: 22%;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

/* Frame: just the image holder — clean rounded corners, aspect ratio */
.portrait-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 899 / 1200;
  background: var(--emerald-deep);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portrait-card:hover .portrait-frame img { transform: scale(1.02); }

/* Ambient glow — sits BEHIND the card, much softer */
.portrait-glow {
  position: absolute;
  inset: -50px;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,95,0.10), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.portrait-caption {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.caption-mark { color: var(--gold-500); font-size: 13px; }

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-title { align-items: center; }
  .hero-titles { justify-content: center; }
  .cta-row { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-portrait { order: -1; }
  .portrait-card { max-width: 280px; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 0 20px; gap: 36px; }
  .portrait-card { max-width: 240px; padding: 12px 12px 20px; }
  .portrait-card::after { left: 25%; right: 25%; }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--cream-50);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(17,36,26,0.18);
}
.btn-ghost:hover {
  background: rgba(17,36,26,0.04);
  border-color: var(--primary);
}

/* === PILLARS BAR === */
.pillars {
  background: var(--surface-deep);
  color: var(--text-on-deep);
  padding: 22px 0;
  border-top: 1px solid rgba(201,168,95,0.18);
  border-bottom: 1px solid rgba(201,168,95,0.18);
}
.pillars-grid {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.pillar { display: inline-flex; align-items: center; gap: 8px; }
.pillar-icon { color: var(--gold-400); font-size: 16px; }

/* === SECTIONS === */
.section { padding: 76px 0; }
@media (max-width: 700px) { .section { padding: 56px 0; } }

.section-cream { background: var(--cream-100); }
.section-deep {
  background: var(--surface-deep);
  color: var(--text-on-deep);
}
.section-deep .section-eyebrow { color: var(--gold-400); }
.section-deep .card-eyebrow { color: var(--gold-400); }
.section-deep .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,95,0.18);
  color: var(--text-on-deep);
}
.section-deep .card-list li { color: rgba(245,241,232,0.85); }
.section-deep .card-list li::before { color: var(--gold-400); }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 16px;
  max-width: 800px;
}
.section-deep .section-title { color: var(--cream-50); }
.section-title em { font-style: italic; color: var(--gold-500); font-weight: 500; }
.section-lede {
  font-size: 17px;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.section-deep .section-lede { color: rgba(245,241,232,0.8); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .section-title,
.section-head .section-lede { margin-left: auto; margin-right: auto; }

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.lede em { font-style: italic; color: var(--primary); font-weight: 500; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

/* === CARDS (shadcn-flavored) === */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,36,26,0.08);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--primary);
  line-height: 1.2;
}
.card-list { list-style: none; padding: 0; margin: 0; }
.card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.card-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-size: 9px;
  top: 7px;
}
.card-list.checklist li::before { content: '✓'; font-size: 13px; top: 2px; color: var(--emerald-500); }
.card-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 14px;
}

/* Philosophy card */
.philosophy-card {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-700));
  color: var(--text-on-deep);
  border-color: rgba(201,168,95,0.25);
}
.philosophy-card .card-icon {
  color: var(--gold-400);
  margin-bottom: 18px;
}
.philosophy-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  font-style: italic;
  color: var(--cream-50);
}

/* === COACHING ARC === */
.arc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 1000px) { .arc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .arc { grid-template-columns: 1fr; } }

.arc-step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,36,26,0.08);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.arc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.arc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-700));
  color: var(--gold-400);
  margin-bottom: 12px;
  border: 1px solid rgba(201,168,95,0.3);
}
.arc-step:nth-child(2n) .arc-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--cream-50);
  border-color: rgba(255,255,255,0.2);
}
.arc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.arc-h {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 2px;
  line-height: 1.1;
}
.arc-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-500);
  margin-bottom: 10px;
  font-style: italic;
}
.arc-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(17,36,26,0.06);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
  transition: all .15s;
}
.service-item:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow);
  transform: translateX(2px);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(58,106,82,0.1);
  color: var(--emerald-500);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* === NICHE GRID === */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) { .niche-grid { grid-template-columns: 1fr; } }

.niche-card { display: flex; flex-direction: column; }
.niche-feature {
  background: linear-gradient(135deg, var(--cream-100), var(--cream-50));
  border: 1px solid var(--gold-200);
  position: relative;
}
.niche-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--emerald-500));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.niche-feature .card-lede em { color: var(--gold-700); font-weight: 500; }
.niche-feature .card-keywords {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-500);
  letter-spacing: 0.01em;
}

/* === AGREEMENT === */
.agreement-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  border-left: 4px solid var(--gold-400);
}
.agreement-card p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 14px;
}
.agreement-fine {
  font-size: 14px !important;
  color: var(--ink-500) !important;
  font-style: italic;
  border-top: 1px solid rgba(17,36,26,0.08);
  padding-top: 14px;
  margin-top: 18px !important;
}

/* === CONTACT === */
.section-contact { text-align: center; }
.contact-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.contact-lede {
  font-size: 17px;
  color: rgba(245,241,232,0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,95,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s;
  text-align: left;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}
.contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.contact-value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--cream-50);
  word-break: break-word;
}

/* === SCENES (editorial wellness imagery section) === */
.section-scenes {
  background: var(--cream-100);
  position: relative;
}
/* gold rule above + below the section for editorial feel */
.section-scenes::before,
.section-scenes::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.section-scenes::before { top: 0; }
.section-scenes::after  { bottom: 0; }

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .scenes-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 520px) {
  .scenes-grid { grid-template-columns: 1fr; gap: 16px; }
}

.scene {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.scene-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--emerald-deep);
  box-shadow:
    0 18px 40px -16px rgba(17,36,26,0.30),
    0 6px 14px -8px rgba(17,36,26,0.18),
    0 0 0 1px rgba(17,36,26,0.05);
}
.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter .4s;
  filter: saturate(0.94) brightness(0.96);
}
.scene-photo::before {
  /* subtle gold inner border (no blend mode artifacts) */
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 95, 0.25);
  pointer-events: none;
  z-index: 1;
}
.scene-photo::after {
  /* soft bottom gradient for depth — doesn't hold text anymore */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,29,20,0.30));
  pointer-events: none;
}
.scene:hover .scene-photo img {
  transform: scale(1.04);
  filter: saturate(1.02) brightness(1);
}

.scene-meta {
  padding: 18px 4px 0;
}
.scene-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.scene-h {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.scene-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-500);
}

/* Pull quote at the bottom of the scenes section */
.scenes-quote {
  margin: 56px auto 0;
  max-width: 620px;
  text-align: center;
  padding: 0;
  position: relative;
}
.scenes-quote-mark {
  display: block;
  font-size: 22px;
  color: var(--gold-500);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.scenes-quote p {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--primary);
  margin: 0;
  font-weight: 500;
}
.scenes-quote em {
  font-style: italic;
  color: var(--gold-700);
}

/* === CERTIFICATIONS / RECENT TRAINING ===
   Museum-display layout: centered framed cert above a centered meta block.
   Certificate is constrained — never wider than 360px on desktop. */

.section-certifications { position: relative; }

.cert-display {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

/* === The frame === outer wood-tone-style card with double border treatment */
.cert-frame {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 360px;
  position: relative;
  background:
    linear-gradient(135deg, #2a4936 0%, #1b3a2e 50%, #102b1e 100%);
  border-radius: 6px;
  padding: 18px;
  box-shadow:
    0 32px 80px -24px rgba(11,29,20,0.55),
    0 14px 30px -10px rgba(11,29,20,0.35),
    0 0 0 1px rgba(11,29,20,0.20);
}
/* outer gold line — the metal frame edge */
.cert-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 95, 0.55);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
/* inner gold line — the second frame line */
.cert-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 95, 0.25);
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
}

/* === The matte === cream board around the actual cert image */
.cert-photo {
  position: relative;
  background: var(--cream-50);
  padding: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(17,36,26,0.06),
    inset 0 2px 8px rgba(17,36,26,0.04);
  z-index: 2;
}
.cert-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
  box-shadow:
    0 4px 14px -4px rgba(17,36,26,0.18),
    0 1px 3px rgba(17,36,26,0.08);
}
/* tiny brass nameplate under the photo, inside the frame */
.cert-frame > .cert-nameplate {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  padding: 6px 12px;
  background: linear-gradient(180deg, rgba(201,168,95,0.12), rgba(201,168,95,0.04));
  border: 1px solid rgba(201, 168, 95, 0.28);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(232, 212, 154, 0.92);
  text-align: center;
}

/* === The meta block — sits below the frame, centered === */
.cert-meta {
  position: relative;
  width: 100%;
  max-width: 540px;
  text-align: center;
}
.cert-org {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.cert-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.cert-title em { font-style: italic; color: var(--gold-700); }
.cert-blurb {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 22px;
}

.cert-details {
  margin: 0 auto 22px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid rgba(17,36,26,0.07);
  border-radius: var(--radius);
  max-width: 480px;
  text-align: left;
}
.cert-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17,36,26,0.06);
}
.cert-row:first-child { padding-top: 0; }
.cert-row:last-child { border-bottom: none; padding-bottom: 0; }
.cert-row dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  align-self: center;
}
.cert-row dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 500;
  align-self: center;
}

.cert-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--cream-50), var(--cream-100));
  border: 1px solid var(--gold-200);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.cert-seal-mark { color: var(--gold-500); font-size: 13px; }

@media (max-width: 600px) {
  .cert-frame { max-width: 280px; padding: 14px; }
  .cert-photo { padding: 12px; }
}

/* === FAQ === */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(17,36,26,0.08);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] {
  border-color: var(--gold-400);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-500);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,95,0.35);
  border-radius: 50%;
  transition: transform .25s, color .15s, border-color .15s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--gold-700);
  border-color: var(--gold-500);
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-700);
}
.faq-answer em { color: var(--primary); font-style: italic; font-weight: 500; }
.faq-answer strong { color: var(--primary); font-weight: 600; }

/* === FOOTER === */
.footer {
  padding: 36px 0;
  background: #0c1d14;
  color: rgba(245,241,232,0.55);
  font-size: 13px;
  border-top: 1px solid rgba(201,168,95,0.15);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  color: var(--cream-100);
  font-size: 15px;
}
.footer-brand .brand-mark { background: rgba(201,168,95,0.15); border-color: var(--gold-400); color: var(--gold-400); }
@media (max-width: 600px) { .footer-inner { justify-content: center; text-align: center; } }
