/* ════════════════════════════════════════════════════
   Sittysites design tokens
   ════════════════════════════════════════════════════ */
:root {
  --navy:        #4a5d6f;
  --navy-dark:   #3d4e5e;
  --navy-deep:   #2f3b4a;
  --coral:       #d49595;
  --coral-soft:  #e5b5b5;
  --coral-deep:  #b87979;
  --sage:        #a8c0ae;
  --sage-soft:   #c9dbc9;
  --sage-bg:     #e3ece4;
  --cream:       #faf6f1;
  --cream-2:     #f3ede5;
  --paper:       #ffffff;
  --ink:         #2f3b4a;
  --ink-soft:    #5a6878;
  --muted:       #8a95a3;
  --line:        #e7e2d9;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 14px -6px rgba(47, 59, 74, .12);
  --shadow-md: 0 18px 40px -22px rgba(47, 59, 74, .25);
  --shadow-lg: 0 40px 80px -30px rgba(47, 59, 74, .28);

  --font-serif: "DM Serif Display", "Newsreader", Georgia, serif;
  --font-script: "Caveat", "Kalam", cursive;
  --font-sans: "Manrope", "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--navy-deep);
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
.section-title.center { text-align: center; }
.section-sub.center { text-align: center; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 3rem; }
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--sage);
  font-size: 1.18em;
  line-height: 1.15;
  letter-spacing: -0.005em;
  display: inline-block;
  vertical-align: baseline;
}
.script-alt {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.15em;
  line-height: 1.15;
  display: inline-block;
  vertical-align: baseline;
}
.section-title { line-height: 1.18; margin-bottom: 0.6em; }

