:root {
  --navy: #006b86;
  --navy-soft: #078fb1;
  --gold: #ffc72e;
  --coral: #ff5f4a;
  --aqua: #7ad3b9;
  --cream: #fffbf1;
  --white: #ffffff;
  --ink: #153b45;
  --muted: #5f7075;
  --line: rgba(0, 107, 134, 0.16);
  --shadow: 0 28px 70px rgba(0, 107, 134, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -4rem;
  padding: .8rem 1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: .5rem;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 5vw, 5.75rem);
  color: var(--navy);
  background: rgba(255, 251, 241, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0, 107, 134, .08); }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark-image { width: 40px; height: 58px; display: block; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; color: var(--navy-soft); font-size: 1rem; font-weight: 900; line-height: .95; letter-spacing: .11em; text-transform: uppercase; }
.brand-name strong { margin-top: .35rem; color: var(--coral); font-size: .69rem; font-weight: 850; letter-spacing: .14em; }
.primary-nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.8rem); font-size: .86rem; font-weight: 700; }
.primary-nav a { text-decoration: none; }
.primary-nav a:hover { color: #d54836; }
.text-button { border: 0; border-bottom: 2px solid var(--coral); padding: .25rem 0; background: transparent; font-weight: 800; cursor: pointer; }
.nav-toggle { display: none; border: 0; background: transparent; padding: .4rem; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem) clamp(5rem, 9vw, 8rem);
}
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -260px;
  bottom: -180px;
  border: 85px solid rgba(122, 211, 185, .22);
  border-radius: 50%;
}
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; color: var(--navy); font-size: .71rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 3px; border-radius: 99px; background: var(--coral); }
.eyebrow.light { color: rgba(255,255,255,.74); }
.eyebrow.light span { background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h1 { max-width: 720px; margin-bottom: 1.35rem; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.35rem, 6vw, 6.6rem); font-weight: 500; line-height: .92; }
h1 em { position: relative; color: #df4d3b; font-style: normal; }
h1 em::after { content: ""; position: absolute; left: 4%; right: 2%; bottom: -.1em; height: .12em; background: var(--gold); border-radius: 50%; transform: rotate(-1deg); }
.hero-summary { max-width: 600px; color: #505a70; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 2.1rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .85rem; padding: .88rem 1.2rem; border: 1px solid var(--navy); border-radius: 999px; text-decoration: none; font-size: .83rem; font-weight: 850; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0, 107, 134, .18); }
.button-primary { color: white; background: var(--navy); }
.button-secondary { color: var(--navy); background: transparent; }
.button-gold { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; color: #4c556a; font-size: .78rem; font-weight: 700; }
.trust-row i { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: .3rem; color: var(--navy); background: rgba(122, 211, 185, .36); border-radius: 50%; font-style: normal; font-size: .68rem; }

.about-section { padding: 0 clamp(1.25rem, 7vw, 8rem) clamp(5rem, 8vw, 7rem); }
.about-card { max-width: 1240px; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); margin: auto; padding: clamp(2rem, 5vw, 4.5rem); background: white; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.about-heading h2, .faq-heading h2 { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: clamp(2.4rem, 4.5vw, 4.6rem); font-weight: 500; line-height: 1; }
.about-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 2rem; }
.credential-grid div { padding: 1.2rem; background: var(--cream); border-radius: 15px; }
.credential-grid strong, .credential-grid span { display: block; }
.credential-grid strong { margin-bottom: .5rem; color: #d84a38; font-family: Georgia, serif; font-size: 1.8rem; }
.credential-grid span { color: var(--muted); font-size: .68rem; font-weight: 700; line-height: 1.45; }

.hero-visual { position: relative; min-height: 540px; display: grid; align-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 5% -3% 4% 7%; z-index: -2; background: var(--aqua); border-radius: 42% 58% 34% 66% / 54% 40% 60% 46%; transform: rotate(3deg); }
.hero-visual::after { content: ""; position: absolute; width: 120px; height: 120px; right: -16px; top: -4px; z-index: -1; background: var(--gold); border-radius: 50%; }
.hero-image-frame { height: 500px; overflow: hidden; background: white; border: 8px solid white; border-radius: 52px 18px 52px 18px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.hero-image-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 69% center; }
.hero-proof-card { position: absolute; left: -2.2rem; bottom: 2.5rem; display: flex; align-items: center; gap: .85rem; padding: 1rem 1.15rem; color: var(--navy); background: rgba(255,255,255,.96); border: 1px solid rgba(0,107,134,.1); border-radius: 16px; box-shadow: 0 18px 45px rgba(0,107,134,.2); transform: rotate(-2deg); }
.hero-proof-card > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; background: var(--gold); border-radius: 50%; }
.hero-proof-card strong, .hero-proof-card small { display: block; }
.hero-proof-card strong { margin-bottom: .25rem; font-size: .8rem; }
.hero-proof-card small { color: var(--muted); font-size: .62rem; }

.services-section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 7vw, 8rem); background: white; }
.section-heading { max-width: 1180px; display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 3rem; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); }
.section-heading h2 { max-width: 640px; margin-bottom: 0; color: var(--navy); font-family: Georgia, serif; font-size: clamp(2.5rem, 4.5vw, 4.6rem); font-weight: 500; line-height: 1; }
.section-heading > p { margin-bottom: .3rem; color: var(--muted); line-height: 1.7; }
.service-explorer { max-width: 1180px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.1rem; margin: 0 auto; }
.service-tabs { display: flex; flex-direction: column; gap: .55rem; }
.service-tab { width: 100%; min-height: 83px; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: .5rem; padding: .9rem 1rem; text-align: left; background: #faf8f2; border: 1px solid transparent; border-radius: 15px; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.service-tab:hover { transform: translateX(4px); border-color: var(--line); }
.service-tab.is-active { color: white; background: var(--navy); }
.service-number { color: var(--coral); font-family: Georgia, serif; font-size: 1rem; font-style: italic; }
.service-tab.is-active .service-number { color: var(--gold); }
.service-tab strong, .service-tab small { display: block; }
.service-tab strong { font-size: .92rem; }
.service-tab small { margin-top: .25rem; color: #858b9a; font-size: .68rem; }
.service-tab.is-active small { color: rgba(255,255,255,.63); }
.service-tab i { font-style: normal; transition: transform .2s; }
.service-tab.is-active i { transform: translateX(3px); }
.service-panel { min-height: 440px; display: grid; grid-template-columns: .86fr 1.14fr; overflow: hidden; color: var(--navy); background: var(--cream); border-radius: 25px; outline: none; }
.service-art { position: relative; min-height: 330px; overflow: hidden; background: var(--aqua); transition: background .25s; }
.service-art::before { content: ""; position: absolute; width: 260px; height: 260px; left: -90px; top: -80px; border: 48px solid rgba(255,255,255,.28); border-radius: 50%; }
.service-art::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; bottom: -60px; background: rgba(0,107,134,.1); border-radius: 46% 54% 40% 60%; }
.book-shape { position: absolute; inset: 0; margin: auto; width: 150px; height: 118px; display: flex; filter: drop-shadow(0 18px 25px rgba(0,107,134,.2)); }
.book-shape span { width: 50%; background: var(--cream); border: 4px solid var(--navy); }
.book-shape span:first-child { border-radius: 8px 2px 2px 18px; transform: skewY(7deg); border-right-width: 2px; }
.book-shape span:last-child { border-radius: 2px 8px 18px 2px; transform: skewY(-7deg); border-left-width: 2px; }
.art-letter { position: absolute; font-family: Georgia, serif; font-weight: 700; }
.letter-a { left: 19%; bottom: 15%; color: white; font-size: 2.1rem; transform: rotate(-12deg); }
.letter-b { right: 13%; top: 14%; color: var(--navy); font-size: 1.7rem; transform: rotate(9deg); }
.letter-c { left: 16%; top: 19%; color: var(--gold); font-size: 1.2rem; }
.math-art { background: var(--gold); }
.homework-art { background: var(--coral); }
.test-art { background: var(--aqua); }
.math-art .book-shape span, .homework-art .book-shape span, .test-art .book-shape span { border-radius: 50%; }
.service-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.8rem, 4vw, 3.7rem); }
.panel-kicker { color: #d84a38; font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.service-content h3 { margin-bottom: 1rem; font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3.1rem); font-weight: 500; line-height: 1.05; }
.service-content > p:not(.panel-kicker) { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; margin: .5rem 0 1.5rem; }
.tag-row span { padding: .45rem .65rem; border: 1px solid var(--line); border-radius: 999px; font-size: .66rem; font-weight: 800; }
.link-button { align-self: flex-start; padding: .35rem 0; color: var(--navy); background: transparent; border: 0; border-bottom: 2px solid var(--coral); font-size: .76rem; font-weight: 900; cursor: pointer; }

.packages-section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 7vw, 8rem); color: white; background: var(--navy); }
.package-intro { max-width: 790px; margin: 0 auto 2.5rem; text-align: center; }
.package-intro .eyebrow { justify-content: center; }
.package-intro h2 { margin-bottom: 1.2rem; font-family: Georgia, serif; font-size: clamp(2.6rem, 4.7vw, 4.8rem); font-weight: 500; line-height: 1; }
.package-intro > p:last-child { max-width: 650px; margin: auto; color: rgba(255,255,255,.68); line-height: 1.7; }
.plan-picker { max-width: 880px; margin: 2.5rem auto; padding: 1rem; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; text-align: center; }
.plan-picker > p { margin-bottom: .8rem; color: rgba(255,255,255,.72); font-size: .75rem; font-weight: 700; }
.picker-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; }
.picker-buttons button { padding: .65rem .8rem; color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .68rem; font-weight: 800; cursor: pointer; }
.picker-buttons button:hover, .picker-buttons button.is-active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.package-grid { max-width: 1240px; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin: 0 auto; }
.package-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 2.2rem 1.55rem 1.55rem; color: var(--navy); background: white; border: 2px solid transparent; border-radius: 19px; transition: transform .25s, box-shadow .25s, opacity .25s; }
.package-card.is-dimmed { opacity: .55; transform: scale(.975); }
.package-card.is-recommended { z-index: 2; border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.26); }
.package-accent { width: 42px; height: 6px; margin-bottom: 1.3rem; border-radius: 99px; }
.package-accent.aqua { background: var(--aqua); }
.package-accent.gold { background: var(--gold); }
.package-accent.coral { background: var(--coral); }
.package-accent.outline { border: 1px solid var(--navy); }
.popular-label { position: absolute; top: 0; right: 1.2rem; padding: .38rem .55rem; color: var(--navy); background: var(--gold); border-radius: 0 0 8px 8px; font-size: .58rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.package-label { margin-bottom: .25rem; color: #d84a38; font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.package-card h3 { margin-bottom: .65rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.price { display: flex; align-items: baseline; margin-bottom: 1.25rem; font-size: 2.15rem; font-weight: 900; letter-spacing: -.05em; }
.price sup { margin-right: .1rem; font-size: .9rem; }
.price span, .price small { margin-left: .35rem; color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: 0; }
.package-fit { margin-bottom: .8rem; color: var(--muted); font-size: .76rem; font-weight: 750; line-height: 1.5; }
.package-features { display: grid; gap: .5rem; margin: 0 0 1.35rem; padding: 0; color: var(--muted); font-size: .7rem; line-height: 1.45; list-style: none; }
.package-features li { position: relative; padding-left: 1rem; }
.package-features li::before { content: "✓"; position: absolute; left: 0; color: #2b807a; font-weight: 900; }
.package-button { width: 100%; margin-top: auto; padding: .78rem .9rem; color: var(--navy); background: var(--cream); border: 0; border-radius: 10px; font-size: .72rem; font-weight: 900; cursor: pointer; transition: background .2s, color .2s; }
.package-button:hover { color: white; background: var(--navy); }
.comparison { max-width: 1240px; margin: 1rem auto 0; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; }
.comparison-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; color: white; background: transparent; border: 0; text-align: left; cursor: pointer; }
.comparison-toggle strong, .comparison-toggle small { display: block; }
.comparison-toggle strong { font-size: .8rem; }
.comparison-toggle small { margin-top: .2rem; color: rgba(255,255,255,.55); font-size: .66rem; }
.comparison-toggle i { font-size: 1.5rem; font-style: normal; font-weight: 300; transition: transform .2s; }
.comparison-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.comparison-wrap { overflow-x: auto; border-top: 1px solid rgba(255,255,255,.14); }
.comparison-wrap[hidden] { display: none; }
table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .76rem; }
th, td { padding: 1rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; }
thead th { color: rgba(255,255,255,.5); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
tbody td { color: rgba(255,255,255,.72); }
tbody th span { margin-left: .35rem; padding: .2rem .35rem; color: var(--navy); background: var(--gold); border-radius: 4px; font-size: .48rem; text-transform: uppercase; }
.booking-band { max-width: 1240px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin: 5rem auto 0; padding: 2.2rem clamp(1.5rem, 4vw, 3.2rem); overflow: hidden; background: var(--navy-soft); border: 1px solid rgba(255,255,255,.09); border-radius: 23px; }
.booking-band > div { position: relative; }
.booking-symbol { position: absolute; right: -4rem; top: -2rem; color: rgba(243,200,75,.18); font-size: 8rem; }
.booking-band h2 { max-width: 680px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.9rem, 3vw, 3.1rem); font-weight: 500; line-height: 1.05; }

.process-section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 7vw, 8rem); background: white; }
.process-grid { max-width: 1180px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: auto; }
.process-grid article { position: relative; min-height: 235px; padding: 2rem; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: 22px; }
.process-grid article:nth-child(2) { background: rgba(122,211,185,.22); }
.process-grid article:nth-child(3) { background: rgba(237,123,113,.13); }
.process-grid article > span { display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--navy); background: var(--gold); border-radius: 50%; font-family: Georgia, serif; font-style: italic; font-size: .8rem; }
.process-grid h3 { max-width: 260px; margin: 1.3rem 0 .7rem; color: var(--navy); font-family: Georgia, serif; font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 500; line-height: 1.05; }
.process-grid p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }

