/* Lushera — marketing/preview site. Bright, airy, premium. Self-contained, no external assets. */

:root {
  /* Brand palette — sampled from the Lushera logo */
  --coral: #ee6e63;
  --coral-soft: #f28f86;
  --coral-deep: #d9564b;      /* hover */
  --coral-text: #c24a3f;      /* coral for text on white (AA contrast) */
  --blush: #fdeeec;
  --blush-deep: #fbe0dc;
  --teal: #0e7d8f;
  --teal-deep: #0d4a58;
  --teal-dark: #0a3a45;
  --mint: #e7f4f2;
  --mint-deep: #d6ebe8;

  --white: #ffffff;
  --off: #fbfcfc;
  --ink: #223039;
  --ink-soft: #566671;
  --line: #eaeeed;
  --line-soft: #f1f4f3;

  --shadow-sm: 0 1px 2px rgba(34, 48, 57, 0.05), 0 4px 14px rgba(14, 125, 143, 0.05);
  --shadow: 0 2px 6px rgba(34, 48, 57, 0.05), 0 14px 34px rgba(14, 125, 143, 0.08);
  --shadow-lg: 0 20px 56px rgba(13, 74, 88, 0.16);
  --shadow-coral: 0 12px 26px rgba(238, 110, 99, 0.34);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 20px;
  --radius-sm: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.28rem; }

p { margin: 0 0 1em; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral-text);
  margin: 0 0 0.9em;
}
.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 46ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Section rhythm & pastel washes ---------- */
.section { padding: 92px 0; position: relative; }
.section-tight { padding: 40px 0; }
.wash-blush { background: linear-gradient(180deg, var(--blush) 0%, #fff 100%); }
.wash-mint  { background: linear-gradient(180deg, var(--mint) 0%, #fff 100%); }
.wash-soft  {
  background:
    radial-gradient(1200px 380px at 12% -8%, var(--blush) 0%, rgba(253,238,236,0) 60%),
    radial-gradient(1000px 420px at 100% 110%, var(--mint) 0%, rgba(231,244,242,0) 60%),
    var(--off);
}

/* ---------- Focus & tap behaviour ---------- */
/* No grey/blue tap rectangle on touch; keyboard users get a rounded teal ring
   that follows each element's border-radius instead of the default box. */
a, button { -webkit-tap-highlight-color: transparent; }
a:focus, button:focus { outline: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(14, 125, 143, 0.45);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover { box-shadow: 0 16px 32px rgba(238,110,99,0.42); }
.btn-outline {
  background: #fff;
  color: var(--teal-deep);
  border-color: var(--mint-deep);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-light:hover { background: rgba(255,255,255,0.24); border-color: #fff; }
.btn-solid-white { background: #fff; color: var(--teal-deep); }
.btn-solid-white:hover { color: var(--coral-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: inline-flex; }
.brand img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav a {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
}
.nav a:hover { color: var(--teal); text-decoration: none; }
.nav .btn { padding: 10px 22px; font-size: 0.94rem; }
.nav a.btn-primary { color: #fff; }
.nav a.btn-primary:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 0 48px;
  background:
    radial-gradient(900px 460px at 20% 0%, var(--blush) 0%, rgba(253,238,236,0) 62%),
    radial-gradient(820px 460px at 84% 26%, var(--mint) 0%, rgba(231,244,242,0) 60%),
    #fff;
}
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: 860px; }
.hero-logo {
  width: min(780px, 92%);
  height: auto;
  margin: 0 auto 6px;
  filter: drop-shadow(0 18px 40px rgba(13, 74, 88, 0.12));
}
.hero h1 { margin: 0.1em 0 0.3em; }
.hero-sub {
  font-size: 1.24rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto;
}
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.hero-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Audience strip ---------- */
.audience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.audience .pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 11px 24px;
  font-weight: 600;
  color: var(--teal-deep);
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.audience .pill::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(120deg, var(--coral) 0%, var(--teal) 100%);
}

/* ---------- Editions ---------- */
.editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 44px;
}
.edition-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.edition-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--mint-deep);
}
.edition-card.featured::before { background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%); }
.edition-card .tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-text);
  margin-bottom: 10px;
}
.edition-card h3 { font-size: 1.7rem; margin-bottom: 0.1em; color: var(--teal-deep); }
.edition-card .who { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 20px; }
.edition-card ul { list-style: none; padding: 0; margin: 0; }
.edition-card li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-top: 1px solid var(--line-soft);
  font-size: 0.98rem;
}
.edition-card li:first-child { border-top: none; }
.edition-card li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.edition-card.featured li::before { background: var(--coral); }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 26px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .fnum {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--coral) 0%, var(--teal) 100%);
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-card h3 { margin-bottom: 0.4em; color: var(--teal-deep); }
.feature-card p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