/* ═════════ Buttons ═════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px -8px rgba(74, 93, 111, .55);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(74, 93, 111, .6); }
.btn-primary:disabled { opacity: .65; cursor: default; transform: none; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(74, 93, 111, .25);
}
.btn-ghost:hover { background: rgba(74, 93, 111, .06); border-color: rgba(74, 93, 111, .45); }
.btn-link {
  background: none;
  color: var(--coral-deep);
  padding: 14px 0;
  font-weight: 600;
}
.btn-link:hover { color: var(--navy); }

/* ═════════ Top bar ═════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-social { display: flex; gap: 8px; }
.ts-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .18s ease, background .18s ease;
}
.ts-icon:hover { background: var(--coral-soft); transform: translateY(-1px); }
.topbar-tagline {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.topbar-tagline .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: 0 0 0 4px rgba(168, 192, 174, .25);
  animation: pulse 2s infinite;
}
.topbar-cta a {
  font-weight: 600;
  color: var(--sage-soft);
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.topbar-cta a:hover { color: #fff; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(168, 192, 174, .25); }
  50% { box-shadow: 0 0 0 7px rgba(168, 192, 174, .12); }
}

/* ═════════ Nav ═════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: .94rem;
  position: relative;
  padding: 6px 0;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.is-active { color: var(--navy-deep); }
.nav-links a.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--coral); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .9rem;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px; height: 32px;
  background: none; border: none;
  align-items: center; justify-content: center;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.nav-mobile { display: none; }

/* ═════════ Hero ═════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #faf6f1 0%, #fbf3ee 60%, #ffffff 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero-orb-1 { width: 420px; height: 420px; background: var(--coral-soft); top: -120px; left: -80px; }
.hero-orb-2 { width: 360px; height: 360px; background: var(--sage-soft); bottom: -80px; right: 8%; opacity: .65; }
.hero-orb-3 { width: 260px; height: 260px; background: #e8dfd2; top: 30%; right: -40px; }

.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(74,93,111,.12);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--sage); border-radius: 50%;
  box-shadow: 0 0 0 0 var(--sage);
  animation: pulse2 2s infinite;
}
@keyframes pulse2 {
  0% { box-shadow: 0 0 0 0 rgba(168,192,174,.6); }
  70% { box-shadow: 0 0 0 10px rgba(168,192,174,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,192,174,0); }
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  color: var(--navy-deep);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero-title .script { font-size: 1em; color: var(--coral); }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0 0 18px;
  font-weight: 500;
}
.hero-body {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 26px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(74,93,111,.12);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy-deep);
  line-height: 1;
}
.hero-stats div:nth-child(1) strong { color: var(--coral-deep); }
.hero-stats div:nth-child(2) strong { color: var(--navy); }
.hero-stats div:nth-child(3) strong { color: var(--coral-deep); }
.hero-stats div:nth-child(4) strong { color: var(--navy); }
.hero-stats div:nth-child(5) strong { color: var(--coral-deep); }
.hero-stats span { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.polaroid {
  position: absolute;
  background: #fff;
  padding: 14px 14px 36px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.polaroid .ph { width: 260px; height: 320px; border-radius: 2px; }
.polaroid-photo { object-fit: cover; object-position: center; display: block; }
.polaroid.p1 { top: 30px; left: 0; transform: rotate(-5deg); z-index: 2; }
.polaroid.p2 { bottom: 30px; right: 10px; transform: rotate(4deg); z-index: 1; }

/* placeholder pattern */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(74,93,111,.04), rgba(74,93,111,.04) 8px, rgba(74,93,111,.08) 8px, rgba(74,93,111,.08) 16px),
    linear-gradient(135deg, var(--cream-2), var(--sage-bg));
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative;
}
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.85);
  padding: 4px 8px;
  margin: 10px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  z-index: 5;
  animation: floaty 6s ease-in-out infinite;
}
.float-booking { top: 16%; right: -10px; min-width: 240px; animation-delay: 0s; }
.float-stat   { bottom: 6%; left: -36px; animation-delay: 1.5s; }
.float-brand  { bottom: 4%; left: 30%; animation-delay: 3s;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--navy-deep);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-row { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #fff;
}
.avatar-sage { background: var(--sage); }
.avatar-cream { background: var(--cream-2); color: var(--navy-deep); }
.fc-text { display: flex; flex-direction: column; line-height: 1.2; }
.fc-text strong { font-size: .85rem; color: var(--navy-deep); }
.fc-text span { font-size: .75rem; color: var(--muted); }
.fc-badge {
  margin-left: auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: #2ea27a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}
.fc-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.fc-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.55rem; color: var(--navy-deep);
  line-height: 1; margin-top: 4px;
}
.fc-trend { font-size: .75rem; color: #2ea27a; font-weight: 600; }
.brand-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: conic-gradient(var(--coral), var(--sage), var(--navy), var(--coral));
}

