/* ==========================================================
   GOFKK.COM — Design System
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Marcellus&display=swap');

/* ----------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------- */
:root {
  /* Core palette */
  --teal-deep:    #0f4c5c;
  --teal:         #143a44;
  --teal-mid:     #1d5568;
  --accent:       #f0925e;
  --accent-dark:  #c25a2e;
  --muted:        #7d9197;
  --muted-light:  #b0c0c4;
  --bg:           #f4f7f8;
  --bg-card:      #f5f8f9;
  --white:        #ffffff;
  --border:       #e2ebed;
  --border-mid:   #c8d8dc;
  --text:         #143a44;
  --text-mid:     #56676b;
  --text-muted:   #7d9197;

  /* Legacy aliases kept for backward compat with components */
  --forest:       #143a44;
  --forest-mid:   #1d5568;
  --forest-deep:  #0f4c5c;
  --sage:         #7d9197;
  --sage-light:   #b0c0c4;
  --ocean:        #0f4c5c;
  --ocean-light:  #1d5568;
  --terra:        #f0925e;
  --terra-light:  #d4784e;
  --sand:         #e2ebed;
  --sand-light:   #f5f8f9;
  --cream:        #f5f8f9;
  --ivory:        #ffffff;
  --charcoal:     #143a44;

  /* Typography */
  --font-serif: 'Marcellus', Georgia, serif;
  --font-sans:  'Hanken Grotesk', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(15,76,92,.07), 0 1px 2px rgba(15,76,92,.04);
  --sh-md:  0 4px 12px rgba(15,76,92,.10), 0 2px 6px rgba(15,76,92,.06);
  --sh-lg:  0 8px 28px rgba(15,76,92,.13), 0 4px 10px rgba(15,76,92,.07);
  --sh-xl:  0 20px 52px rgba(15,76,92,.16), 0 8px 20px rgba(15,76,92,.08);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           300ms var(--ease-out);
}

/* ----------------------------------------------------------
   2. RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
.t-overline {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.t-display-i {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 9.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.t-display-dim {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,0.38);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
}

.t-lead {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--text-mid);
}

.t-small {
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* ----------------------------------------------------------
   4. LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--sp-24) 0; }
.section-md { padding: var(--sp-16) 0; }
.section-sm { padding: var(--sp-12) 0; }

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8125rem 1.875rem;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,146,94,.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.44);
}

.btn-link {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t), color var(--t);
}
.btn-link:hover {
  color: var(--teal-deep);
  gap: 10px;
}
.btn-link svg { transition: transform var(--t); }
.btn-link:hover svg { transform: translateX(3px); }

/* ----------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--teal-deep);
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(15,76,92,.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  flex-shrink: 0;
}
.navbar-logo .logo-accent,
.navbar-logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar-nav a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  position: relative;
  transition: color var(--t);
}
.navbar-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t);
}
.navbar-nav a:not(.btn):hover { color: #fff; }
.navbar-nav a:not(.btn):hover::after { width: 100%; }
.navbar-nav .btn { padding: 0.5625rem 1.25rem; }

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--t);
}

.navbar-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #0d3d4b;
  z-index: 550;
  padding: var(--sp-6) var(--pad-x) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t), opacity var(--t);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav a:hover { color: #fff; padding-left: var(--sp-2); }
.mobile-nav a.btn {
  margin-top: var(--sp-4);
  border-bottom: none;
  display: inline-flex;
  align-self: flex-start;
}

/* ----------------------------------------------------------
   7. HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(11,47,57,0.90) 0%, rgba(11,47,57,0.60) 50%, rgba(11,47,57,0.22) 100%),
    repeating-linear-gradient(45deg, #7fb0b8, #7fb0b8 16px, #6ea5ae 16px, #6ea5ae 32px);
}

/* Wave bottom divider */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  pointer-events: none;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-24) 0;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  padding: 8px 15px;
  border: 1px solid rgba(240,146,94,.35);
  border-radius: 40px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-eyebrow .t-overline { color: rgba(251,226,211,.92); }

