/* =====================================================================
   Números e Reticências — site styles
   Ported from the Next.js build (globals.css + inline component styles).
   Mobile-first; breakpoints 480 / 640 / 768 / 1024 px.
   ===================================================================== */

:root {
  --accent:        #2c3e50;
  --accent-deep:   #1a2733;
  --plus:          #92174d;

  --canvas:        #ffffff;
  --cloud:         #f7f7f7;
  --icon-bg:       #f2f2f2;
  --hairline:      #dddddd;
  --line:          #ebebeb;

  --ink:           #222222;
  --charcoal:      #3f3f3f;
  --ash:           #6a6a6a;
  --mute:          #929292;

  --error:         #c13515;

  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --font: "Inter", -apple-system, system-ui, "Roboto", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);

  --gutter: clamp(16px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
}
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; border: 3px solid #fff; }
::-webkit-scrollbar-thumb:hover { background: #bbb; }

input, textarea, select { font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout utilities ---------- */
.container { max-width: 1440px; margin: 0 auto; width: 100%; }
.container--1200 { max-width: 1200px; }
.container--1100 { max-width: 1100px; }

.pad-x { padding-left: var(--gutter); padding-right: var(--gutter); }
.pad-y-lg { padding-top: clamp(56px, 9vw, 112px); padding-bottom: clamp(56px, 9vw, 112px); }
.pad-y-md { padding-top: clamp(40px, 7vw, 96px); padding-bottom: clamp(40px, 7vw, 96px); }
.pad-bottom-lg { padding-bottom: clamp(56px, 9vw, 112px); }
.pad-top-md { padding-top: clamp(40px, 7vw, 80px); }
.bg-cloud { background: var(--cloud); }

.page-main { padding-top: 88px; }
.page-shell { will-change: opacity, transform; }

/* Grids */
.grid { display: grid; }
.grid--center { align-items: center; }

.grid--4 { grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.grid--3 { grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.grid--2 { grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px)  { .grid--2 { grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); } }

.grid--hotels { grid-template-columns: 1fr; gap: 20px; margin: 0 auto; }
@media (min-width: 640px)  { .grid--hotels { grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); } }

.grid--split { grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .grid--split { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end; } }

.grid--split-rev { grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .grid--split-rev { grid-template-columns: 1fr 1.4fr; gap: 80px; } }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.stat-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .stat-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* Section header rows */
.section-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  margin-bottom: clamp(28px, 5vw, 48px);
}
@media (min-width: 1024px) {
  .section-row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; }
}
.section-row__arrows { display: flex; gap: 10px; }

.section-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  text-align: left; max-width: 680px; margin-bottom: 40px;
}
.section-head--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.section-head__sub { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--ash); max-width: 560px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 8px; font-weight: 700; letter-spacing: 0.32px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-row .eyebrow { margin-bottom: 12px; }
.section-head .eyebrow { margin-bottom: 0; }

.hero-h1 { font-weight: 600; color: #fff; max-width: 920px;
  font-size: clamp(40px, 11vw, 84px); letter-spacing: clamp(-2.8px, -0.34vw, -1.4px); line-height: 0.98; }
.page-h1 { font-weight: 600; font-size: clamp(40px, 10.5vw, 84px); letter-spacing: clamp(-2.8px, -0.34vw, -1.4px); line-height: 0.95; }
.page-h1-md { font-weight: 600; font-size: clamp(36px, 9vw, 72px); letter-spacing: clamp(-2.4px, -0.3vw, -1.2px); line-height: 0.98; }
.case-h1 { font-weight: 600; max-width: 880px; font-size: clamp(36px, 8.5vw, 64px); letter-spacing: clamp(-2px, -0.25vw, -1.2px); line-height: 0.98; }
.h1--1000 { max-width: 1000px; }
.h1--1100 { max-width: 1100px; }