/* ═════════ Logo marquee ═════════ */
.partners {
  background: #fff;
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-head {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 32px;
}
.partners-head p {
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.partners-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 8px 40px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.pm-item {
  flex-shrink: 0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .78;
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}
.pm-item:hover { opacity: 1; transform: scale(1.05); }
.pm-item img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.pm-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--navy-deep);
  padding: 4px 6px;
}
.pm-word strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pm-word span {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ═════════ Who we are ═════════ */
.who {
  padding: 100px 0;
  background: var(--paper);
}
.who-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.who-img { position: relative; }
.who-frame {
  position: absolute;
  inset: -28px -28px 28px 28px;
  border: 2px solid var(--sage);
  border-radius: 4px;
  z-index: 1;
}
.ph-who {
  position: relative;
  z-index: 2;
  height: 440px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.who-photo {
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.who-badge {
  position: absolute;
  bottom: -22px; left: -18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-deep);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.who-copy { max-width: 520px; }
.who-lead {
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-weight: 500;
  margin: 0 0 16px;
}
.who-body {
  color: var(--ink-soft);
  margin: 0 0 28px;
  text-wrap: pretty;
}

.svc-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.svc-tab {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s ease;
}
.svc-tab:hover { border-color: var(--navy); color: var(--navy); }
.svc-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.svc-panel {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 24px;
  min-height: 156px;
}
.svc-panel p { margin: 0 0 12px; color: var(--ink-soft); }
.svc-panel ul { display: flex; flex-direction: column; gap: 8px; }
.svc-panel li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--navy-deep);
  font-weight: 500;
  font-size: .92rem;
}
.svc-panel li svg {
  margin-top: 3px;
  color: var(--sage);
  flex-shrink: 0;
}
.who-actions { display: flex; align-items: center; gap: 14px; }

/* ═════════ Testimonials ═════════ */
.testi {
  background: linear-gradient(180deg, #d49595 0%, #c98787 100%);
  color: #fff;
  padding: 110px 32px;
  position: relative;
  overflow: hidden;
}
.testi::before, .testi::after {
  content: "";
  position: absolute;
  font-family: var(--font-serif);
  font-size: 280px;
  color: rgba(255,255,255,.08);
  line-height: 1;
}
.testi::before { content: "“"; top: 20px; left: 5%; }
.testi::after { content: "”"; bottom: -90px; right: 5%; }
.testi-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.testi-eyebrow {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 24px;
}
.testi-eyebrow .script-alt { color: var(--sage-soft); }
.testi-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  margin: 0 0 28px;
  font-weight: 400;
  text-wrap: balance;
}
.testi-quote {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  font-size: 1.02rem;
  text-wrap: pretty;
}
.testi-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.testi-byline > div { text-align: left; display: flex; flex-direction: column; line-height: 1.2; }
.testi-byline strong { font-weight: 700; }
.testi-byline span { font-size: .82rem; opacity: .8; }
.testi-dots {
  display: flex; gap: 8px; justify-content: center;
}
.testi-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  transition: all .2s ease;
}
.testi-dots .dot.is-active { background: #fff; width: 22px; border-radius: 4px; }

/* ═════════ Features ═════════ */
.features {
  padding: 110px 0;
  background: var(--paper);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 149, 149, .4);
  box-shadow: var(--shadow-md);
}
.feat-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf0ef 0%, #f9e3e1 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin: 0 0 10px;
}
.feat-card p {
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex-grow: 1;
  font-size: .94rem;
}
.feat-link {
  color: var(--coral-deep);
  font-weight: 600;
  font-size: .88rem;
  transition: color .18s ease;
}
.feat-link:hover { color: var(--navy); }

/* ═════════ How it works ═════════ */
.how {
  padding: 110px 0;
  background: var(--sage-bg);
}
.how-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.how-sub {
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 50ch;
  text-wrap: pretty;
}
.how-steps { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.step-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.step-num-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
}
.step-icon {
  width: 52px; height: 52px;
  background: #fcefee;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin: 0 0 8px;
}
.step-card p { color: var(--ink-soft); margin: 0; font-size: .92rem; }

.how-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ph-how { height: 580px; }
.ph-how-photo { width: 100%; object-fit: cover; object-position: center 30%; display: block; }
.how-overlay {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.ho-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.ho-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ea27a;
  box-shadow: 0 0 0 4px rgba(46,162,122,.2);
}
.how-overlay strong { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy-deep); }
.how-overlay p { margin: 0; color: var(--ink-soft); font-size: .85rem; }