.hero-headline {
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.hero-desc {
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Floating stats panel */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding: var(--sp-8) var(--sp-8) var(--sp-8) var(--sp-10);
  border-left: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-top: 3px;
}

/* ----------------------------------------------------------
   8. TRUST BAND
   ---------------------------------------------------------- */
.trust-band {
  background: var(--white);
  padding: var(--sp-10) 0 var(--sp-12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.trust-item {
  background: var(--white);
  padding: var(--sp-5) var(--sp-6);
  transition: background var(--t);
}
.trust-item:hover { background: var(--bg-card); }

.trust-num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ----------------------------------------------------------
   9. SECTION HEADERS
   ---------------------------------------------------------- */
.section-hd { margin-bottom: var(--sp-12); }
.section-hd h2 { margin-top: var(--sp-2); }

.section-hd-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

/* ----------------------------------------------------------
   10. VALUES SECTION
   ---------------------------------------------------------- */
.values-section {
  background: var(--bg-card);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.value-card {
  padding: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal-mid));
}

.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--sp-5);
}

.value-card h3 {
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.value-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   11. HOW IT WORKS
   ---------------------------------------------------------- */
.how-section { background: var(--bg-card); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  pointer-events: none;
}

.step-item {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
}
.step-item h3 {
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.step-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------- */
footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.65);
  padding: var(--sp-20) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-12);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--sp-4);
  display: block;
}
.footer-logo .logo-accent,
.footer-logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t), padding-left var(--t);
}
.footer-col ul a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-6);
  display: flex;
  gap: var(--sp-8);
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.32); }
.footer-bottom p + p { flex: 1; min-width: 240px; }

/* ----------------------------------------------------------
   13. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up { animation: fadeUp .9s var(--ease-out) both; }
.anim-d1 { animation-delay: .08s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .36s; }
.anim-d4 { animation-delay: .52s; }
.anim-d5 { animation-delay: .68s; }

/* ----------------------------------------------------------
   14. UTILITIES
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

/* ----------------------------------------------------------
   15. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .values-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .steps-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }

  .section-hd-row { flex-direction: column; align-items: flex-start; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

/* ----------------------------------------------------------
   17. HERO COMPATTO
   ---------------------------------------------------------- */
.hero-compact {
  height: 600px;
  display: flex;
  align-items: flex-start;
  position: relative;
  background:
    linear-gradient(105deg, rgba(11,47,57,0.86) 0%, rgba(11,47,57,0.55) 48%, rgba(11,47,57,0.18) 100%),
    repeating-linear-gradient(45deg, #7fb0b8, #7fb0b8 16px, #74a8b1 16px, #74a8b1 32px);
}

.hero-compact-inner {
  padding-top: 60px;
  max-width: 760px;
}

.hero-compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbe2d3;
  border: 1px solid rgba(251,226,211,.45);
  padding: 8px 15px;
  border-radius: 40px;
  margin-bottom: 26px;
}

.hero-compact-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-compact-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.625rem);
  line-height: 1.06;
  color: #fff;
  margin: 0 0 18px;
}

.hero-compact-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.88);
  margin: 0;
  max-width: 560px;
  line-height: 1.55;
}

/* ----------------------------------------------------------
   18. SEARCH BAR
   ---------------------------------------------------------- */
.search-bar-wrap {
  position: relative;
  z-index: 10;
  padding-bottom: var(--sp-6);
  background: var(--bg);
}

.search-bar {
  margin-top: -50px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px -26px rgba(15,76,92,.45);
  border: 1px solid var(--border);
  padding: 11px;
  display: flex;
  gap: 9px;
  align-items: stretch;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: 11px;
}
.search-field-dest { flex: 1.5; }
.search-field-type {
  flex: 1.1;
  justify-content: space-between;
}

.search-field-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--teal-deep);
  flex-shrink: 0;
}

.search-field-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-field-val {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 2px;
}

.search-field-caret {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.btn-search {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 0 40px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
  text-decoration: none;
}
.btn-search:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.dest-opt {
  display: block;
  width: 100%;
  padding: 11px 16px;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-sans);
  transition: background var(--t);
}
.dest-opt:last-child { border-bottom: none; }
.dest-opt:hover { background: var(--sand); }
.dest-opt.selected { font-weight: 600; color: var(--forest); }

