/* ============================================================
   fazz. — shared design system
   Display: Saira Condensed · Body: Outfit · Accent: Fazz Violet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  /* brand */
  --violet:        #7B35E8;
  --violet-light:  #9B5CF5;
  --violet-pale:   #F0E9FF;
  --violet-dark:   #5520C4;
  --white:         #FFFFFF;
  --paper:         #FAFAF8;
  --paper-2:       #F2F0EC;
  --ink:           #0A0A10;
  --ink-soft:      #16161F;
  --mid:           #56566A;
  --faint:         #8A8A9C;
  --border:        #EAE6F0;
  --border-soft:   #ECECEC;
  --line-dark:     rgba(255,255,255,0.10);

  /* type */
  --display: 'Saira Condensed', sans-serif;
  --body: 'Outfit', sans-serif;

  /* shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(10,10,16,0.04), 0 4px 16px rgba(10,10,16,0.04);
  --shadow-md: 0 8px 30px rgba(10,10,16,0.07);
  --shadow-violet: 0 14px 40px rgba(123,53,232,0.30);

  /* layout */
  --maxw: 1200px;
  --gutter: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--violet); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.dark { background: var(--ink); color: #fff; }
.center { text-align: center; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet);
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 6px; height: 6px; opacity: .55;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
}
.eyebrow::before { transform: rotate(-135deg); }
.eyebrow::after  { transform: rotate(45deg); }
.dark .eyebrow { color: var(--violet-light); }