/* ═════════ App preview ═════════ */
.app-preview {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  overflow: hidden;
}
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
}
.ap-copy .eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--coral);
  margin: 0 0 8px;
}
.ap-copy p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.ap-list {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 0 28px;
}
.ap-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--navy-deep);
  font-weight: 500;
  font-size: .96rem;
}
.bullet {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.ap-visual {
  position: relative;
  height: 480px;
}

/* CSS-rendered laptop mockup */
.mock-laptop {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(47,59,74,.25));
}
.ml-bezel {
  background: #1c1f24;
  border-radius: 14px 14px 0 0;
  padding: 8px;
  position: relative;
  display: flex;
  justify-content: center;
}
.ml-camera {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #444;
  margin-bottom: 4px;
}
.ml-screen {
  background: #fafafa;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ml-bar {
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}
.ml-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-serif);
  font-weight: 400;
}
.ml-brand-mark {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--coral), var(--sage));
}
.ml-brand em {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  opacity: .8;
  margin-left: 2px;
}
.ml-bar-dots { margin-left: auto; display: flex; gap: 4px; }
.ml-bar-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.ml-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.ml-h1 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy-deep);
  font-weight: 400;
}
.ml-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e9f0ed;
  color: #2e7a5a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.ml-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2e7a5a;
  box-shadow: 0 0 0 0 #2e7a5a;
  animation: pulse2 1.8s infinite;
}
.ml-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ml-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.ml-label { font-size: 10px; color: var(--muted); font-weight: 600; display: block; }
.ml-num {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-deep);
  line-height: 1;
  display: block;
  margin: 4px 0 2px;
}
.ml-trend { font-size: 10px; color: #2e7a5a; font-weight: 700; }
.ml-trend.up { color: #2e7a5a; }
.ml-chart {
  position: absolute;
  right: 0; bottom: 0; left: 0;
  height: 38px;
  width: 100%;
  opacity: .9;
}
.ml-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ml-tile {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 8px 10px;
}
.ml-tile-ico {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ico-coral { background: var(--coral); }
.ico-sage  { background: var(--sage); }
.ico-navy  { background: var(--navy); }
.ico-cream { background: #c9b69c; }
.ml-tile span { display: block; font-size: 9px; color: var(--muted); font-weight: 600; line-height: 1.1; }
.ml-tile strong { display: block; font-family: var(--font-serif); font-size: 14px; color: var(--navy-deep); line-height: 1; margin-top: 2px; }
.ml-base {
  background: linear-gradient(180deg, #1c1f24 0%, #2a2e34 100%);
  height: 14px;
  border-radius: 0 0 18px 18px;
  position: relative;
}
.ml-base::after {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 5px;
  background: rgba(0,0,0,.5);
  border-radius: 0 0 8px 8px;
}

/* CSS-rendered phone mockup */
.mock-phone {
  position: absolute;
  right: -10px;
  bottom: -40px;
  width: 240px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 60px -10px rgba(47,59,74,.4);
  z-index: 5;
}
.mp-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.mp-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mp-status {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-deep);
  padding: 4px 0 6px;
}
.mp-header {
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
}
.mp-menu { font-size: 14px; line-height: 1; }
.mp-title {
  display: flex; align-items: baseline; gap: 4px;
}
.mp-title strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 12px;
}
.mp-title em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .8;
}
.mp-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 10px;
}
.mp-tabs span {
  background: #f1f2f5;
  border-radius: 6px;
  text-align: center;
  padding: 6px 0;
  font-size: 11px;
  color: var(--navy-deep);
}
.mp-tabs span.is-active { background: var(--sage-soft); }
.mp-pill {
  background: #f1f2f5;
  color: var(--navy-deep);
  text-align: center;
  padding: 6px 0;
  margin: 0 10px;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 12px;
}
.mp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 10px;
}
.mp-primary, .mp-ghost {
  border: none;
  padding: 7px 0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  font-family: inherit;
}
.mp-primary { background: var(--navy); color: #fff; }
.mp-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.mp-month {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--sage);
  font-size: 12px;
  margin-top: 2px;
}
.mp-cal-head, .mp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 10px;
  gap: 1px;
}
.mp-cal-head span {
  text-align: center;
  font-size: 8px;
  color: var(--muted);
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.mp-day {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 4px 0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-day.is-muted { color: #ccc; }
.mp-day.is-today {
  background: #fff6c8;
  border-radius: 3px;
}

.ap-tag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
  z-index: 6;
  white-space: nowrap;
}
.ap-tag-1 { top: -16px; left: 24px; }
.ap-tag-2 { bottom: -16px; right: 280px; }

/* final CTA phone */
.fc-phone-wrap {
  transform: rotate(-4deg);
  filter: drop-shadow(0 20px 40px rgba(47,59,74,.25));
}
.fc-phone-wrap .mock-phone {
  position: relative;
  right: auto; bottom: auto;
  margin: 0 auto;
  box-shadow: none;
}

/* ═════════ FAQ ═════════ */
.faq { padding: 110px 0; background: var(--paper); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-side { position: sticky; top: 120px; }
.faq-side p { color: var(--ink-soft); }
.faq-side a { color: var(--coral-deep); font-weight: 600; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 22px 0;
  display: block;
  width: 100%;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy-deep);
  font-weight: 400;
}
.faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: transform .25s ease, background .25s ease;
}
.faq-item.is-open .faq-plus { background: var(--coral); color: #fff; transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  color: var(--ink-soft);
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  padding-top: 12px;
}
.faq-a > * { overflow: hidden; }
.faq-a { overflow: hidden; }
.faq-a::before { content: ""; }

/* simpler faq-a animation */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-top: 0;
  display: block;
  font-size: .95rem;
  line-height: 1.65;
}
.faq-item.is-open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ═════════ Final CTA ═════════ */
.finalcta {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3ede5 100%);
  position: relative;
  overflow: hidden;
}
.finalcta-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.fc-copy p { color: var(--ink-soft); margin: 0 0 28px; text-wrap: pretty; max-width: 56ch; }
.fc-form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin-bottom: 12px;
}
.fc-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 18px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
}
.fc-note { font-size: .82rem; color: var(--muted); margin: 0; }
.fc-visual {
  position: relative;
  display: flex; justify-content: center;
}

