:root {
  --bg: #f6f0e8;
  --bg-soft: #efe6db;
  --surface: #faf7f2;
  --surface-strong: #f2ebe3;
  --panel: rgba(255, 255, 255, 0.8);
  --border: rgba(90, 100, 112, 0.12);
  --border-strong: rgba(90, 100, 112, 0.22);
  --text: #2e2b28;
  --muted: #6b6762;
  --accent: #c8b8a8;
  --accent-soft: #e8ddd3;
  --accent-sage: #7aadad;
  --accent-clay: #c8b8a8;
  --ink: #2e2b28;
  --shadow: 0 18px 50px rgba(90, 100, 112, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f6f0e8 0%, #eee3d8 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(62% 52% at 50% 14%, rgba(67, 58, 51, 0.16), transparent 52%),
    radial-gradient(24% 22% at 22% 18%, rgba(200, 184, 168, 0.18), transparent 74%),
    radial-gradient(24% 22% at 78% 20%, rgba(122, 173, 173, 0.18), transparent 74%),
    radial-gradient(40% 28% at 50% 82%, rgba(255,255,255,0.82), rgba(255,255,255,0.08) 68%, transparent 74%),
    radial-gradient(78% 64% at 50% 26%, rgba(255,255,255,0.5), transparent 62%);
}

body::after {
  background:
    radial-gradient(52% 22% at 50% 100%, rgba(88, 76, 66, 0.1), transparent 70%),
    radial-gradient(72% 34% at 50% 112%, rgba(120, 104, 88, 0.08), transparent 74%),
    radial-gradient(18% 18% at 16% 18%, rgba(255,255,255,0.34), transparent 80%),
    radial-gradient(18% 18% at 84% 20%, rgba(255,255,255,0.3), transparent 80%),
    radial-gradient(82% 56% at 50% 26%, rgba(255,255,255,0.08), transparent 72%);
}

a { color: inherit; text-decoration: none; }

button, a, .surface-card, .info-card, .step-card, .comparison-card, .faq-item, .onboarding-panel, .proof-strip div {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

body::selection {
  background: rgba(200, 184, 168, 0.28);
}

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 96px;
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  pointer-events: none;
}

.page-shell::before {
  width: 300px;
  height: 300px;
  top: 80px;
  left: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 184, 168, 0.2), transparent 70%);
  filter: blur(18px);
}

.page-shell::after {
  width: 320px;
  height: 320px;
  top: 420px;
  right: -140px;
  left: auto;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(255,255,255,0.04) 58%, transparent 72%);
  filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 2px 20px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  position: relative;
}

.brand-logo {
  width: 154px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  position: relative;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 54%, rgba(122, 173, 173, 0.12), transparent 50%),
    radial-gradient(circle at 62% 40%, rgba(200, 184, 168, 0.12), transparent 46%);
  pointer-events: none;
  opacity: 0.85;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(90, 100, 112, 0.04);
  border-radius: 999px;
  padding: 5px;
}

nav a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

nav a:not(.nav-cta):hover {
  background: rgba(122, 173, 173, 0.05);
}

nav a:hover,
.secondary:hover {
  color: var(--ink);
}

.nav-cta, .primary, .secondary {
  border-radius: 999px;
  padding: 14px 20px;
  transition: 180ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta, .primary {
  background: linear-gradient(135deg, #5a6470, #7aadad);
  color: #f7f2ea;
  font-weight: 700;
}

.nav-cta {
  box-shadow: 0 10px 24px rgba(90, 100, 112, 0.16);
}

.secondary {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255,255,255,0.45);
}

.primary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(90, 100, 112, 0.18);
}