.feature-card.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.feature-card.has-photo .fphoto { aspect-ratio: 16 / 10; overflow: hidden; }
.feature-card.has-photo .fphoto img { width: 100%; height: 100%; object-fit: cover; }
.feature-card.has-photo .fphoto img[src*="colour-shelves"] { object-position: center 15%; }
.feature-card.has-photo .fbody { padding: 26px 28px 30px; }

/* ---------- Business styles ---------- */
.styles-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: start;
}
.pay-models { display: grid; gap: 14px; margin-top: 12px; }
.pay-model {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: var(--shadow-sm);
}
.pay-model strong { color: var(--teal-deep); }
.pay-model span { color: var(--ink-soft); font-size: 0.95rem; }
.toggles { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.toggle-chip {
  background: #fff;
  border: 1px solid var(--mint-deep);
  color: var(--teal-deep);
  border-radius: 40px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: var(--shadow-sm);
}
.toggle-chip::before { content: "◉  "; color: var(--coral); }

/* ---------- Online booking split ---------- */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.booking-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.booking-photo img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li {
  padding: 9px 0 9px 34px;
  position: relative;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 9px;
  color: #fff;
  background: linear-gradient(120deg, var(--coral) 0%, var(--teal) 100%);
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Reminders & marketing ---------- */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 46px;
}
.duo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.duo-card .duo-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  background: var(--blush);
}
.duo-card.teal .duo-icon { background: var(--mint); }
.duo-card h3 { color: var(--teal-deep); font-size: 1.4rem; }
.duo-card p { color: var(--ink-soft); font-size: 0.98rem; }
.duo-card .mini-list { list-style: none; padding: 0; margin: 16px 0 0; }
.duo-card .mini-list li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
}
.duo-card .mini-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.duo-card.teal .mini-list li::before { background: var(--teal); }
.consent-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.consent-note strong { color: var(--teal-deep); }

/* ---------- Screenshots band ---------- */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot .shot-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 74, 88, 0.82) 0%, rgba(13, 74, 88, 0.15) 52%, rgba(13,74,88,0) 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.shots-note {
  display: inline-block;
  margin-top: 30px;
  background: #fff;
  color: var(--coral-text);
  border: 1px solid var(--blush-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Pricing ---------- */
.price-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
}
.price-card .tbc {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--teal-deep);
  margin-bottom: 0.2em;
}
.price-card .placeholder-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--coral-text);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* ---------- CTA band ---------- */
.cta-band {
  color: #fff;
  text-align: center;
  padding: 86px 0;
  background: linear-gradient(125deg, var(--coral) 0%, var(--teal) 58%, var(--teal-deep) 100%);
}
.cta-logo { width: min(360px, 74%); height: auto; margin: 0 auto 24px; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: rgba(255,255,255,0.92); }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .hero-note { color: rgba(255,255,255,0.72); }

/* ---------- Page hero (features) ---------- */
.page-hero {
  text-align: center;
  padding: 70px 0 60px;
  background:
    radial-gradient(760px 340px at 22% 0%, var(--blush) 0%, rgba(253,238,236,0) 62%),
    radial-gradient(760px 380px at 82% 40%, var(--mint) 0%, rgba(231,244,242,0) 60%),
    #fff;
}
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero p { color: var(--ink-soft); max-width: 60ch; font-size: 1.16rem; margin-left: auto; margin-right: auto; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-head {
  text-align: center;
  padding: 68px 0 44px;
  background:
    radial-gradient(760px 340px at 22% 0%, var(--blush) 0%, rgba(253,238,236,0) 62%),
    radial-gradient(760px 380px at 82% 40%, var(--mint) 0%, rgba(231,244,242,0) 60%),
    #fff;
}
.legal-head h1 { margin-bottom: 0.25em; }
.legal-head .updated { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; margin: 0; }
.legal { padding: 58px 0 80px; }
.legal .wrap { max-width: 780px; }
.legal-body > p.intro { font-size: 1.12rem; color: var(--ink); }
.legal-body h2 { font-size: 1.5rem; color: var(--teal-deep); margin: 42px 0 0.5em; }
.legal-body h3 { font-size: 1.12rem; color: var(--teal-deep); margin: 26px 0 0.4em; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body strong { color: var(--ink); }
.legal-body ul { padding-left: 22px; margin: 0 0 1em; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--teal); }

/* ---------- Comparison table (features) ---------- */
.table-scroll { overflow-x: auto; margin-top: 30px; -webkit-overflow-scrolling: touch; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
table.compare th, table.compare td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.97rem;
}
table.compare thead th {
  background: var(--teal-deep);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
}
table.compare thead th.solo { background: var(--teal); }
table.compare thead th small { font-weight: 400; opacity: 0.82; font-family: var(--sans); }
table.compare tbody th { font-weight: 600; color: var(--teal-deep); width: 30%; }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }
table.compare td.no { color: var(--ink-soft); }
table.compare tbody tr:nth-child(even) { background: var(--off); }

