/* ============================================================
   Travel Thrive — website_009
   Editorial, warm, image-led. Mobile-first.
   Palette: deep pine ink + warm sand cream + terracotta accent
   Type: Fraunces (display serif) + Inter (UI/body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #182a26;   /* deep pine near-black */
  --ink-soft:   #2c3f3a;
  --sand:       #f6efe4;   /* warm cream page bg */
  --sand-2:     #efe5d5;   /* slightly deeper cream */
  --paper:      #fffdf9;   /* card / raised surfaces */
  --terra:      #c65d33;   /* terracotta accent */
  --terra-dk:   #a8481f;
  --teal:       #2f6f64;   /* secondary accent */
  --gold:       #c9a24a;
  --text:       #23302c;
  --muted:      #5d6b64;
  --line:       rgba(24, 42, 38, 0.14);
  --line-soft:  rgba(24, 42, 38, 0.08);

  --shadow-sm:  0 2px 10px rgba(24, 42, 38, 0.06);
  --shadow-md:  0 14px 40px rgba(24, 42, 38, 0.12);
  --shadow-lg:  0 30px 70px rgba(24, 42, 38, 0.20);

  --radius:     18px;
  --radius-lg:  26px;
  --radius-xl:  34px;

  --maxw:       1200px;
  --gutter:     clamp(20px, 5vw, 64px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  font-weight: 420;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
h2.section-title { font-size: clamp(2rem, 5vw, 3.4rem); }
p { color: var(--text); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 380; color: var(--terra); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1360px; }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 10vw, 130px); }
.section-pad-sm { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

.bg-ink  { background: var(--ink); color: var(--sand); }
.bg-sand2 { background: var(--sand-2); }
.bg-paper { background: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 10px 24px rgba(198, 93, 51, 0.30); }
.btn-primary:hover { background: var(--terra-dk); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(198, 93, 51, 0.38); }
.btn-ink { background: var(--ink); color: var(--sand); }
.btn-ink:hover { background: #0f1f1b; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--sand); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-wa { background: #1faf54; color: #fff; box-shadow: 0 10px 24px rgba(31, 175, 84, 0.28); }
.btn-wa:hover { background: #189247; transform: translateY(-2px); }
.btn-lg { padding: 1.1em 2em; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.arrow-link svg { width: 1.1em; transition: transform 0.35s var(--ease); }
.arrow-link:hover { color: var(--terra); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s;
}
.brand .mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
}
.brand .mark svg { width: 18px; height: 18px; }
.brand b { font-weight: 600; }

/* header states */
.site-header.transparent { background: transparent; }
.site-header.transparent .brand,
.site-header.transparent .nav-links > li > a,
.site-header.transparent .nav-toggle { color: #fff; }
.site-header.transparent .brand .mark { background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); }
.site-header.solid {
  background: rgba(246, 239, 228, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(24,42,38,0.06);
}

/* desktop nav */
.nav-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

@media (min-width: 960px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 8px;
  }
  .nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink-soft);
    border-radius: 100px;
    transition: color 0.25s, background 0.25s;
  }
  .nav-links > li > a:hover,
  .nav-links > li.current > a { color: var(--terra); }
  .site-header.transparent .nav-links > li > a:hover,
  .site-header.transparent .nav-links > li.current > a { color: #fff; opacity: 0.75; }
  .nav-links .caret { width: 12px; transition: transform 0.3s; }
  .nav-item.has-drop:hover .caret { transform: rotate(180deg); }
}

/* dropdown */
.nav-item.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  max-width: calc(100vw - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.dropdown .divider,
.dropdown .view-all { grid-column: 1 / -1; }
.nav-item.has-drop:hover .dropdown,
.nav-item.has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.2s;
}
.dropdown a:hover { background: var(--sand); }
.dropdown .drop-ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--sand-2);
  color: var(--terra);
  display: grid; place-items: center;
  transition: background 0.25s, color 0.25s;
}
.dropdown .drop-ico svg { width: 20px; height: 20px; }
.dropdown a:hover .drop-ico { background: var(--terra); color: #fff; }
.dropdown .drop-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown .drop-text span { font-weight: 600; font-size: 0.94rem; }
.dropdown .drop-text small { color: var(--muted); font-size: 0.79rem; font-weight: 400; }
.dropdown .divider { height: 1px; background: var(--line-soft); margin: 6px 8px; }
.dropdown a.view-all .drop-text span { color: var(--terra); }

.header-cta { display: none; }
@media (min-width: 720px) { .header-cta { display: inline-flex; } }

/* nav toggle (mobile) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: var(--ink);
  border: 1.5px solid var(--line);
  transition: background 0.25s, border-color 0.25s;
}
.site-header.transparent .nav-toggle { border-color: rgba(255,255,255,0.4); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 25, 22, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 110;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(88vw, 380px);
  background: var(--sand);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.drawer-close {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer nav { margin-top: 18px; border-top: 1px solid var(--line-soft); }
.drawer nav a, .drawer .drawer-sub-label {
  display: block;
  padding: 16px 6px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer .drawer-sub { padding-left: 18px; }
.drawer .drawer-sub a { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--ink-soft); padding: 11px 6px; }
.drawer-actions { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }
.drawer-actions .btn { width: 100%; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12,20,18,0.94) 0%, rgba(12,20,18,0.55) 48%, rgba(12,20,18,0.55) 100%);
}
/* hero headline — matches website_008 tagline treatment */
.hero h1 {
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.hero h1 .brand-word {
  color: #ff9e1b;
  font-style: normal;
}
.hero-inner { padding-block: clamp(110px, 16vh, 180px) clamp(48px, 8vh, 90px); }
.hero .eyebrow { color: #f4c9ac; margin-bottom: 22px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero p { color: rgba(255,255,255,0.9); margin-top: 24px; max-width: 60ch; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero .btn-row { margin-top: 36px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 60px);
  margin-top: clamp(44px, 7vh, 72px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-stats .stat b { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 420; display: block; line-height: 1; }
.hero-stats .stat span { font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); text-transform: uppercase; margin-top: 8px; display: block; }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
@media (min-width: 960px) { .scroll-hint { display: flex; } }
.scroll-hint .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 3px; background: #fff; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(15,25,22,0.85) 0%, rgba(15,25,22,0.32) 55%, rgba(15,25,22,0.42) 100%);
}
.page-hero-inner { padding-block: clamp(120px, 18vh, 180px) clamp(44px, 7vh, 72px); }
.page-hero h1 {
  color: #fff;
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  max-width: 18ch;
}
.page-hero h1 .brand-word { color: #ff9e1b; font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.9); margin-top: 20px; max-width: 58ch; font-size: clamp(1.02rem, 1.8vw, 1.22rem); }

.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; letter-spacing: 0.05em; margin-bottom: 22px; color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb span.here { color: #f4c9ac; }

/* ============================================================
   INTRO / split about
   ============================================================ */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.wide-img { grid-template-columns: 1.1fr 0.9fr; } }
.split .split-media { position: relative; }
.split .split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split.landscape .split-media img { aspect-ratio: 5/4; }
.split .body h2 { margin-bottom: 22px; }
.split .body p + p { margin-top: 16px; }
.split .body .eyebrow { margin-bottom: 20px; }

/* floating badge on image */
.img-badge {
  position: absolute;
  bottom: 22px; left: -14px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.img-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); flex: none; }
@media (min-width: 900px) { .img-badge { left: -28px; } }

/* stat trio */
.stat-trio { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat-trio .stat b { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 420; color: var(--ink); display: block; line-height: 1; }
.stat-trio .stat span { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* pull quote */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--terra);
  padding-left: 24px;
  margin-block: 30px;
  font-weight: 380;
}

/* ============================================================
   TRUST / feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 34px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sand-2);
  color: var(--terra);
  margin-bottom: 22px;
}
.feature-card .ico svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }
.bg-ink .feature-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.bg-ink .feature-card h3 { color: #fff; }
.bg-ink .feature-card p { color: rgba(255,255,255,0.72); }
.bg-ink .feature-card .ico { background: rgba(255,255,255,0.08); color: #f4c9ac; }

/* ============================================================
   ALTERNATING image/text blocks (travel categories)
   ============================================================ */
.alt-blocks { display: grid; gap: clamp(48px, 8vw, 110px); }
.alt-block { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) {
  .alt-block { grid-template-columns: 1fr 1fr; }
  .alt-block.reverse .alt-media { order: 2; }
}
.alt-media { position: relative; }
.alt-media .frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.alt-media .frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1.1s var(--ease); }
.alt-block:hover .frame img { transform: scale(1.05); }
.alt-media .index {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(15,25,22,0.42);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  z-index: 2;
}
.alt-body .kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 16px; }
.alt-body h3 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.alt-body p { color: var(--muted); font-size: 1.06rem; max-width: 48ch; }
.alt-body .btn-row, .alt-body .arrow-link { margin-top: 26px; }