.secondary:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(90, 100, 112, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
  padding: 32px 0 44px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -34px -28px -22px -28px;
  border-radius: 56px;
  background:
    radial-gradient(92% 130% at 50% 2%, rgba(58, 50, 43, 0.16), transparent 48%),
    radial-gradient(34% 30% at 24% 28%, rgba(200, 184, 168, 0.14), transparent 70%),
    radial-gradient(34% 30% at 76% 26%, rgba(122, 173, 173, 0.14), transparent 70%),
    radial-gradient(88% 76% at 50% 100%, rgba(255,255,255,0.82), rgba(255,255,255,0.18) 62%, transparent 76%),
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
  border: 1px solid rgba(33, 34, 38, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 26px 70px rgba(90, 100, 112, 0.08);
  z-index: 0;
}

.hero-grid {
  align-items: center;
}

.hero-copy,
.hero-panel,
.proof-strip,
.content-section,
.comparison-grid,
.cta-section {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-copy .hero-points,
.hero-copy .comfort-note {
  position: relative;
  z-index: 1;
}


.eyebrow, .section-label, .panel-label, .step-number {
  color: #7a6c61;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(200, 184, 168, 0.14);
  box-shadow: none;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  margin: 14px 0 18px;
  letter-spacing: -0.045em;
  max-width: 11ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
  margin: 12px 0 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 13ch;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.info-card p,
.step-card p,
.comparison-card p,
.editorial-copy-card p,
.onboarding-panel p,
.faq-item p {
  font-size: 16px;
  line-height: 1.6;
}

.hero-text, p, li, .section-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-text,
.section-intro,
.editorial-copy-card p,
.comfort-note p {
  max-width: 60ch;
}

.action-note {
  margin: 2px 0 0;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.6;
  color: #5b676f;
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.hero-signal-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(122, 173, 173, 0.08);
  box-shadow: none;
  color: #53656c;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-signal-pill:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(122, 173, 173, 0.14);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 26px;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.hero-points li,
.comparison-card li,
.route-card li,
.onboarding-panel li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.route-card ul,
.comparison-card ul,
.onboarding-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.route-card li {
  padding-left: 22px;
  line-height: 1.45;
}

.hero-points li {
  padding: 14px 16px 14px 32px;
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(33, 34, 38, 0.08);
  box-shadow: 0 10px 22px rgba(33, 34, 38, 0.04);
}

.hero-points li:nth-child(1) {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(227, 212, 188, 0.34));
}

.hero-points li:nth-child(2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(122, 173, 173, 0.22));
}

.hero-points li:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(200, 184, 168, 0.24));
}

.hero-points li:nth-child(4) {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(194, 187, 214, 0.22));
}

.hero-points li::before,
.comparison-card li::before,
.route-card li::before,
.onboarding-panel li::before {
  content: "•";
  position: absolute;
  left: 14px;
  top: 13px;
  color: #9e8865;
}

.route-card li::before,
.comparison-card li::before,
.onboarding-panel li::before {
  top: 0;
  left: 0;
}

.hero-panel,
.surface-card,
.info-card,
.step-card,
.faq-item,
.comparison-card,
.onboarding-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-card,
.step-card,
.comparison-card,
.faq-item,
.onboarding-panel {
  border-top: 3px solid rgba(200, 184, 168, 0.34);
}

.cards-section .info-card:nth-child(2),
.steps-grid .step-card:nth-child(2),
.comparison-grid .comparison-card:nth-child(2),
.summary-grid div:nth-child(2) {
  border-top-color: rgba(122, 173, 173, 0.42);
}

.cards-section .info-card:nth-child(3),
.steps-grid .step-card:nth-child(3),
.summary-grid div:nth-child(3) {
  border-top-color: rgba(200, 184, 168, 0.46);
}

.hero-panel {
  padding: 24px;
}

.proof-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(251,248,242,0.7));
  overflow: hidden;
  border: 1px solid rgba(122, 173, 173, 0.12);
  position: relative;
}

.hero-panel-orbit {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  top: -38px;
  right: -34px;
  background:
    radial-gradient(circle at 42% 58%, rgba(122, 173, 173, 0.26), rgba(122, 173, 173, 0.08) 46%, transparent 66%),
    radial-gradient(circle at 58% 42%, rgba(200, 184, 168, 0.24), rgba(200, 184, 168, 0.06) 42%, transparent 64%);
  filter: blur(6px);
  pointer-events: none;
}