.founder-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 8vw, 9rem); color: white; background: var(--navy); }
.founder-visual { position: relative; min-height: 400px; display: grid; place-items: center; }
.founder-visual::before { content: ""; position: absolute; width: 330px; height: 330px; background: var(--coral); border-radius: 44% 56% 61% 39% / 51% 41% 59% 49%; transform: rotate(-7deg); }
.founder-visual::after { content: ""; position: absolute; width: 220px; height: 220px; border: 2px dashed rgba(255,255,255,.45); border-radius: 50%; }
.founder-seal { position: relative; z-index: 1; width: 210px; height: 210px; display: grid; place-content: center; text-align: center; color: var(--navy); background: var(--gold); border: 8px solid white; border-radius: 50%; box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.founder-seal span { display: block; font-family: Georgia, serif; font-size: 4.5rem; line-height: .9; }
.founder-seal small { margin-top: .7rem; font-size: .7rem; font-weight: 850; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.credential-card { position: absolute; z-index: 2; right: 1%; bottom: 6%; padding: 1rem 1.15rem; color: var(--navy); background: white; border-radius: 14px; box-shadow: 0 18px 42px rgba(0,0,0,.2); transform: rotate(3deg); }
.credential-card strong, .credential-card span { display: block; }
.credential-card strong { font-family: Georgia, serif; font-size: 1rem; }
.credential-card span { margin-top: .25rem; color: var(--muted); font-size: .62rem; }
.founder-copy h2 { max-width: 720px; margin-bottom: 1.3rem; font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 500; line-height: .97; }
.founder-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.72); line-height: 1.75; }
.founder-copy blockquote { max-width: 680px; margin: 2rem 0 0; padding: 1.25rem 0 1.25rem 1.5rem; color: var(--gold); border-left: 3px solid var(--gold); font-family: Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.65rem); font-style: italic; line-height: 1.35; }