.btn-search-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  flex-shrink: 0;
}

.search-filters {
  display: flex;
  gap: 26px;
  padding: 18px 4px 0;
  flex-wrap: wrap;
}

.search-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-mid);
  cursor: pointer;
  user-select: none;
}
.search-toggle-on {
  font-weight: 600;
  color: var(--teal-deep);
}

.toggle {
  display: inline-block;
  width: 34px; height: 18px;
  border-radius: 20px;
  background: var(--border-mid);
  position: relative;
  flex-shrink: 0;
  transition: background var(--t);
}
.toggle::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left var(--t);
}
.toggle-on { background: var(--teal-deep); }
.toggle-on::after { left: 18px; }

/* ----------------------------------------------------------
   19. DESTINATION TILES 6-GRID
   ---------------------------------------------------------- */
.dest-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.dest-tile:hover .dest-tile-img { transform: scale(1.06); }

.dest-tile-img {
  position: absolute;
  inset: 0;
  transition: transform 700ms var(--ease-out);
}

.dest-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,40,46,0) 38%, rgba(15,40,46,0.82));
}

.dest-tile-body {
  position: absolute;
  left: 20px; bottom: 18px; right: 20px;
  color: #fff;
}

.dest-tile-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.05;
}

.dest-tile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.dest-tile-meta span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.85);
}

.dest-tile-count {
  font-size: 0.75rem !important;
  background: rgba(255,255,255,.18);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ----------------------------------------------------------
   20. WHY SECTION
   ---------------------------------------------------------- */
.why-wrap {
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  overflow: hidden;
}

.why-img {
  flex: 1.05;
  border-radius: 14px;
  min-height: 340px;
}

.why-content {
  flex: 1;
  padding: 30px 32px 30px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--teal-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
}

.why-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.why-item-body {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 2px;
}

/* ----------------------------------------------------------
   21. BEGINNER CTA BAND
   ---------------------------------------------------------- */
.cta-band {
  padding: 0 0 var(--sp-16);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--accent);
  border-radius: 18px;
  padding: 40px 44px;
  overflow: hidden;
}

.cta-band-content { flex: 1; }

.cta-overline { color: rgba(255,255,255,.88) !important; }

.cta-band-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  color: #fff;
  margin: 6px 0 8px;
}

.cta-band-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 560px;
  line-height: 1.55;
}

.btn-cta-band {
  flex-shrink: 0;
  background: #fff;
  color: #c25a2e;
  padding: 15px 32px;
  border-radius: 11px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-band:hover {
  background: #fff4ee;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   22. FOOTER 4-COLUMN VARIANT
   ---------------------------------------------------------- */
.footer-grid-4 {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

/* ----------------------------------------------------------
   23. RESPONSIVE ADDITIONS
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .dest-grid-6 { grid-template-columns: repeat(2, 1fr); }

  .why-wrap { flex-direction: column; }
  .why-img { min-height: 220px; flex: unset; }
  .why-content { padding: 20px 14px 14px; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 28px; }

  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid-4 .footer-brand { grid-column: 1 / -1; }

  .search-bar { flex-direction: column; }
  .search-field { flex: unset; }
  .btn-search { padding: 14px 24px; justify-content: center; }
}

@media (max-width: 600px) {
  .dest-grid-6 { grid-template-columns: 1fr; }
  .footer-grid-4 { grid-template-columns: 1fr; }
  .hero-compact { height: auto; min-height: 360px; padding-bottom: 60px; }
  .hero-compact-inner { padding-top: 40px; }
}

/* ----------------------------------------------------------
   AFFILIATE NOTICE BANNER
   ---------------------------------------------------------- */
.affiliate-notice {
  margin-top: 72px;
  background: #fffbf2;
  border-bottom: 1px solid #f0e0c0;
  padding: 10px 0;
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-align: center;
}
.affiliate-notice p { margin: 0; line-height: 1.5; }
.affiliate-notice strong { color: var(--text); }
.affiliate-notice a { color: var(--teal-mid); text-decoration: underline; }