/* ---------- headings ---------- */
.h-display {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px); line-height: 0.95;
  letter-spacing: -0.005em; text-wrap: balance;
}
.h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.0;
  letter-spacing: -0.005em; text-wrap: balance;
}
.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px); line-height: 1.03;
  letter-spacing: -0.005em; text-wrap: balance;
}
.h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2vw, 27px); line-height: 1.12; letter-spacing: 0;
}
.lead { font-size: clamp(16px, 1.4vw, 20px); color: var(--mid); font-weight: 400; line-height: 1.6; max-width: 56ch; }
.dark .lead { color: rgba(255,255,255,0.62); }
.accent { color: var(--violet); }
.dark .accent { color: var(--violet-light); }
.muted { color: var(--faint); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; line-height: 1;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--violet); color: #fff; box-shadow: var(--shadow-violet); }
.btn-primary:hover { background: var(--violet-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.dark .btn-ghost { color: #fff; border-color: var(--line-dark); }
.dark .btn-ghost:hover { border-color: var(--violet-light); color: var(--violet-light); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---------- chips / tags ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 100px;
  background: var(--violet-pale); color: var(--violet-dark);
}
.dark .chip { background: rgba(123,53,232,0.16); color: var(--violet-light); }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 0 rgba(123,53,232,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(123,53,232,.45);} 70%{box-shadow:0 0 0 7px rgba(123,53,232,0);} 100%{box-shadow:0 0 0 0 rgba(123,53,232,0);} }

/* ============================================================
   HEADER (floating pill)
   ============================================================ */
.site-header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 20px;
  transition: top .3s ease;
}
.nav-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 8px 8px 22px; box-shadow: var(--shadow-sm);
  width: min(1020px, 100%);
}
.nav-logo { display: flex; align-items: center; height: 26px; }
.nav-logo img { height: 19px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--mid);
  padding: 9px 16px; border-radius: 100px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-links a.active { color: var(--violet); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--paper-2);
}
.nav-burger span { display: block; width: 16px; height: 1.6px; background: var(--ink); position: relative; }
.nav-burger span::before, .nav-burger span::after { content:''; position:absolute; left:0; width:16px; height:1.6px; background: var(--ink); transition: .25s; }
.nav-burger span::before { top: -5px; } .nav-burger span::after { top: 5px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top:0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after  { top:0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 6px; overflow-y: auto;
  padding: 110px 32px 40px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--display); font-weight: 700; font-size: 32px; color: #fff;
  padding: 12px 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a.active { color: var(--violet-light); }
.mobile-menu .btn { margin-top: 24px; align-self: stretch; justify-content: center; width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.cta-band { padding: 90px 0; }
.cta-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--ink); padding: 64px 60px;
  display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 40px; align-items: center;
}
.cta-card::before {
  content:''; position:absolute; width: 520px; height: 520px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(123,53,232,0.55) 0%, transparent 68%); pointer-events:none;
}
.cta-card::after {
  content:''; position:absolute; width: 360px; height: 360px; left: 28%; bottom: -200px;
  background: radial-gradient(circle, rgba(123,53,232,0.22) 0%, transparent 70%); pointer-events:none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .h1 { color: #fff; margin: 18px 0 28px; }
.cta-booking {
  background: #fff; border-radius: var(--r-lg); padding: 24px;
}
.cta-booking .avatars { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.cta-booking .ava { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; background: var(--violet-pale); display:grid; place-items:center; font-size:11px; color: var(--violet-dark); font-weight:700; }
.cta-booking .ava.you { background: var(--ink); color:#fff; margin-left:-14px; }
.cta-booking h4 { font-family: var(--display); font-size: 22px; font-weight: 700; }
.cta-booking p { color: var(--mid); font-size: 14px; margin: 4px 0 18px; }

.site-footer { background: var(--ink); color: #fff; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 40px; }
.footer-brand img { height: 22px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14.5px; max-width: 30ch; line-height: 1.6; }
.footer-news-label { margin: 26px 0 10px; font-weight: 600; font-size: 14px; color:#fff; }
.footer-news { display: flex; gap: 8px; max-width: 340px; }
.footer-news input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark);
  border-radius: 100px; padding: 12px 18px; color: #fff; font-family: var(--body); font-size: 14px;
}
.footer-news input::placeholder { color: rgba(255,255,255,0.4); }
.footer-news input:focus { outline: none; border-color: var(--violet-light); }
.footer-news button { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; background: var(--violet); color:#fff; display:grid; place-items:center; transition: background .15s; }
.footer-news button:hover { background: var(--violet-dark); }
.footer-col h5 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer-links-1col { grid-template-columns: 1fr; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,0.72); width: max-content; transition: color .15s; }
.footer-links a:hover, .footer-links a.active { color: var(--violet-light); }
.footer-contact p { font-size: 15px; color: rgba(255,255,255,0.72); margin-bottom: 12px; line-height: 1.5; }
.footer-contact a:hover { color: var(--violet-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); display:grid; place-items:center; transition: background .15s, transform .15s; }
.footer-social a:hover { background: var(--violet); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-legal-block { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.footer-company span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-company p { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,0.6); border: 1px solid var(--line-dark); border-radius: 8px; padding: 7px 12px; transition: color .15s, border-color .15s; }
.footer-badge:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-badge-img { padding: 6px; background: #fff; border-color: transparent; display: flex; align-items: center; }
.footer-badge-img img { height: 34px; width: auto; display: block; }
.footer-badge-img:hover { opacity: .85; }
.footer-bottom { display:flex; justify-content: space-between; align-items:center; flex-wrap: wrap; gap: 12px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  font-size: 13.5px; color: rgba(255,255,255,0.4); }

/* ---------- reveal on scroll ---------- */
/* visible by default; only hidden once JS marks <html class="js">, so content
   can never get stuck invisible if JS is slow/throttled/fails */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.in { animation: revealIn .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; } .reveal.d4 { animation-delay: .32s; }
/* static failsafe: visible even if animations are paused (hidden tab / print / no-anim) */
html.js .reveal.shown { opacity: 1 !important; transform: none !important; animation: none !important; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity:1; transform:none; } html.js .reveal.in { animation: none; } }

/* ---------- placeholder media ---------- */
.ph {
  position: relative; overflow: hidden; background:
    repeating-linear-gradient(135deg, var(--paper-2) 0 14px, #ebe8e2 14px 28px);
  display: grid; place-items: center; color: var(--faint);
}
.ph.dark-ph { background: repeating-linear-gradient(135deg, #16161f 0 14px, #1d1d28 14px 28px); }
.ph.violet-ph { background: repeating-linear-gradient(135deg, #efe6ff 0 14px, #e4d6ff 14px 28px); }
.ph-label {
  font-family: 'Outfit', monospace; font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: var(--faint); background: rgba(255,255,255,0.75); padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--border-soft);
}
.ph.dark-ph .ph-label { background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.6); border-color: var(--line-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-pill { width: 100%; justify-content: space-between; }
  .nav-cta > a.btn { display: none; }
  .cta-band { padding: 64px 0; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-legal-block { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .nav-cta .btn-text { display: none; }
}

/* ============================================================
   MOTION / DYNAMISM
   ============================================================ */

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c15e; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(34,193,94,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(34,193,94,0.5); }
.wa-float .wa-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 100px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.wa-float:hover .wa-tip { opacity: 1; }
@media print { .wa-float { display: none; } }

/* language switch */
.lang-switch { display: inline-flex; gap: 2px; background: var(--paper-2); border-radius: 100px; padding: 3px; margin-right: 4px; }
.lang-switch button { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--faint); padding: 6px 11px; border-radius: 100px; transition: .15s; }
.lang-switch button.on { background: var(--ink); color: #fff; }
@media (max-width: 768px) {
  .lang-switch button { padding: 10px 13px; }
  .btn { white-space: normal; text-align: center; max-width: 100%; }
}

/* third-party widget guards (SociableKit google reviews popup) */
.sk-popup-overlay { max-width: 100% !important; width: 100% !important; left: 0 !important; right: 0 !important; box-sizing: border-box !important; }
body { overflow-x: clip; }

/* ---------- nav dropdown (desktop mega-ish menu) ---------- */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-caret { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: var(--faint); border-radius: 50%; flex: none; transition: transform .2s ease, background .15s, color .15s; }
.nav-caret svg { width: 12px; height: 12px; }
.nav-drop:hover .nav-caret, .nav-drop.open .nav-caret, .nav-drop:focus-within .nav-caret { color: var(--ink); background: var(--paper-2); transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 10px; opacity: 0; pointer-events: none; transition: opacity .16s ease; z-index: 20; }
.nav-drop:hover .nav-dropdown, .nav-drop.open .nav-dropdown, .nav-drop:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; }
.nav-dropdown-inner { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 10px; min-width: 230px; display: flex; flex-direction: column; gap: 1px; }
.nav-dropdown-inner a { font-size: 14px; font-weight: 500; color: var(--mid); padding: 10px 14px; border-radius: 8px; white-space: nowrap; }
.nav-dropdown-inner a:hover { background: var(--paper-2); color: var(--ink); }
.nav-dropdown-all { margin-top: 4px; padding-top: 12px !important; border-top: 1px solid var(--border-soft); color: var(--violet) !important; font-weight: 600 !important; }

/* ---------- mobile submenus ---------- */
.mm-item { display: flex; flex-direction: column; border-bottom: 1px solid var(--line-dark); }
.mm-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mm-row a { border-bottom: none; flex: 1; padding: 12px 0; }
.mm-caret { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); flex: none; }
.mm-caret svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mm-item.open .mm-caret svg { transform: rotate(180deg); }
.mm-sub { max-height: 0; overflow: hidden; display: flex; flex-direction: column; transition: max-height .3s ease; }
.mm-item.open .mm-sub { max-height: 320px; padding-bottom: 10px; }
.mm-sub a { font-family: var(--body); font-weight: 500; font-size: 16px; color: rgba(255,255,255,.6); padding: 9px 0 9px 16px; border-bottom: none; }
.mm-sub-all { color: var(--violet-light) !important; font-weight: 600; }

/* ---------- about hero: quote card ---------- */
.ab-hero { padding: 150px 0 30px; }
.ab-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.ab-hero h1, .ab-hero .lead, .ab-hero .hero-proof { text-align: left; margin-left: 0; margin-right: 0; }
.ab-hero .lead { margin-top: 22px; }
.ab-quote-card { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 40px 36px; position: relative; overflow: hidden; }
.ab-quote-card .mark { font-family: var(--display); font-size: 90px; line-height: 1; color: var(--violet-light); opacity: .5; display: block; }
.ab-quote-card p { font-family: var(--display); font-weight: 700; font-size: clamp(20px,2.2vw,26px); line-height: 1.3; letter-spacing: -0.01em; margin-top: -10px; }
@media (max-width: 900px) { .ab-hero-grid { grid-template-columns: 1fr; } .ab-hero { padding: 130px 0 20px; } }

/* ---------- reviews hero: rating ring ---------- */
.rv-hero { padding: 150px 0 30px; }
.rv-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.rv-hero h1, .rv-hero .lead { text-align: left; margin-left: 0; margin-right: 0; }
.rv-hero .lead { margin-top: 22px; }
.rv-ring { width: 220px; height: 220px; border-radius: 50%; border: 2px solid var(--violet); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin: 0 auto; }
.rv-ring .num { font-family: var(--display); font-weight: 800; font-size: 52px; color: var(--violet); letter-spacing: -0.02em; }
.rv-ring .stars { color: var(--violet); font-size: 18px; letter-spacing: 3px; }
.rv-ring small { font-size: 11.5px; color: var(--faint); text-align: center; max-width: 14ch; }
@media (max-width: 900px) { .rv-hero-grid { grid-template-columns: 1fr; } .rv-ring { margin: 0; } .rv-hero { padding: 130px 0 20px; } }

/* ---------- contact hero: status card ---------- */
.ct-hero { padding: 150px 0 30px; }
.ct-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.ct-hero h1, .ct-hero .lead { text-align: left; margin-left: 0; margin-right: 0; }
.ct-hero .lead { margin-top: 22px; }
.ct-status { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 16px; }
.ct-status .dot-row { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.ct-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 4px color-mix(in oklab, #2ecc71 20%, transparent); flex: none; }
.ct-status p { font-size: 13.5px; color: var(--faint); margin: 0; }
@media (max-width: 900px) { .ct-hero-grid { grid-template-columns: 1fr; } .ct-hero { padding: 130px 0 20px; } }

/* ---------- booking hero: duration ring ---------- */
.bk-hero { padding: 150px 0 30px; }
.bk-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.bk-hero h1, .bk-hero .lead { text-align: left; margin-left: 0; margin-right: 0; }
.bk-hero .lead { margin-top: 22px; }
.bk-hero .booking-points { justify-content: flex-start; }
.bk-ring { width: 200px; height: 200px; border-radius: 50%; background: var(--violet); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; margin: 0 auto; box-shadow: var(--shadow-violet); }
.bk-ring .n { font-family: var(--display); font-weight: 800; font-size: 46px; letter-spacing: -0.02em; }
.bk-ring .u { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
@media (max-width: 900px) { .bk-hero-grid { grid-template-columns: 1fr; } .bk-ring { margin: 0; } .bk-hero { padding: 130px 0 20px; } }

/* ticker band */
.ticker { background: var(--violet); color: #fff; overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.ticker.ink { background: var(--ink); }
.ticker-row { display: flex; width: max-content; gap: 0; animation: ticker-x 26s linear infinite; }
.ticker.rev .ticker-row { animation-direction: reverse; }
.ticker:hover .ticker-row { animation-play-state: paused; }
.ticker-row span { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.01em; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; }
.ticker-row span::after { content: '✺'; font-size: 0.7em; opacity: .55; }
@keyframes ticker-x { to { transform: translateX(-50%); } }

/* magnetic + tilt */
.magnetic { will-change: transform; }
.tilt { transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; transform-style: preserve-3d; will-change: transform; }

/* hero word reveal */
.reveal-words { display: inline; }
.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.reveal-words .w > i { display: inline-block; font-style: inherit; transform: translateY(0); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
html.js .reveal-words:not(.go) .w > i { transform: translateY(115%); }
/* static failsafe (paused-animation / hidden-tab / print): force words shown */
html.js .reveal.shown .reveal-words .w > i, html.js .reveal-words.shown .w > i { transform: translateY(0) !important; transition: none !important; }

/* floating */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: floaty 5s ease-in-out infinite; }
.floaty.slow { animation-duration: 7s; }

/* link underline sweep */
.nav-links a { position: relative; }

/* gradient text shimmer for accent words (optional) */
@keyframes shimmer { to { background-position: 200% center; } }

@media (prefers-reduced-motion: reduce) {
  .ticker-row, .floaty { animation: none; }
  .reveal-words .w > i { transform: none; }
  .tilt { transition: none; }
}

/* ============================================================
   SYNE — condensed display treatment ("not so wide")
   ============================================================ */
/* (removed — display font is now natively condensed) */