.booking-section { display: grid; grid-template-columns: minmax(0,.78fr) minmax(540px,1.22fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 7vw, 8rem); background: var(--cream); }
.booking-intro { position: sticky; top: 120px; }
.booking-intro h2 { max-width: 610px; margin-bottom: 1.2rem; color: var(--navy); font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; line-height: .98; }
.booking-intro > p:not(.eyebrow) { max-width: 570px; color: var(--muted); line-height: 1.75; }
.booking-reassurance { display: grid; gap: .65rem; margin: 2rem 0; }
.booking-reassurance > div { display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: .65rem; padding: .85rem; background: white; border: 1px solid var(--line); border-radius: 13px; }
.booking-reassurance i { display: grid; place-items: center; width: 28px; height: 28px; color: var(--navy); background: rgba(122,211,185,.34); border-radius: 50%; font-style: normal; font-size: .72rem; font-weight: 900; }
.booking-reassurance strong, .booking-reassurance small { display: block; }
.booking-reassurance strong { color: var(--navy); font-size: .76rem; }
.booking-reassurance small { margin-top: .22rem; color: var(--muted); font-size: .66rem; line-height: 1.35; }
.booking-contact { display: flex; flex-direction: column; gap: .45rem; font-size: .75rem; font-weight: 800; }
.booking-contact a { width: fit-content; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.calendar-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.calendar-card-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; color: white; background: var(--navy); }
.calendar-card-header span, .calendar-card-header strong { display: block; }
.calendar-card-header div > span { margin-bottom: .25rem; color: var(--gold); font-size: .6rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.calendar-card-header strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.calendar-duration { padding: .45rem .6rem; background: rgba(255,255,255,.12); border-radius: 999px; font-size: .65rem; font-weight: 800; }
.calendar-card iframe { width: 100%; min-height: 690px; display: block; border: 0; background: var(--cream); }
.calendar-fallback { margin: 0; padding: .8rem 1.2rem 1rem; color: var(--muted); font-size: .68rem; text-align: center; }
.calendar-fallback a { color: var(--navy); font-weight: 900; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 8rem); background: var(--cream); }
.faq-heading > p:last-child { max-width: 460px; margin-top: 1.4rem; color: var(--muted); line-height: 1.7; }
.faq-list { display: grid; align-content: start; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; color: var(--navy); font-family: Georgia, serif; font-size: clamp(1.15rem, 2vw, 1.5rem); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: Avenir, sans-serif; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 2.5rem 1.35rem 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.25rem, 7vw, 8rem); color: var(--navy); background: var(--cream); border-top: 8px solid var(--gold); }
.brand-logo-full { width: 132px; height: auto; display: block; }
footer p { margin: 0; font-size: .72rem; font-weight: 800; }
.footer-links { display: flex; flex-direction: column; gap: .25rem; font-size: .68rem; text-align: right; }