/* ============================================================
   SERVICE CARDS grid (image cards)
   ============================================================ */
.svc-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,20,18,0.88) 0%, rgba(12,20,18,0.18) 55%, rgba(12,20,18,0.05) 100%);
  transition: background 0.4s;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-card .svc-inner { padding: clamp(22px, 3vw, 30px); width: 100%; }
.svc-card .tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.svc-card h3 { color: #fff; font-size: 1.45rem; }
.svc-card p { color: rgba(255,255,255,0.86); font-size: 0.95rem; margin-top: 8px; max-width: 34ch; }
.svc-card .plus {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.4s var(--ease);
}
.svc-card:hover .plus { background: var(--terra); transform: rotate(90deg); border-color: var(--terra); }
.svc-card .plus svg { width: 18px; height: 18px; }

/* ============================================================
   WHY CHOOSE (numbered list)
   ============================================================ */
.why { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 920px) { .why { grid-template-columns: 0.85fr 1.15fr; } .why.reverse .why-media { order: 2; } }
.why-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/4; object-fit: cover; }
.why-list { display: grid; gap: 4px; }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item:hover { padding-left: 8px; }
.why-item .num { font-family: var(--serif); font-size: 1.5rem; font-weight: 420; color: var(--terra); line-height: 1; padding-top: 4px; min-width: 2ch; }
.why-item h3 { font-size: 1.28rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.98rem; }
.bg-ink .why-item { border-color: rgba(255,255,255,0.14); }
.bg-ink .why-item h3 { color: #fff; }
.bg-ink .why-item p { color: rgba(255,255,255,0.72); }
.bg-ink .section-head p { color: rgba(255,255,255,0.72); }

/* ============================================================
   PARTNERS row
   ============================================================ */
.partners { text-align: center; }
.partner-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); }
.partner-track { display: flex; gap: clamp(30px, 5vw, 64px); width: max-content; animation: marquee 34s linear infinite; }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner-track .p-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.42;
  white-space: nowrap;
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
}
.partner-track .p-name:hover { opacity: 1; color: var(--terra); }
.partner-track .p-sep { color: var(--terra); opacity: 0.5; align-self: center; }
.bg-ink .partner-track .p-name { color: #fff; }

/* static partner grid fallback style */
.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 4vw, 48px); }
.partner-grid .p-name { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.8rem); color: var(--ink); opacity: 0.5; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { display: grid; gap: 4px; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--sand-2); color: var(--terra); display: grid; place-items: center; flex: none; }
.contact-row .ico svg { width: 22px; height: 22px; }
.contact-row .label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-row .val { font-size: 1.06rem; color: var(--ink); font-weight: 500; }
.contact-row .val a { display: block; }
.contact-row .val a:hover { color: var(--terra); }
.bg-ink .contact-row { border-color: rgba(255,255,255,0.14); }
.bg-ink .contact-row .val { color: #fff; }
.bg-ink .contact-row .ico { background: rgba(255,255,255,0.08); color: #f4c9ac; }
.bg-ink .contact-row .val a:hover { color: #f4c9ac; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); background: var(--sand-2); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.9); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band-media { position: absolute; inset: 0; z-index: -2; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,44,39,0.94), rgba(20,44,39,0.72)); }
.cta-band .inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 18px; font-size: 1.12rem; }
.cta-band .btn-row { margin-top: 34px; justify-content: center; }

/* note strip */
.note-strip {
  display: flex; align-items: center; gap: 18px;
  background: var(--sand-2);
  border: 1px dashed rgba(198, 93, 51, 0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.note-strip .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--paper); color: var(--terra); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.note-strip p { color: var(--ink-soft); font-size: 1.02rem; }
.note-strip strong { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: clamp(60px, 8vw, 96px); }
.footer-top { display: grid; gap: clamp(36px, 5vw, 56px); grid-template-columns: 1fr; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-brand .brand .mark { background: var(--terra); }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 34ch; font-size: 0.98rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col .fitem { color: rgba(255,255,255,0.66); font-size: 0.96rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--terra); }
.footer-col .fitem { display: block; }
.footer-contact .line { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; color: rgba(255,255,255,0.66); }
.footer-contact .line svg { width: 18px; flex: none; color: var(--terra); margin-top: 2px; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  padding-block: 28px;
  font-size: 0.85rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; transition: background 0.25s, transform 0.25s; }
.footer-social a:hover { background: var(--terra); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-copy { color: rgba(255,255,255,0.5); }

/* ============================================================
   FLOATING WHATSAPP + mobile sticky bar
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1faf54;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(31,175,84,0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wapulse { 0% { box-shadow: 0 12px 30px rgba(31,175,84,0.4), 0 0 0 0 rgba(31,175,84,0.4); } 70% { box-shadow: 0 12px 30px rgba(31,175,84,0.4), 0 0 0 16px rgba(31,175,84,0); } 100% { box-shadow: 0 12px 30px rgba(31,175,84,0.4), 0 0 0 0 rgba(31,175,84,0); } }
@media (max-width: 640px) { .wa-float { bottom: 84px; width: 54px; height: 54px; } .wa-float svg { width: 28px; height: 28px; } }

.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 88;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -6px 24px rgba(24,42,38,0.14);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px;
  background: var(--paper);
  font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
}
.mobile-bar a.wa { background: #1faf54; color: #fff; }
.mobile-bar a.call { color: var(--terra); }
.mobile-bar svg { width: 20px; height: 20px; }
@media (min-width: 641px) { .mobile-bar { display: none; } }
@media (max-width: 640px) { body { padding-bottom: 54px; } .site-footer { margin-bottom: 0; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .partner-track { animation: none; }
  .wa-float { animation: none; }
  * { transition-duration: 0.001ms !important; }
}
