:root {
  --bg: #080b0f;
  --bg-elevated: #111520;
  --surface: #161b24;
  --text: #eef1f5;
  --text-muted: #8b95a5;
  --accent: #5fd4b3;
  --accent-hover: #7ae0c4;
  --accent-dim: #3a8f75;
  --accent-glow: rgba(95, 212, 179, 0.18);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(95, 212, 179, 0.3);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(95, 212, 179, 0.1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(95, 212, 179, 0.22);
  color: var(--text);
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s var(--ease-spring),
    transform 0.75s var(--ease-spring);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── KEYFRAMES ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes mesh-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(1.5%, 2.5%) scale(1.06); opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-soft), 0 0 20px rgba(95, 212, 179, 0.07); }
  50%       { box-shadow: var(--shadow-soft), 0 0 44px rgba(95, 212, 179, 0.2); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.85);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  background: linear-gradient(130deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.82;
}

.nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.22s ease;
}

.nav a:hover,
.nav a.nav-active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.nav-active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text) !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  border-color: var(--border-accent) !important;
  background: rgba(95, 212, 179, 0.07) !important;
  box-shadow: 0 0 18px rgba(95, 212, 179, 0.12) !important;
  color: var(--accent-hover) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-signin {
  padding: 0.42rem 0.85rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  color: var(--text-muted) !important;
  font-size: 0.875rem !important;
  transition: color 0.15s ease, border-color 0.15s ease !important;
}

.nav-signin:hover {
  color: var(--text) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.nav-signin::after {
  display: none !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-spring), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease;
  font-size: 0.9375rem;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -25% -25%;
  background:
    radial-gradient(ellipse 65% 55% at 25% 38%, rgba(95, 212, 179, 0.1), transparent 65%),
    radial-gradient(ellipse 50% 65% at 82% 65%, rgba(95, 212, 179, 0.045), transparent 65%),
    radial-gradient(ellipse 42% 38% at 62% -8%, rgba(95, 212, 179, 0.065), transparent 60%);
  animation: mesh-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: 3.5rem;
    align-items: center;
  }
}

/* hero copy staggered page-load entrance */
.hero-copy > * {
  animation: hero-enter 0.85s var(--ease-spring) backwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.38s; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 44rem;
  line-height: 1.65;
}

.lead strong {
  color: #c5cdd8;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.18s ease;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: var(--accent);
  color: #06251c;
  box-shadow: 0 2px 14px rgba(95, 212, 179, 0.22);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 28px rgba(95, 212, 179, 0.38);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  margin-top: 0.25rem;
}

/* ── HERO CARD ── */
.hero-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation:
    float 7s ease-in-out infinite,
    hero-enter 1s var(--ease-spring) 0.35s backwards;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(95, 212, 179, 0.22), transparent 55%, rgba(95, 212, 179, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.hero-stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-card-desc .hero-stat:first-child .stat-num {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.1rem;
}

.hero-cred-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(95, 212, 179, 0.1);
  border: 1px solid rgba(95, 212, 179, 0.22);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.4;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.125rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.6;
}

.prose {
  color: var(--text-muted);
  margin: 0;
  max-width: 40rem;
  line-height: 1.65;
}

.prose strong {
  color: #cfd6df;
  font-weight: 600;
}

.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  padding: 1.2rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.feature-list li:hover {
  border-color: rgba(95, 212, 179, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(95, 212, 179, 0.07);
  transform: translateY(-2px);
}

.feature-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.feature-list span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ── PHOTO GRID ── */
.photos-section {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.group-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-inline: auto;
}

.group-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.bio-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  min-width: 0;
}

@media (min-width: 640px) {
  .bio-grid { grid-template-columns: repeat(3, 1fr); }
}

.bio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.35s ease;
}

.bio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-accent);
}

.bio-photo-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
}

.bio-headshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.85) brightness(0.88);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.bio-card:hover .bio-headshot {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}

.bio-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: linear-gradient(to top, rgba(8, 11, 15, 0.97) 30%, rgba(8, 11, 15, 0.8) 100%);
  transform: translateY(100%);
  transition: transform 0.42s var(--ease-spring);
}