.h2-xl { font-weight: 600; font-size: clamp(32px, 7vw, 56px); letter-spacing: clamp(-1.8px, -0.22vw, -0.9px); line-height: 1; }
.h2-lg { font-weight: 600; font-size: clamp(28px, 5.5vw, 44px); letter-spacing: clamp(-1.2px, -0.16vw, -0.6px); line-height: 1.05; }
.h2-md { font-weight: 600; font-size: clamp(26px, 4.6vw, 40px); letter-spacing: clamp(-1px, -0.13vw, -0.5px); line-height: 1.05; }
.h2-sm { font-weight: 600; font-size: clamp(22px, 3.6vw, 28px); letter-spacing: clamp(-0.6px, -0.08vw, -0.4px); line-height: 1.1; }
.h2-section { font-weight: 600; font-size: 36px; letter-spacing: -0.8px; line-height: 1.1; }
@media (max-width: 640px) { .h2-section { font-size: 28px; letter-spacing: -0.5px; } }
.h2--narrow { max-width: 720px; }
.h2--narrow-sm { max-width: 560px; }

.intro-p { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.5; color: var(--charcoal); font-weight: 500; }
.intro-p--mt { margin-top: 24px; max-width: 640px; }

.reveal-line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.reveal-line > span { display: inline-block; will-change: transform; }

.link-underline {
  background: transparent; border: none; padding: 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--ink); font-family: inherit;
  text-decoration: underline; text-underline-offset: 4px; display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-full); cursor: pointer; font-family: inherit; white-space: nowrap;
  border: none; text-decoration: none;
}
.btn--primary {
  background: var(--accent); color: #fff; font-weight: 600;
  box-shadow: 0 8px 24px rgba(44,62,80,0.18);
  transition: background 120ms, box-shadow 200ms;
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(44,62,80,0.24); }
.btn--primary:active { background: var(--accent-deep); box-shadow: 0 2px 6px rgba(44,62,80,0.3); }
.btn--sm { font-size: 14px; padding: 10px 18px; }
.btn--md { font-size: 15px; padding: 13px 22px; }
.btn--lg { font-size: 16px; padding: 16px 28px; }
.btn--full { width: 100%; }
.btn__circle {
  width: 28px; height: 28px; border-radius: 50%; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; margin-left: 4px;
}

.btn--ghost {
  background: transparent; color: var(--ink); font-weight: 500; font-size: 14px;
  border: 1px solid var(--hairline); padding: 10px 18px;
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.btn--ghost:hover { background: var(--cloud); transform: translateY(-1px); }
.btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.15); }
.btn--ghost-lg { padding: 14px 22px; font-size: 15px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 1024px) { .btn-row { gap: 12px; } }

.btn-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-full); padding: 6px 6px 6px 18px; cursor: pointer;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  box-shadow: rgba(0,0,0,0.06) 0 2px 6px; transition: box-shadow 200ms;
}
.btn-pill:hover { box-shadow: rgba(0,0,0,0.12) 0 8px 20px; }
.btn-pill__circle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 300ms cubic-bezier(.5,.1,.2,1);
}
.btn-pill:hover .btn-pill__circle { transform: rotate(-45deg); }