.proof-panel::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  top: 22px;
  right: 34px;
  background:
    radial-gradient(circle at 40% 56%, rgba(122, 173, 173, 0.16), rgba(122, 173, 173, 0.04) 48%, transparent 66%),
    radial-gradient(circle at 60% 40%, rgba(200, 184, 168, 0.18), rgba(200, 184, 168, 0.04) 44%, transparent 66%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-stack {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.hero-proof-frame {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.proof-panel:hover .hero-panel-orbit {
  transform: scale(1.04);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
}

.surface-card,
.info-card,
.step-card,
.faq-item,
.comparison-card,
.onboarding-panel {
  padding: 24px;
  box-shadow: 0 16px 40px rgba(90, 100, 112, 0.06);
}

.surface-card:hover,
.info-card:hover,
.step-card:hover,
.comparison-card:hover,
.faq-item:hover,
.onboarding-panel:hover,
.proof-strip div:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(90, 100, 112, 0.10);
  border-color: rgba(122, 173, 173, 0.22);
}

.surface-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6e8f93;
  margin-bottom: 12px;
}

.surface-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
  background: linear-gradient(135deg, #7aadad, #c8b8a8);
}

.chat-card {
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 16px;
}

.chat-card + .chat-card {
  margin-top: 12px;
}

.chat-card.user {
  background: rgba(17, 18, 20, 0.05);
  color: var(--text);
}

.chat-card.bot {
  background: linear-gradient(135deg, rgba(200, 184, 168, 0.18), rgba(141, 159, 146, 0.12));
  color: var(--ink);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.summary-grid div {
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 14px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-grid div:nth-child(1) {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(200, 184, 168, 0.3));
}

.summary-grid div:nth-child(2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(122, 173, 173, 0.24));
}

.summary-grid div:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(200, 184, 168, 0.18));
}

.summary-grid div:nth-child(4) {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(194, 187, 214, 0.18));
}

.summary-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--ink);
}

.summary-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 36px;
}

.proof-strip div {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
  border: 1px solid var(--border);
  border-radius: 22px;
  min-height: 116px;
  box-shadow: 0 12px 30px rgba(90, 100, 112, 0.04);
}

.proof-strip div:nth-child(1) {
  border-top: 3px solid rgba(200, 184, 168, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(227, 212, 188, 0.2));
}

.proof-strip div:nth-child(2) {
  border-top: 3px solid rgba(141, 159, 146, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(122, 173, 173, 0.16));
}

.proof-strip div:nth-child(3) {
  border-top: 3px solid rgba(201, 150, 127, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(200, 184, 168, 0.18));
}

.proof-strip div:nth-child(4) {
  border-top: 3px solid rgba(160, 145, 186, 0.58);
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(194, 187, 214, 0.16));
}


.proof-strip strong {
  display: block;
  font-size: 16px;
}

.proof-strip strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 8px;
  background: linear-gradient(135deg, var(--accent-sage), var(--accent));
  vertical-align: middle;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.credibility-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
  padding: 28px 0;
}

.credibility-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credibility-points div {
  padding: 20px 0 0;
  border-top: 1px solid rgba(58, 50, 43, 0.10);
}

.credibility-points strong,
.editorial-list strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 8px;
}

.credibility-points span {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.decision-surface {
  align-items: stretch;
}

.editorial-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.editorial-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.editorial-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7aa8a9;
}

.booking-trust-band {
  margin-top: 10px;
}

.booking-faq {
  margin-top: 10px;
}

.authority-strip {
  display: grid;
  gap: 18px;
  padding: 10px 0 4px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.authority-grid article {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(58, 50, 43, 0.06);
  box-shadow: 0 14px 34px rgba(90, 100, 112, 0.04);
}

.authority-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.content-section {
  padding: 58px 0;
}

.service-clarity-section .cards-section {
  margin-top: 24px;
}

.service-clarity-section .info-card {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56));
  min-height: 250px;
}