.bio-card:hover .bio-text {
  transform: translateY(0);
}

.photo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

.photo-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.photo-card:hover .photo-frame {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(95, 212, 179, 0.18);
  border-color: rgba(95, 212, 179, 0.22);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-spring);
}

.photo-card:hover .photo-frame img {
  transform: scale(1.045);
}

.photo-card figcaption {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  padding: 0 0.15rem;
}

.team-caption {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.team-bio {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.team-bio a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.team-bio a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ── CARDS ── */
.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(95, 212, 179, 0.28);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.2), var(--shadow-glow);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ── TEACH ACCORDION ── */
.teach-categories {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 42rem;
}

.teach-cat {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  will-change: transform;
}

.teach-cat[open] {
  border-color: var(--border-accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.teach-cat-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: background 0.12s ease;
}

.teach-cat-summary::-webkit-details-marker { display: none; }

.teach-cat-summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.25s var(--ease-spring), border-color 0.15s ease;
}

.teach-cat[open] .teach-cat-summary::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
  border-color: var(--accent);
}

.teach-cat-summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.teach-cat-body {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.teach-list {
  margin: 0;
  padding: 0.85rem 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.teach-list li { margin-bottom: 0.45rem; }
.teach-list li:last-child { margin-bottom: 0; }
.teach-list strong { color: #c5cdd8; font-weight: 600; }

.teach-cat-text {
  margin: 0.85rem 0 0;
  padding: 0 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.teach-cat-text a { color: var(--accent); text-decoration: none; }
.teach-cat-text a:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }

/* ── STEPS ── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 640px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.steps h3 { margin: 0 0 0.35rem; font-size: 1.125rem; font-weight: 600; }
.steps p  { margin: 0; color: var(--text-muted); font-size: 0.9375rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

@media (min-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.pricing-card,
.deals-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
  will-change: transform;
}

.pricing-card:hover,
.deals-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  border-color: var(--border-accent);
}

.pricing-card-featured {
  border-color: rgba(95, 212, 179, 0.38);
  animation: glow-pulse 4.5s ease-in-out infinite;
}

.pricing-card h3,
.deals-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pricing-tier {
  text-align: center;
}

.pricing-tier-label {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pricing-rate {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.pricing-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pricing-list li { margin-bottom: 0.4rem; }
.pricing-list li:last-child { margin-bottom: 0; }

.pricing-note {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-note strong { color: #d8dee7; }

.pricing-extra {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-extra strong { color: #c5cdd8; font-weight: 600; }

/* ── BOOK FORM ── */
.book-section {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.book-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}

.form-shell {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.form-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(95, 212, 179, 0.18), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.book-form label {
  display: block;
  margin-bottom: 1rem;
}

.book-form label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.optional {
  font-weight: 400;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8125rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(95, 212, 179, 0.12);
}

.book-form textarea {
  resize: vertical;
  min-height: 4rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  min-height: 1.5em;
}

.form-status.success { color: var(--accent); }
.form-status.error   { color: #f87171; }

/* ── CONTACT ── */
.contact-section {
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 5rem);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.contact-inner {
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 212, 179, 0.35);
  background: rgba(95, 212, 179, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  word-break: break-word;
}

.contact-email:hover {
  background: rgba(95, 212, 179, 0.12);
  border-color: rgba(95, 212, 179, 0.55);
  color: var(--accent-hover);
  box-shadow: 0 0 26px rgba(95, 212, 179, 0.16);
}

.contact-hint {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-hint a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-hint a:hover { color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  padding: 2.75rem 0 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  background: linear-gradient(130deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tag {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer-contact { margin: 0; font-size: 0.9375rem; }

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact a[href="#contact"],
.footer-contact a[href="#privacy"] { color: var(--text-muted); font-weight: 500; }
.footer-contact a[href="#contact"]:hover,
.footer-contact a[href="#privacy"]:hover { color: var(--text); }

.footer-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.65;
  line-height: 1.5;
}