/* ---------- Feature detail modules ---------- */
.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 38px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.module-head { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.module-head .num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(120deg, var(--coral) 0%, var(--teal) 100%);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex: none;
}
.module h3 { font-size: 1.55rem; margin: 0; color: var(--teal-deep); }
.module .module-sub { color: var(--ink-soft); font-size: 0.96rem; margin: 4px 0 22px; }
.module ul { padding-left: 0; list-style: none; margin: 0; }
.module ul li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.98rem;
}
.module ul li:first-child { border-top: none; }
.module ul li::before {
  content: "";
  position: absolute;
  left: 3px; top: 17px;
  width: 8px; height: 8px;
  border-radius: 3px;
  background: var(--teal);
}
.module ul li strong { color: var(--teal-deep); }
.callout {
  background: var(--blush);
  border-left: 4px solid var(--coral);
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--ink);
}
.callout.mint { background: var(--mint); border-left-color: var(--teal); }
.callout strong { color: var(--coral-text); }
.callout.mint strong { color: var(--teal-deep); }

/* ---------- Footer (bright) ---------- */
.site-footer {
  background: var(--off);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 60px 0 36px;
  font-size: 0.92rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 66px; width: auto; margin-bottom: 14px; }
.footer-brand p { max-width: 36ch; color: var(--ink-soft); font-size: 0.92rem; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-cols h4 { color: var(--teal-deep); font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a { color: var(--ink-soft); }
.footer-cols a:hover { color: var(--teal); }
.footer-legal {
  padding-top: 24px;
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.9;
}
.footer-legal strong { color: var(--teal-deep); }
.footer-legal .sep { color: var(--mint-deep); margin: 0 8px; }

/* ---------- Waitlist modal ---------- */
body.wl-lock { overflow: hidden; }
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 74, 88, 0.42);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: wl-fade 0.18s ease;
}
.wl-overlay[hidden] { display: none; }
@keyframes wl-fade { from { opacity: 0; } to { opacity: 1; } }
.wl-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: wl-rise 0.22s ease;
}
@keyframes wl-rise { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.wl-modal::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
}
.wl-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 38px; height: 38px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.wl-close:hover { background: var(--blush); color: var(--coral-deep); }
.wl-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral-text);
  margin: 0 0 0.6em;
}
.wl-modal h2 { font-size: 1.65rem; color: var(--teal-deep); margin: 0 0 0.3em; }
.wl-lead { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 22px; }
.wl-form { display: block; }
.wl-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin: 0 0 6px;
}
.wl-input {
  width: 100%;
  padding: 12px 15px;
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wl-input::placeholder { color: #9aa7ae; }
.wl-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 125, 143, 0.14);
  background: #fff;
}
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-submit { width: 100%; margin-top: 4px; }
.wl-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.wl-msg {
  min-height: 1.2em;
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.wl-msg.is-ok { color: var(--teal); }
.wl-msg.is-error { color: var(--coral-deep); }

.wl-success { text-align: center; padding: 10px 4px 4px; }
.wl-tick {
  width: 58px; height: 58px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--coral) 0%, var(--teal) 100%);
  color: #fff; font-size: 1.7rem; font-weight: 700;
  box-shadow: 0 10px 24px rgba(14, 125, 143, 0.25);
}
.wl-success-title {
  font-size: 1.45rem; color: var(--teal-deep); margin: 0 0 0.35em;
}
.wl-success-text { color: var(--ink-soft); font-size: 1rem; margin: 0 0 14px; }
.wl-again { color: var(--teal); }
.wl-small { margin: 14px 0 0; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .styles-grid, .booking-split, .duo-grid { grid-template-columns: 1fr; gap: 34px; }
  .editions { grid-template-columns: 1fr; }
  .shots-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .nav { gap: 16px; }
  .booking-photo { order: -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav .desktop-only { display: none; }
  .header-inner { gap: 12px; padding: 8px 18px; }
  .brand img { height: 46px; }
  .module { padding: 28px 22px; }
  .edition-card, .duo-card { padding: 30px 24px; }
  .hero { padding: 20px 0 60px; }
  .footer-brand img { height: 54px; }
}