.btn-circle {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink);
  border: 1px solid var(--hairline); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: all 200ms;
}
.btn-circle:hover { background: var(--ink); color: #fff; }
.btn-circle--left svg { transform: rotate(180deg); }

.magnetic { will-change: transform; }
@media (hover: none) { .magnetic { transform: none !important; } }
@media (hover: none) { button, a[role="button"], .btn { min-height: 44px; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(1.2) blur(10px); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: clamp(10px, 2vw, 14px) var(--gutter);
  padding-top: max(clamp(10px, 2vw, 14px), env(safe-area-inset-top));
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease;
}
.nav--floating:not(.is-scrolled):not(.is-open) {
  background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom-color: transparent; color: #fff;
  padding-top: max(20px, env(safe-area-inset-top));
}
.nav__row {
  max-width: 1440px; margin: 0 auto; display: grid; align-items: center;
  grid-template-columns: 1fr auto; gap: 12px;
}
@media (min-width: 1024px) { .nav__row { grid-template-columns: auto 1fr auto; gap: 24px; } }

.logo { display: inline-flex; align-items: center; gap: 10px; color: inherit; min-width: 0; }
.logo .bed-mark { flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.logo__tag { font-weight: 500; font-size: 9px; letter-spacing: 0.3px; margin-top: 3px; opacity: 0.65; white-space: nowrap; }
@media (max-width: 380px) { .logo__name { font-size: 12px; } .logo__tag { display: none; } }

.nav__links { display: none; justify-content: center; gap: 36px; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__link {
  font-size: 14px; font-weight: 500; color: inherit; position: relative; padding: 6px 2px;
  white-space: nowrap; opacity: 0.85; transition: opacity 200ms;
}
.nav__link:hover, .nav__link.is-active, .nav--floating:not(.is-scrolled) .nav__link { opacity: 1; }
.nav__link.is-active { font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: currentColor; border-radius: 1px;
}

.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; flex-shrink: 0; cursor: pointer;
  border: 1px solid var(--hairline); border-radius: var(--r-full); background: #fff; color: var(--ink);
}
.nav--floating:not(.is-scrolled):not(.is-open) .nav__burger {
  border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.10); color: #fff;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger line { transform-origin: 10px 7px; transition: transform 220ms var(--ease), opacity 160ms; }
.nav.is-open .burger__l1 { transform: translateY(5px) rotate(45deg); }
.nav.is-open .burger__l2 { opacity: 0; }
.nav.is-open .burger__l3 { transform: translateY(-5px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh;
  width: min(360px, 86vw); background: #fff; color: var(--ink);
  box-shadow: -8px 0 32px rgba(0,0,0,0.14);
  transform: translateX(100%); transition: transform 320ms var(--ease);
  z-index: 100; display: flex; flex-direction: column; gap: 24px;
  padding: max(env(safe-area-inset-top), 24px) 28px max(env(safe-area-inset-bottom), 32px);
}
.drawer.is-open { transform: translateX(0); }
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transition: opacity 280ms; z-index: 99;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; }
.drawer__close {
  width: 40px; height: 40px; border: 1px solid var(--hairline); border-radius: var(--r-full);
  background: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.drawer__links { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.drawer__link {
  font-size: 26px; font-weight: 500; letter-spacing: -0.4px; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__link.is-active { font-weight: 700; }
.drawer__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.drawer__cta { margin-top: auto; }

/* ---------- Home: hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
}
@media (min-width: 1024px) { .hero { height: 92vh; min-height: 640px; } }
/* Taller than the hero and shifted up so the 12% scroll parallax never exposes the top edge */
.hero__img { position: absolute; top: -14%; left: 0; right: 0; bottom: 0; will-change: transform; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%);
}
.hero__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 9vw, 96px);
}
@media (min-width: 1024px) { .hero__overlay { padding-bottom: 128px; } }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25); padding: 8px 16px; border-radius: var(--r-full);
  color: #fff; font-size: 12px; font-weight: 600; margin-bottom: 24px; max-width: 100%;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(44,62,80,0.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(44,62,80,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(44,62,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,62,80,0); }
}
.hero__sub { margin: 24px 0 0; font-size: 17px; font-weight: 500; line-height: 1.5; color: rgba(255,255,255,0.88); max-width: 520px; }
.hero__buttons { margin-top: 36px; }

.hero-stats {
  position: relative; z-index: 2; background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.04);
}
@media (min-width: 1024px) { .hero-stats { margin-top: -85px; } }
.hero-stats__inner { max-width: 1440px; margin: 0 auto; padding: 16px var(--gutter); }
@media (min-width: 1024px) { .hero-stats__inner { padding: 20px 56px; } }