/* ═════════ Footer ═════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 70px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.foot-col h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 16px;
}
.foot-col a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  padding: 5px 0;
  transition: color .18s ease;
}
.foot-col a:hover { color: var(--coral-soft); }
.foot-logo {
  height: 56px; width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 16px;
}
.foot-brand p { font-size: .9rem; margin: 0 0 18px; color: rgba(255,255,255,.65); }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  color: #fff;
}
.foot-social a:hover { background: var(--coral); color: #fff; }
.foot-note { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0 0 14px; }
.foot-form {
  display: flex; gap: 6px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  padding: 4px;
}
.foot-form input {
  flex: 1;
  border: none; background: transparent;
  color: #fff;
  padding: 8px 14px;
  font-family: inherit;
  font-size: .88rem;
  outline: none;
}
.foot-form input::placeholder { color: rgba(255,255,255,.45); }
.foot-form button {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  width: 36px; height: 36px;
  font-size: 1.1rem;
}
.foot-form button:hover { background: var(--coral-deep); }

.footer-bottom {
  display: flex; justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--coral-soft); }

/* ═════════ Reveal animations ═════════ */
.feat-card, .step-card { opacity: 0; transform: translateY(20px); animation: revealUp .6s ease forwards; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ═════════ Responsive ═════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    padding: 16px 32px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .nav-mobile a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile-cta { color: var(--coral) !important; }
  .hero-inner, .who-inner, .how-inner, .ap-grid, .finalcta-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 460px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}
@media (max-width: 720px) {
  .topbar-cta { display: none; }
  .topbar-tagline { font-size: 12px; }
  .hero { padding: 40px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 1.3rem; }
  .polaroid .ph { width: 200px; height: 240px; }
  .float-booking { right: 0; min-width: 200px; }
  .feat-grid { grid-template-columns: 1fr; }
  .testi { padding: 80px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .ap-phone { width: 170px; right: 0; bottom: -10px; }
  .ap-tag-2 { bottom: 10px; right: 180px; }
  .fc-form { flex-direction: column; border-radius: var(--r-md); padding: 14px; }
  .fc-form .btn { width: 100%; justify-content: center; }
}