.service-clarity-section .info-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122, 173, 173, 0.24), rgba(200, 184, 168, 0.24));
  border: 1px solid rgba(122, 173, 173, 0.14);
}

.service-clarity-section .info-card:nth-child(1)::after,
.service-clarity-section .info-card:nth-child(2)::after,
.service-clarity-section .info-card:nth-child(3)::after {
  position: absolute;
  top: 38px;
  left: 39px;
  font-size: 14px;
  font-weight: 700;
  color: #4f5c66;
}

.service-clarity-section .info-card:nth-child(1)::after { content: "01"; }
.service-clarity-section .info-card:nth-child(2)::after { content: "02"; }
.service-clarity-section .info-card:nth-child(3)::after { content: "03"; }

.comparison-section .comparison-grid {
  margin-top: 24px;
}

.comparison-section {
  padding-top: 22px;
}

.comparison-section h2,
.service-clarity-section h2,
.onboarding-section h2 {
  max-width: 12ch;
}

.comparison-card {
  min-height: 100%;
}

.comparison-card ul {
  margin-top: 14px;
}

.faq-section {
  max-width: 980px;
}

main > section {
  position: relative;
}

main > section + section {
  margin-top: 18px;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,255,255,0.14));
  border: 1px solid rgba(90, 100, 112, 0.08);
  box-shadow: 0 18px 44px rgba(90, 100, 112, 0.05);
}

.editorial-image-card,
.editorial-copy-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(33, 34, 38, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.34));
  box-shadow: 0 22px 60px rgba(90, 100, 112, 0.08);
}

.editorial-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  transition: transform 600ms ease;
}

.editorial-image-card:hover img {
  transform: scale(1.02);
}

.editorial-copy-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-world-section {
  margin-top: 8px;
}

.brand-world-section .editorial-image-card {
  position: relative;
}

.brand-world-section .editorial-image-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 58%, rgba(122, 173, 173, 0.20), transparent 54%),
    radial-gradient(circle at 60% 40%, rgba(200, 184, 168, 0.18), transparent 50%);
  filter: blur(2px);
  pointer-events: none;
}

.brand-world-section .editorial-copy-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,242,234,0.70));
}

.proof-gallery .editorial-copy-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(242, 235, 225, 0.76));
  border-color: rgba(122, 173, 173, 0.16);
}

.editorial-copy-card h3 {
  font-size: 32px;
  margin: 10px 0 12px;
}

.editorial-copy-card p {
  margin: 0;
}