.stat__num { font-weight: 700; letter-spacing: -0.6px; font-feature-settings: 'salt' on; font-size: clamp(20px, 3.5vw, 26px); }
.stat__num--mid { font-size: clamp(28px, 5vw, 40px); letter-spacing: clamp(-1px, -0.14vw, -0.6px); }
.stat__num--big { font-size: clamp(34px, 7vw, 56px); letter-spacing: clamp(-1.6px, -0.2vw, -0.8px); line-height: 1; }
.stat__label { font-size: 13px; font-weight: 500; color: var(--ash); margin-top: 2px; }
.stat__label--light { color: #fff; opacity: 0.85; font-size: 14px; margin-top: 10px; }

/* ---------- Home: intro ---------- */
.mask-img { overflow: hidden; border-radius: 20px; }
.mask-img img { width: 100%; height: 100%; object-fit: cover; }
.intro__photo { margin-top: 28px; aspect-ratio: 4/3; }
.intro__col { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) { .intro__col { padding-top: 60px; } }
.intro__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.intro__tall { aspect-ratio: 4/5; }
.intro__kicker { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.intro__text { font-size: 15px; line-height: 1.6; color: var(--charcoal); }
.intro__lead { margin-top: 20px; font-size: 24px; line-height: 1.25; font-weight: 600; letter-spacing: -0.6px; }
.intro__col .link-underline { margin-top: 24px; }

/* ---------- Listing card ---------- */
.listing { position: relative; color: var(--ink); }
.listing__media {
  display: block; position: relative; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; background: var(--icon-bg);
}
.listing__media--4x3 { aspect-ratio: 4/3; }
.listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.listing:hover .listing__media img { transform: scale(1.06); }
.listing__badge {
  position: absolute; top: 12px; left: 12px; background: #fff; color: var(--ink);
  padding: 4px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: 0.2px;
}
.listing__badge--dark { background: var(--ink); color: #fff; }
.listing__fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: transparent; border: none; cursor: pointer; padding: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); transition: transform 200ms var(--ease);
}
.listing__fav svg { fill: rgba(0,0,0,0.45); transition: fill 200ms; }
.listing__fav.is-active { transform: scale(1.05); }
.listing__fav.is-active svg { fill: var(--accent); }
.listing__body { padding-top: 12px; display: flex; flex-direction: column; gap: 2px; }
.listing__row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.listing__title { font-size: 15px; font-weight: 600; }
@media (max-width: 480px) { .listing__title { font-size: 14.5px; } }
.listing__rating { font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.listing__sub { font-size: 13px; font-weight: 500; color: var(--ash); }
.listing__price { font-size: 14px; font-weight: 500; margin-top: 4px; }
.listing__price b { font-weight: 600; }
.listing__price span { color: var(--ash); }
.listing__price--lg { font-size: 15px; margin-top: 8px; }
.listing__price--lg b { font-weight: 700; }
.listing__sale-price { font-weight: 700; margin-top: 8px; letter-spacing: -0.3px; font-size: clamp(15px, 2vw, 18px); }
.listing--hotel .listing__sub { margin-top: 2px; }

/* ---------- Destination card ---------- */
.dest-card { position: relative; display: block; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; color: #fff; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%); }
.dest-card__meta { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; justify-content: space-between; align-items: flex-end; }
.dest-card__name { display: block; font-size: 22px; font-weight: 600; letter-spacing: -0.4px; }
.dest-card__count { display: block; font-size: 13px; font-weight: 500; opacity: 0.85; margin-top: 2px; }
.dest-card__arrow {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.review-pill { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; }
@media (min-width: 1024px) { .review-pill { font-size: 15px; } }
.review-pill b { font-weight: 600; }
.review-pill span { color: var(--ash); font-size: 0.93em; }

.testimonial {
  border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: #fff; color: var(--ink);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 300ms var(--ease), box-shadow 300ms;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial--dark { background: var(--ink); color: #fff; }
.testimonial__idx { font-size: 10px; font-weight: 700; letter-spacing: 0.32px; text-transform: uppercase; color: var(--ash); }
.testimonial--dark .testimonial__idx { color: var(--accent); }
.testimonial__quote { font-size: 17px; line-height: 1.45; font-weight: 500; letter-spacing: -0.2px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial--dark .testimonial__author { border-top-color: rgba(255,255,255,0.12); }
.testimonial__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__name { font-size: 14px; font-weight: 600; }
.testimonial__role { font-size: 12px; font-weight: 500; opacity: 0.7; margin-top: 2px; }

/* ---------- CTA card ---------- */
.cta-card {
  border-radius: 32px; overflow: hidden; position: relative; background: #111; color: #fff;
  padding: clamp(40px, 7vw, 96px) clamp(24px, 5vw, 64px);
}
.cta-card__img { position: absolute; inset: 0; will-change: transform; }
.cta-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-card__inner { position: relative; max-width: 720px; }
.cta-card__title { color: #fff; }
.cta-card__text { margin: 20px 0 36px; font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.55; max-width: 520px; }

/* ---------- Services ---------- */
.svc-hero { padding-bottom: clamp(32px, 5vw, 48px); }
.svc-bar {
  position: sticky; top: 64px; z-index: 20; background: #fff; padding-top: 24px; border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .svc-bar { top: 72px; } }
.svc-bar__inner { display: flex; flex-direction: column; align-items: stretch; gap: 12px; justify-content: space-between; }
@media (min-width: 1024px) { .svc-bar__inner { flex-direction: row; align-items: center; } }

.tabs { display: flex; gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .tabs { gap: 32px; overflow-x: visible; } }
.tab {
  background: none; border: none; text-align: left; padding: 16px 4px 20px; cursor: pointer; position: relative;
  border-bottom: 2px solid transparent; transition: border-color 200ms; flex-shrink: 0; color: var(--ash);
}
.tab.is-active { border-bottom-color: var(--ink); color: var(--ink); }
.tab__label { display: block; font-size: 16px; font-weight: 500; transition: color 200ms; }
.tab.is-active .tab__label { font-weight: 700; }
.tab__sub { display: block; font-size: 12px; font-weight: 500; color: var(--ash); margin-top: 2px; }

.filters { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.filters::-webkit-scrollbar { display: none; }
.filters > * { flex-shrink: 0; }
.filters--mb { margin-bottom: 32px; }
.chip {
  padding: 8px 14px; border-radius: var(--r-full); font-size: 13px; font-weight: 500; font-family: inherit; cursor: pointer;
  white-space: nowrap; border: 1px solid var(--hairline); background: #fff; color: var(--ink); transition: all 200ms;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.svc-header { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
@media (min-width: 768px) { .svc-header { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 32px; } }
.svc-note { font-size: 13px; color: var(--ash); }
.svc-intro { margin-bottom: 40px; }
.svc-intro p { margin-top: 10px; font-size: 15px; color: var(--ash); max-width: 620px; }
.empty-state { padding: 40px 0; color: var(--ash); font-size: 15px; }

.concierge-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  transition: transform 300ms, box-shadow 300ms, border-color 300ms;
}
.concierge-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.06); border-color: var(--accent); }
.concierge-card__idx { font-size: 10px; font-weight: 700; letter-spacing: 0.32px; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.concierge-card h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -0.4px; font-weight: 600; }
.concierge-card p { font-size: 14px; color: var(--ash); line-height: 1.55; }

/* ---------- Case studies ---------- */
.cases-grid-wrap { padding-top: clamp(20px, 3vw, 24px); }
.case-card {
  display: block; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; color: var(--ink);
  transition: transform 350ms var(--ease), box-shadow 350ms;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }
.case-card__media { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.case-card:hover .case-card__media img { transform: scale(1.06); }
.case-card__tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); padding: 4px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 600; }
.case-card__idx { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.55); color: #fff; padding: 4px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: 0.3px; }
.case-card__body { display: block; padding: 20px; }
.case-card__city { display: block; font-size: 12px; font-weight: 500; color: var(--ash); margin-bottom: 6px; }
.case-card__title { display: block; font-size: 20px; letter-spacing: -0.3px; font-weight: 600; line-height: 1.2; }
.case-card__lede { display: block; margin: 10px 0 16px; font-size: 13px; line-height: 1.5; color: var(--ash); }
.case-card__stats { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.case-card__stat-v { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; }
.case-card__stat-k { display: block; font-size: 11px; color: var(--ash); margin-top: 1px; }

.case-detail__head { padding-top: clamp(28px, 5vw, 40px); }
.back-link { margin-bottom: 32px; }
.case-detail__kicker { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 12px; }
.case-detail__lede { margin: 20px 0 40px; font-size: clamp(16px, 2vw, 19px); line-height: 1.45; color: var(--charcoal); max-width: 680px; font-weight: 500; }
.detail-hero-img { aspect-ratio: 16/10; border-radius: clamp(12px, 2vw, 24px); }
@media (min-width: 768px) { .detail-hero-img { aspect-ratio: 21/9; } }
.case-detail__stats-wrap { padding-top: clamp(32px, 5vw, 48px); }
.case-stats { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-stats .stat__label { margin-top: 4px; }

.prose { max-width: min(760px, 100%); margin: 0 auto; font-size: clamp(15px, 1.7vw, 17px); line-height: 1.65; color: var(--ink); font-weight: 500; }
.prose p { margin-bottom: 24px; }
.prose h3 { margin: 40px 0 16px; font-size: 26px; letter-spacing: -0.6px; font-weight: 600; }
.prose blockquote {
  margin: 0; padding: 20px 24px; border-left: 3px solid var(--accent);
  font-size: 22px; letter-spacing: -0.3px; font-weight: 500; line-height: 1.35; color: var(--ink);
}

.cta-strip {
  border-radius: 24px; background: var(--cloud); display: flex; flex-direction: column; align-items: stretch; gap: 20px;
  padding: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
@media (min-width: 768px) { .cta-strip { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; } }
.cta-strip h3 { font-size: 32px; letter-spacing: -0.8px; font-weight: 600; }
@media (max-width: 640px) { .cta-strip h3 { font-size: 26px; } }
.cta-strip p { margin-top: 8px; font-size: 15px; color: var(--ash); }

/* ---------- About ---------- */
.about-hero-wrap { padding-top: clamp(28px, 5vw, 48px); }
.about-hero-img { aspect-ratio: 16/10; border-radius: clamp(12px, 2vw, 24px); }
@media (min-width: 768px) { .about-hero-img { aspect-ratio: 21/9; } }
.story__text { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.65; color: var(--ink); font-weight: 500; }
.story__text p + p { margin-top: 20px; }
.grid--split-rev .eyebrow { margin-bottom: 12px; }

.value-card { padding: 32px; border-radius: 20px; background: var(--cloud); color: var(--ink); transition: transform 350ms var(--ease); }
.value-card:hover { transform: translateY(-6px); }
.value-card--dark { background: var(--ink); color: #fff; }
.value-card__idx { font-size: 10px; font-weight: 700; letter-spacing: 0.32px; color: var(--accent); text-transform: uppercase; margin-bottom: 24px; }
.value-card h3 { margin-bottom: 12px; font-size: 26px; letter-spacing: -0.5px; font-weight: 600; line-height: 1.15; }
.value-card p { font-size: 15px; line-height: 1.55; opacity: 0.8; }

.team-card__photo { aspect-ratio: 4/5; margin-bottom: 16px; }
.team-card__photo img { transition: transform 700ms var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__role { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; }
.team-card h3 { margin: 8px 0; font-size: 26px; letter-spacing: -0.5px; font-weight: 600; }
.team-card p { font-size: 14px; line-height: 1.5; color: var(--ash); }

.bigstats {
  border-radius: 24px; background: var(--accent); color: #fff;
  padding: clamp(28px, 6vw, 64px) clamp(24px, 5vw, 48px);
}

/* ---------- Contact ---------- */
.contact-grid { align-items: start; }
.contact-intro { margin: 24px 0 40px; max-width: 500px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-row__k { font-size: 11px; font-weight: 600; color: var(--ash); text-transform: uppercase; letter-spacing: 0.4px; padding-top: 4px; }
.contact-row__v { font-size: 17px; font-weight: 500; letter-spacing: -0.2px; word-break: break-word; }
.contact-row__v a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-card {
  background: var(--ink); color: #fff;
  padding: clamp(24px, 5vw, 40px); border-radius: clamp(16px, 3vw, 24px);
  box-shadow: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px, rgba(0,0,0,0.1) 0 4px 8px;
}
.contact-card h2 { margin-bottom: 8px; font-size: 28px; letter-spacing: -0.6px; font-weight: 600; }
.contact-card__sub { margin-bottom: 32px; font-size: 14px; color: rgba(255,255,255,0.6); }
.contact-card__submit { margin-top: 24px; }
.contact-fine { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; gap: 16px; } }
.field { margin-top: 16px; }
.form-row .field:first-child { margin-top: 16px; }
.field__label { display: block; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.field__input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #fff;
  font-family: inherit; font-weight: 500; font-size: 16px; padding: 14px 16px; border-radius: 12px; outline: none;
  transition: border 200ms, background 200ms; resize: vertical;
}
.field__input::placeholder { color: rgba(255,255,255,0.35); }
.field__input:focus { border-color: rgba(255,255,255,0.5); }
.field.has-error .field__input { border-color: var(--error); }
.field__error { font-size: 12px; color: #e8b4b8; margin-top: 6px; min-height: 0; }
.field__error:empty { display: none; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.contact-success { padding: 40px 0; text-align: center; }
.contact-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; }
.contact-success h3 { font-size: 28px; letter-spacing: -0.6px; font-weight: 600; }
.contact-success p { margin: 12px 0 32px; font-size: 15px; color: rgba(255,255,255,0.7); }
.contact-success__warn { font-size: 13px; }
.contact-success__warn a { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: #111; color: #fff; padding-top: 72px; padding-bottom: 32px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
@media (min-width: 640px)  { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; } }
.footer__logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer__logo span { font-weight: 700; font-size: 20px; letter-spacing: -0.3px; }
.footer__blurb { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.55; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75); transition: background 200ms, border-color 200ms;
}
.footer__social a:hover { background: rgba(255,255,255,0.1); }
.footer__head { font-size: 8px; font-weight: 700; letter-spacing: 0.32px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); }
.footer__col a { transition: color 150ms; }
.footer__col a:hover { color: #fff; }
.footer__col span { cursor: default; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px; text-align: center; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; gap: 0; text-align: left; } }
.footer__meta { display: inline-flex; gap: 18px; }

/* ---------- Misc ---------- */
[hidden] { display: none !important; }

/* ---------- Custom pages (admin-created) ---------- */
.logo__img { border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.prose--page { max-width: min(860px, 100%); }
.prose--page img { border-radius: 16px; margin: 8px 0 24px; }
.prose--page h2 { margin: 40px 0 16px; font-size: 32px; letter-spacing: -0.8px; font-weight: 600; line-height: 1.1; }
.prose--page h3 { margin: 32px 0 12px; font-size: 24px; letter-spacing: -0.5px; }
.prose--page ul, .prose--page ol { margin: 0 0 24px; padding-left: 24px; list-style: revert; }
.prose--page li { margin-bottom: 8px; }
.prose--page a { text-decoration: underline; text-underline-offset: 4px; }
.prose--page blockquote { margin: 24px 0; }
.prose--page pre { background: var(--cloud); padding: 16px 20px; border-radius: 12px; overflow-x: auto; font-size: 14px; }
.prose--page table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 15px; }
.prose--page td, .prose--page th { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose--page .ql-align-center { text-align: center; }
.prose--page .ql-align-right { text-align: right; }
.prose--page .ql-align-justify { text-align: justify; }

/* ---------- Stay popup (lightbox) ---------- */
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lb__scrim { position: absolute; inset: 0; background: rgba(17,17,17,0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lb__box {
  position: relative; background: #fff; color: var(--ink); border-radius: 24px; overflow: hidden;
  width: min(1100px, 100%); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
@media (min-width: 900px) { .lb__box { grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr; height: min(680px, calc(100vh - 32px)); } }
.lb__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.08); color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.lb__media { position: relative; background: #111; aspect-ratio: 4/3; min-height: 220px; }
@media (min-width: 900px) { .lb__media { aspect-ratio: auto; height: 100%; } }
.lb__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 250ms; }
.lb__img.is-loading { opacity: 0.4; }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.18); transition: background 150ms, transform 150ms;
}
.lb__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.lb__nav--prev { left: 14px; } .lb__nav--next { right: 14px; }
.lb__nav[hidden] { display: none; }
.lb__count { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-full); }
.lb__thumbs { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.lb__thumbs::-webkit-scrollbar { display: none; }
.lb__thumbs:empty { display: none; }
.lb__thumb { width: 56px; height: 42px; flex-shrink: 0; border-radius: 8px; overflow: hidden; border: 2px solid rgba(255,255,255,0.5); background: #333; cursor: pointer; padding: 0; opacity: 0.75; transition: opacity 150ms, border-color 150ms; }
.lb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb__thumb.is-active, .lb__thumb:hover { opacity: 1; border-color: #fff; }
.lb__body { padding: clamp(20px, 3vw, 36px); overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.lb__badge { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: var(--accent); background: var(--cloud); padding: 4px 10px; border-radius: var(--r-full); }
.lb__title { font-size: clamp(24px, 3vw, 32px); font-weight: 600; letter-spacing: -0.6px; line-height: 1.1; }
.lb__meta { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--ash); }
.lb__meta span:empty { display: none; }
.lb__price { font-size: 15px; margin-top: 4px; }
.lb__price b { font-size: 20px; font-weight: 700; }
.lb__price span { color: var(--ash); }
.lb__desc { font-size: 15px; line-height: 1.6; color: var(--charcoal); margin-top: 8px; }
.lb__desc p { margin-bottom: 12px; }
.lb__desc:empty { display: none; }
.lb__actions { margin-top: auto; padding-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
body.lb-open { overflow: hidden; }