.booking-dialog { width: min(620px, calc(100% - 2rem)); padding: clamp(1.6rem, 5vw, 3rem); color: var(--navy); background: var(--cream); border: 0; border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.booking-dialog::backdrop { background: rgba(7,15,35,.72); backdrop-filter: blur(6px); }
.booking-dialog h2 { max-width: 500px; margin-bottom: .8rem; font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; line-height: 1; }
.dialog-copy { color: var(--muted); line-height: 1.6; }
.dialog-close { position: absolute; right: 1rem; top: 1rem; width: 36px; height: 36px; color: white; background: var(--navy); border: 0; border-radius: 50%; font-size: 1.4rem; cursor: pointer; }
.selected-plan { display: flex; justify-content: space-between; gap: 1rem; margin: 1.4rem 0; padding: .85rem 1rem; background: rgba(122,211,185,.22); border-radius: 12px; font-size: .7rem; }
.selected-plan span { color: var(--muted); }
.booking-options { display: grid; gap: .55rem; }
.booking-option { display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; gap: .7rem; padding: .9rem; text-decoration: none; background: white; border: 1px solid var(--line); border-radius: 13px; transition: transform .2s, border-color .2s; }
.booking-option:hover { transform: translateX(4px); border-color: var(--coral); }
.booking-option > span { color: var(--coral); font-family: Georgia, serif; font-style: italic; }
.booking-option strong, .booking-option small { display: block; }
.booking-option strong { font-size: .78rem; }
.booking-option small { margin-top: .2rem; color: var(--muted); font-size: .65rem; }
.booking-option i { font-style: normal; }
.booking-option.primary { color: white; background: var(--navy); }
.booking-option.primary small { color: rgba(255,255,255,.6); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 2rem; padding-left: 3rem; padding-right: 3rem; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-section { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
}

@media (max-width: 780px) {
  .site-header { min-height: 72px; padding-inline: 1rem; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.3rem; background: var(--cream); border-bottom: 1px solid var(--line); }
  .primary-nav.is-open { display: flex; }
  .primary-nav .text-button { align-self: flex-start; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 1rem; padding: 4.5rem 1.25rem 5rem; }
  .about-card, .founder-section, .faq-section { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.3rem); }
  .hero-visual { min-height: 440px; }
  .hero-image-frame { height: 420px; }
  .hero-proof-card { left: .5rem; bottom: 1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-explorer { grid-template-columns: 1fr; }
  .service-panel { grid-template-columns: 1fr; }
  .service-art { min-height: 280px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 320px; }
  .package-card.is-recommended { transform: none; }
  .booking-band { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .founder-section { gap: 1rem; }
  .founder-visual { min-height: 350px; }
  .booking-section { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; }
  .footer-links { text-align: left; }
}

@media (max-width: 480px) {
  .brand-name { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { flex-direction: column; }
  .hero-visual { min-height: 360px; }
  .hero-image-frame { height: 350px; border-width: 5px; border-radius: 34px 14px 34px 14px; }
  .hero-proof-card { left: .35rem; right: .35rem; bottom: -.8rem; }
  .service-tab { min-height: 75px; }
  .services-section, .packages-section, .process-section, .founder-section, .booking-section { padding-inline: 1rem; }
  .picker-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .selected-plan { flex-direction: column; }
  .founder-visual::before { width: 280px; height: 280px; }
  .founder-seal { width: 185px; height: 185px; }
  .credential-card { right: 0; }
  .calendar-card-header { align-items: flex-start; }
  .calendar-card iframe { min-height: 720px; }
}

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