.split-emphasis {
  border-top: 1px solid rgba(33, 34, 38, 0.08);
  border-bottom: 1px solid rgba(33, 34, 38, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.comparison-grid,
.cards-section,
.steps-grid {
  display: grid;
  gap: 24px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-grid.comparison-highlight {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
  border: 1px solid rgba(90, 100, 112, 0.08);
  box-shadow: 0 18px 44px rgba(90, 100, 112, 0.05);
}

.cards-section,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-process-grid {
  margin-top: 8px;
}

.decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.decision-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.decision-card .primary,
.decision-card .secondary {
  align-self: flex-start;
}

.booking-choice-section {
  align-items: stretch;
}

.muted-card {
  background: rgba(255,255,255,0.34);
}

.comparison-highlight {
  margin-top: 10px;
}

.trust-cards .info-card,
.framed-section .onboarding-panel {
  background: rgba(255,255,255,0.7);
}

.section-intro {
  max-width: 760px;
  margin-top: 14px;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.05));
  padding: 56px 32px;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(90, 100, 112, 0.05);
}

.split-emphasis {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
  padding: 28px 0;
  border-radius: 28px;
}

.onboarding-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.cta-section {
  text-align: center;
  padding: 64px 24px;
  margin: 18px 0 24px;
  background: linear-gradient(135deg, #48606b, #7aadad);
  color: #f7f2ea;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(72, 96, 107, 0.24);
}

.cta-section p {
  max-width: 720px;
  margin: 12px auto 0;
  color: rgba(247, 242, 234, 0.78);
}

.center-actions {
  justify-content: center;
}

.cta-section .secondary {
  border-color: rgba(247, 242, 234, 0.2);
  color: #f7f2ea;
  background: transparent;
}

.cta-section .section-label,
.cta-section h2 {
  color: #f7f2ea;
  max-width: none;
}

.faq-section {
  display: grid;
  gap: 16px;
}

.compact-hero {
  padding-top: 18px;
}

.single-column-points {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .hero-proof-row,
  .credibility-band,
  .split-section,
  .comparison-grid,
  .proof-strip,
  .editorial-gallery,
  .cards-section,
  .decision-grid,
  .credibility-points,
  .authority-grid,
  .steps-grid,
  .flow-grid,
  .onboarding-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: start;
  }

  .brand-lockup {
    flex-direction: row;
    align-items: center;
  }

  .brand-logo-wrap {
    min-width: 0;
  }

  .brand-logo {
    width: 148px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .primary,
  .hero-actions .secondary,
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-signal-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-points,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    padding-right: 18px;
  }

  .credibility-band {
    gap: 18px;
  }

  h1, h2 {
    max-width: none;
  }
}

/* Page patterns */

body.home-page .hero::before {
  background:
    radial-gradient(92% 130% at 50% 2%, rgba(58, 50, 43, 0.16), transparent 48%),
    radial-gradient(34% 30% at 24% 28%, rgba(200, 184, 168, 0.14), transparent 70%),
    radial-gradient(34% 30% at 76% 26%, rgba(122, 173, 173, 0.14), transparent 70%),
    radial-gradient(88% 76% at 50% 100%, rgba(255,255,255,0.82), rgba(255,255,255,0.18) 62%, transparent 76%),
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
}

body.demo-page {
  background: linear-gradient(180deg, #f4efe8 0%, #e9f0ef 100%);
}

body.demo-page::before {
  background:
    radial-gradient(34% 28% at 16% 18%, rgba(122, 173, 173, 0.14), transparent 72%),
    radial-gradient(26% 22% at 84% 18%, rgba(200, 184, 168, 0.14), transparent 70%),
    radial-gradient(44% 26% at 50% 86%, rgba(255,255,255,0.60), transparent 70%);
}

body.demo-page .hero::before,
body.demo-page .alt-section,
body.demo-page .proof-gallery .editorial-copy-card {
  background:
    radial-gradient(34% 28% at 78% 24%, rgba(122, 173, 173, 0.16), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.14));
}

body.demo-page .surface-title,
body.demo-page .section-label,
body.demo-page .panel-label {
  color: #5f8f92;
}

body.landing-page {
  background: linear-gradient(180deg, #f6f0e8 0%, #eadfd4 100%);
}

body.landing-page::after {
  background:
    radial-gradient(24% 20% at 18% 24%, rgba(200, 184, 168, 0.14), transparent 76%),
    radial-gradient(22% 18% at 82% 30%, rgba(122, 173, 173, 0.12), transparent 76%),
    radial-gradient(62% 30% at 50% 98%, rgba(255,255,255,0.42), transparent 76%);
}

body.landing-page .hero::before {
  background:
    radial-gradient(96% 136% at 50% 0%, rgba(58, 50, 43, 0.18), transparent 48%),
    radial-gradient(30% 24% at 22% 26%, rgba(200, 184, 168, 0.18), transparent 72%),
    radial-gradient(24% 22% at 78% 22%, rgba(122, 173, 173, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.10));
}

body.landing-page .hero-copy h1 {
  max-width: 10ch;
}

body.book-page {
  background: linear-gradient(180deg, #f7f2ea 0%, #efe7db 100%);
}

body.book-page::before {
  background:
    radial-gradient(24% 20% at 20% 20%, rgba(122, 173, 173, 0.10), transparent 74%),
    radial-gradient(18% 16% at 80% 22%, rgba(200, 184, 168, 0.10), transparent 72%),
    radial-gradient(60% 26% at 50% 92%, rgba(255,255,255,0.48), transparent 74%);
}

body.book-page .hero::before,
body.book-page .cta-section {
  background:
    radial-gradient(28% 26% at 72% 24%, rgba(122, 173, 173, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
}

body.book-page .cta-section {
  color: var(--text);
  box-shadow: 0 20px 52px rgba(90, 100, 112, 0.08);
}

body.book-page .cta-section p,
body.book-page .cta-section .section-label,
body.book-page .cta-section h2,
body.book-page .cta-section .secondary {
  color: var(--text);
}

body.book-page .cta-section .secondary {
  border-color: rgba(90, 100, 112, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 420ms ease, background 420ms ease;
}

body.is-ready {
  opacity: 1;
}

main {
  transition: opacity 280ms ease, transform 280ms ease;
}

body.is-transitioning main {
  opacity: 0.4;
  transform: translateY(18px);
}

.page-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  background:
    radial-gradient(54% 44% at 50% 20%, rgba(122, 173, 173, 0.20), transparent 60%),
    radial-gradient(42% 32% at 60% 82%, rgba(200, 184, 168, 0.20), transparent 62%),
    linear-gradient(180deg, rgba(244, 238, 231, 0.96), rgba(235, 226, 216, 0.98));
}

body.is-transitioning .page-transition-layer {
  transform: scaleY(1);
  transform-origin: top;
}

.page-shell {
  padding-top: 122px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1220px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 26px;
  transform: translateX(-50%) translateY(0);
  background: rgba(250, 245, 239, 0.72);
  border: 1px solid rgba(58, 50, 43, 0.08);
  backdrop-filter: blur(18px) saturate(1.05);
  box-shadow: 0 18px 40px rgba(90, 100, 112, 0.10);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, box-shadow 220ms ease, background 220ms ease;
}

body.header-scrolled .site-header {
  background: rgba(252, 248, 243, 0.88);
  box-shadow: 0 22px 48px rgba(90, 100, 112, 0.14);
}

body.header-hidden .site-header {
  opacity: 0;
  transform: translateX(-50%) translateY(-140%);
}

.brand-lockup {
  gap: 0;
}

.brand-logo {
  width: 148px;
}

.brand-logo-wrap {
  min-width: 148px;
  padding: 2px 0;
}

.brand-logo-wrap::before {
  inset: -8px -12px;
  opacity: 0.64;
}

nav {
  gap: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

nav a {
  padding: 8px 0;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0.01em;
  position: relative;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 173, 173, 0), rgba(122, 173, 173, 0.6), rgba(122, 173, 173, 0));
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:not(.nav-cta):hover {
  background: transparent;
}

nav a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta,
.primary,
.secondary {
  padding: 13px 20px;
}

.nav-cta,
.primary {
  background: linear-gradient(135deg, #4d5963, #7ba8a9);
  box-shadow: 0 12px 26px rgba(77, 89, 99, 0.14);
}

.secondary {
  border: none;
  background: transparent;
  color: #46525b;
  padding-left: 4px;
  padding-right: 4px;
}

.secondary::after {
  content: "↗";
  margin-left: 8px;
  font-size: 13px;
  opacity: 0.7;
}

.secondary:hover {
  background: transparent;
  box-shadow: none;
}

.hero-signal-pill {
  padding: 0 18px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #53656c;
  position: relative;
}

.hero-signal-pill::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(135deg, rgba(122, 173, 173, 0.95), rgba(200, 184, 168, 0.95));
}

.hero-points {
  gap: 10px 22px;
}

.hero-points li {
  padding: 0 0 0 18px;
  border: none;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.hero-points li::before {
  left: 0;
  top: 10px;
}

.hero::before {
  border-radius: 64px;
}

.hero-panel,
.surface-card,
.info-card,
.step-card,
.faq-item,
.comparison-card,
.onboarding-panel {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(58, 50, 43, 0.07);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(90, 100, 112, 0.05);
}

.info-card,
.step-card,
.comparison-card,
.faq-item,
.onboarding-panel {
  border-top: none;
}

.surface-card,
.info-card,
.step-card,
.faq-item,
.comparison-card,
.onboarding-panel {
  padding: 26px;
}

.surface-card:hover,
.info-card:hover,
.step-card:hover,
.comparison-card:hover,
.faq-item:hover,
.onboarding-panel:hover,
.proof-strip div:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(90, 100, 112, 0.08);
  border-color: rgba(122, 173, 173, 0.16);
}

.summary-grid div,
.proof-strip div {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(90, 100, 112, 0.04);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .page-shell {
    padding-top: 150px;
  }

  .site-header {
    top: 12px;
    width: min(1220px, calc(100% - 20px));
    padding: 14px;
    border-radius: 22px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  nav a {
    padding: 6px 0;
  }

  .nav-cta {
    padding: 11px 16px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 164px;
  }

  .site-header {
    padding: 12px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 132px;
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .hero,
  .content-section,
  .editorial-gallery,
  .cta-section,
  .comparison-grid,
  .split-section,
  .alt-section {
    gap: 18px;
  }

  .hero::before,
  .editorial-image-card,
  .editorial-copy-card,
  .hero-panel,
  .surface-card,
  .info-card,
  .step-card,
  .comparison-card,
  .onboarding-panel,
  .authority-grid article {
    border-radius: 20px;
  }

  .surface-card,
  .info-card,
  .step-card,
  .comparison-card,
  .onboarding-panel,
  .authority-grid article {
    padding: 20px;
  }

  .editorial-copy-card {
    padding: 24px;
  }

  .secondary {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-top: 172px;
  }

  .site-header {
    width: calc(100% - 16px);
    top: 8px;
  }

  .hero-signal-pill {
    width: 100%;
    padding-right: 0;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-row {
    gap: 14px;
  }

  .action-note,
  .credibility-points span,
  .authority-grid p {
    font-size: 14px;
  }
}

@keyframes orbitFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-6px, 8px, 0) scale(1.04); }
}

@keyframes softPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.82; transform: scale(1.06); }
}

.hero-panel-orbit,
.brand-world-section .editorial-image-card::after {
  animation: orbitFloat 8s ease-in-out infinite;
}

.brand-logo-wrap::before {
  animation: softPulse 7s ease-in-out infinite;
}

.editorial-gallery {
  gap: 26px;
  padding: 8px 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.editorial-image-card,
.editorial-copy-card {
  border-radius: 32px;
  background: rgba(255,255,255,0.38);
  border-color: rgba(58, 50, 43, 0.06);
  box-shadow: 0 18px 50px rgba(90, 100, 112, 0.06);
}

.editorial-copy-card {
  padding: 40px;
}

.comparison-grid.comparison-highlight,
.alt-section,
.split-emphasis {
  border-radius: 30px;
  border-color: rgba(58, 50, 43, 0.06);
  box-shadow: 0 16px 42px rgba(90, 100, 112, 0.05);
}

.comparison-grid.comparison-highlight {
  padding: 10px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.comparison-card {
  min-height: 100%;
}

.faq-section {
  gap: 0;
}

.faq-item {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(58, 50, 43, 0.08);
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(58, 50, 43, 0.08);
}

.faq-item:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(122, 173, 173, 0.22);
}

.cta-section {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(54% 58% at 22% 18%, rgba(255,255,255,0.14), transparent 62%),
    radial-gradient(42% 42% at 78% 78%, rgba(200, 184, 168, 0.14), transparent 60%),
    linear-gradient(135deg, #445862 0%, #698e92 56%, #86a9a7 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 28%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.cta-section .hero-actions {
  position: relative;
  z-index: 1;
}

.cta-section .secondary {
  padding-left: 0;
  padding-right: 0;
}

.cta-section .secondary::after {
  color: rgba(247, 242, 234, 0.8);
}

@media (max-width: 960px) {
  .editorial-copy-card {
    padding: 28px;
  }
}
