/* ==========================================================================
   Niagara Falls Helicopter Tours — Editorial Luxe design system
   Author-compiled, no framework runtime. Cascade: fonts → reset → tokens →
   base → layout → components → utilities → motion → responsive.
   ========================================================================== */

/* ---------- Self-hosted fonts (variable, latin) ---------------------------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/jakarta-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

/* ---------- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { min-height: 100%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Tokens --------------------------------------------------------- */
:root {
  --ink:        #0f1620;
  --ink-2:      #1a2432;
  --ink-3:      #26313f;
  --cream:      #f7f3ea;
  --cream-2:    #efe9db;
  --paper:      #ffffff;
  --gold:       #c8a24a;
  --gold-light: #d9b968;
  --gold-deep:  #a9832f;
  --mist:       #eaf0f2;
  --teal:       #2f6f7e;
  --text:       #1c2430;
  --text-soft:  #3c4756;
  --muted:      #62707f;
  --muted-2:    #8a97a5;
  --line:       rgba(15, 22, 32, .12);
  --line-soft:  rgba(15, 22, 32, .07);
  --line-light: rgba(255, 255, 255, .16);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1400px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --radius:    4px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(15, 22, 32, .06);
  --shadow:    0 14px 40px rgba(15, 22, 32, .10);
  --shadow-lg: 0 30px 70px rgba(15, 22, 32, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 80px;
}

/* ---------- Base ----------------------------------------------------------- */
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  font-weight: 400;
  letter-spacing: .002em;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-soft); }
strong { font-weight: 600; color: var(--text); }

/* ---------- Layout --------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--cream { background: var(--cream); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #dfe5ec; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: #aeb9c6; }

/* Section heading block */
.sec-head { max-width: 720px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--center::after { content: ""; width: 30px; height: 1px; background: var(--gold); display: inline-block; }
.section--ink .eyebrow { color: var(--gold-light); }
.sec-head p { margin-top: 1.1rem; font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .95rem 1.9rem; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform; text-align: center; line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 26px rgba(200, 162, 74, .32); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200, 162, 74, .42); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost-light { border: 1px solid var(--line-light); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header --------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-solid { background: rgba(15, 22, 32, .96); box-shadow: 0 6px 24px rgba(0,0,0,.28); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1380px; padding-inline: clamp(1rem, 2.4vw, 1.75rem); }

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: 0 0 auto; color: #fff; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__name { font-family: var(--serif); font-size: 1.24rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; white-space: nowrap; }
.brand__name span { color: var(--gold-light); }
.brand__tag { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 500; padding: .5rem .64rem; border-radius: var(--radius);
  position: relative; transition: color .2s var(--ease); white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: .64rem; right: .64rem; bottom: .3rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav__book { display: none; }
.nav__book::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .95rem; white-space: nowrap; }
.header-phone svg { width: 1rem; height: 1rem; color: var(--gold-light); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: #fff; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

/* ---------- Footer --------------------------------------------------------- */
.site-footer { background: var(--ink); color: #b7c2cf; padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: #8f9dac; font-size: .95rem; max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; color: #cfd8e2; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: #9caab8; font-size: .95rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .95rem; color: #9caab8; font-size: .93rem; line-height: 1.5; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-light); flex: 0 0 auto; margin-top: 2px; }
.footer-contact a { color: #cdd6e0; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line-light); padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: .85rem; color: #7d8a99; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Hero ----------------------------------------------------------- */
.hero { position: relative; min-height: min(100vh, 860px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,32,.55) 0%, rgba(15,22,32,.15) 35%, rgba(15,22,32,.35) 65%, rgba(15,22,32,.9) 100%); }
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(3.5rem, 8vw, 7rem); padding-top: calc(var(--header-h) + 3rem); }
.hero__eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero__lead { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 48ch; margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__meta { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem 2rem; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; }
.hero__meta-item { color: #fff; }
.hero__meta-item .n { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.hero__meta-item .l { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .4rem; }

/* Hero slider */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s var(--ease); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { animation: heroZoom 8s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__text.is-anim { animation: heroTextIn .6s var(--ease) both; }
@media (prefers-reduced-motion: reduce) { .hero__text.is-anim { animation: none; } }
.hero-controls { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.hero-controls .arrow { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.32); color: #fff; display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease); }
.hero-controls .arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hero-controls .arrow svg { width: 20px; height: 20px; }
.hero-dots { display: flex; gap: .5rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); transition: width .3s var(--ease), background-color .3s var(--ease), border-radius .3s var(--ease); }
.hero-dots button.is-active { width: 26px; border-radius: 5px; background: var(--gold); }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } .hero-slide.is-active img { animation: none; } }
@media (max-width: 600px) { .hero__meta { justify-content: center; } .hero__stats { justify-content: center; } }

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--ink); color: #fff; padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; opacity: .38; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,32,.6), rgba(15,22,32,.9)); z-index: 0; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero__lead { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 60ch; margin-top: 1.1rem; }

/* ---------- Breadcrumb ----------------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.35); }
.breadcrumb--dark { color: var(--muted); }
.breadcrumb--dark a { color: var(--text-soft); }
.breadcrumb--dark li:not(:last-child)::after { color: var(--line); }

/* ---------- Feature cards -------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2rem 1.9rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 1.3rem; }
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.feature-card p { font-size: .97rem; color: var(--muted); }
.section--cream .feature-card { background: #fff; }
.section--ink .feature-card { background: var(--ink-2); border-color: rgba(255,255,255,.08); }
.section--ink .feature-card h3 { color: #fff; }
.section--ink .feature-card p { color: #9caab8; }
.section--ink .feature-card__icon { background: rgba(200,162,74,.14); color: var(--gold-light); }

/* ---------- Split / media rows -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.split__media--tall img { aspect-ratio: 4 / 5; }
.split ul.ticks { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .85rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; color: var(--text-soft); }
.ticks li::before { content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--cream); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a9832f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.section--ink .ticks li { color: #b7c2cf; }
.section--ink .ticks li::before { background-color: rgba(200,162,74,.16); }

/* ---------- Route / timeline ---------------------------------------------- */
.route { display: flex; flex-direction: column; gap: 0; position: relative; margin-top: 2rem; }
.route__item { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding-bottom: 2rem; position: relative; }
.route__marker { position: relative; display: flex; flex-direction: column; align-items: center; }
.route__dot { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold-light); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; z-index: 1; flex: 0 0 auto; }
.route__line { position: absolute; top: 44px; bottom: -2px; width: 2px; background: linear-gradient(var(--gold), var(--line)); }
.route__item:last-child .route__line { display: none; }
.route__body h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.route__body p { font-size: .97rem; color: var(--muted); }

/* ---------- Pricing -------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; align-items: stretch; max-width: 760px; margin-inline: auto; }
.price-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2.4rem 2rem; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card--featured { background: var(--ink); color: #cdd6e0; border-color: var(--ink); box-shadow: var(--shadow-lg); }
.price-card--featured h3 { color: #fff; }
.price-card__tag { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: .35rem .7rem; border-radius: var(--radius-pill); }
.price-card__name { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.price-card--featured .price-card__name { color: var(--gold-light); }
.price-card__price { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.price-card--featured .price-card__price { color: #fff; }
.price-card__price small { font-size: 1rem; font-weight: 400; color: var(--muted); font-family: var(--sans); }
.price-card--featured .price-card__price small { color: #97a4b2; }
.price-card__note { font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.price-card ul { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .75rem; }
.price-card ul li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; color: var(--text-soft); }
.price-card--featured ul li { color: #b7c2cf; }
.price-card ul li svg { width: 18px; height: 18px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 3px; }
.price-card--featured ul li svg { color: var(--gold-light); }
.price-card .btn { margin-top: auto; }

/* ---------- Trust band ----------------------------------------------------- */
.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-item .n { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--gold-light); line-height: 1; }
.trust-item .l { font-size: .9rem; color: #aeb9c6; margin-top: .5rem; letter-spacing: .04em; }

/* ---------- Reviews / testimonials ---------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.review-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2rem 1.9rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; box-shadow: var(--shadow-sm); }
.review-card__text { font-size: 1.02rem; color: var(--text); line-height: 1.65; }
.review-card__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); flex: 0 0 auto; }
.review-card__name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-card__meta { font-size: .82rem; color: var(--muted-2); }

/* ---------- FAQ accordion -------------------------------------------------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.5rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s; }
.faq-item summary .faq-icon svg { width: 16px; height: 16px; color: var(--gold-deep); }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq-item[open] summary .faq-icon svg { color: var(--ink); }
.faq-item__body { padding: 0 0 1.6rem; max-width: 74ch; }
.faq-item__body p { color: var(--text-soft); }
.faq-item__body p + p { margin-top: .8rem; }

/* ---------- Gallery -------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); grid-column: span 4; aspect-ratio: 3 / 2.2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 8; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- Home gallery preview ------------------------------------------ */
.home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.home-gallery a { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 1 / 1; display: block; }
.home-gallery picture { display: block; width: 100%; height: 100%; }
.home-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.home-gallery a:hover img { transform: scale(1.07); }
@media (max-width: 900px) { .home-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .home-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Meeting point --------------------------------------------------- */
.meeting { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.meeting__h { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 3.15rem); font-weight: 600; line-height: 1.1; color: var(--ink); display: inline; background: linear-gradient(transparent 60%, rgba(200,162,74,.4) 60%); padding: 0 .08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.meeting__facts { display: flex; flex-direction: column; gap: .95rem; margin: 1.7rem 0 1.9rem; }
.meeting__facts li { display: flex; gap: .9rem; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.meeting__facts .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--gold-deep); display: grid; place-items: center; flex: 0 0 auto; }
.meeting__facts .ic svg { width: 20px; height: 20px; }
.meeting__facts strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: .1rem; }
.meeting__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; background: var(--mist); }
.meeting__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) { .meeting { grid-template-columns: 1fr; } .meeting__map { order: -1; aspect-ratio: 16 / 10; } }

/* ---------- Floating WhatsApp button (animated) ---------------------------- */
.wa-float { position: fixed; right: 22px; bottom: 26px; z-index: 95; display: grid; place-items: center; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; box-shadow: 0 10px 26px rgba(37,211,102,.45); text-decoration: none; transition: transform .2s var(--ease), background-color .2s var(--ease); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: waPulse 2.2s ease-out infinite; z-index: -1; }
.wa-float svg { width: 34px; height: 34px; animation: waNudge 4s ease-in-out infinite; }
.wa-float:hover { background: #1fbe5a; transform: translateY(-3px) scale(1.06); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes waNudge { 0%, 90%, 100% { transform: rotate(0); } 93% { transform: rotate(-9deg); } 96% { transform: rotate(9deg); } }
@media (prefers-reduced-motion: reduce) { .wa-float::before, .wa-float svg { animation: none; } }
@media (max-width: 600px) { .wa-float { right: 16px; bottom: 88px; width: 54px; height: 54px; } }

/* ---------- Tour cards (packages) ----------------------------------------- */
.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 940px; margin-inline: auto; }
.tour-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tc-media > picture, .tc-media > picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-media > picture img { transition: transform .5s var(--ease); }
.tour-card:hover .tc-media > picture img { transform: scale(1.05); }
.tc-badge { position: absolute; top: 0; left: 1.1rem; z-index: 2; background: var(--gold); color: var(--ink); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: .5rem .85rem; border-radius: 0 0 6px 6px; box-shadow: var(--shadow-sm); }
.tc-badge--dark { background: var(--ink); color: #fff; }
.tc-rating { position: absolute; top: .9rem; right: .9rem; z-index: 2; background: #fff; color: var(--ink); font-weight: 700; font-size: .82rem; padding: .28rem .6rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: .3rem; }
.tc-rating svg { width: 14px; height: 14px; color: var(--gold); }
.tc-thumbs { position: absolute; bottom: .7rem; left: .7rem; z-index: 2; display: flex; gap: .4rem; }
.tc-thumbs img { width: 56px; height: 40px; object-fit: cover; border-radius: 4px; border: 2px solid #fff; box-shadow: var(--shadow-sm); }
.tc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.tc-meta { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: .65rem; }
.tc-meta svg { width: 15px; height: 15px; color: var(--gold-deep); }
.tc-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: .55rem; }
.tc-reviews { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .8rem; font-size: .85rem; color: var(--muted); }
.tc-reviews .stars { color: var(--gold); }
.tc-reviews .stars svg { width: 15px; height: 15px; }
.tc-desc { font-size: .95rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; }
.tc-feats { display: flex; flex-wrap: wrap; gap: .45rem 1.1rem; font-size: .85rem; color: var(--text-soft); margin-bottom: 1.15rem; }
.tc-feats span { display: inline-flex; align-items: center; gap: .38rem; }
.tc-feats svg { width: 15px; height: 15px; color: var(--gold-deep); flex: 0 0 auto; }
.tc-price { border-top: 1px solid var(--line-soft); padding-top: 1rem; margin-bottom: 1.1rem; margin-top: auto; }
.tc-price .from { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: .1rem; }
.tc-price .amt { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--ink); }
.tc-price .per { font-size: .9rem; color: var(--muted); }
.tc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.tc-actions .btn { width: 100%; padding: .85rem .8rem; font-size: .92rem; }
/* featured (helicopter) card — prominent + engaging */
.tour-card--featured { border: 2px solid var(--gold); box-shadow: 0 20px 50px rgba(200,162,74,.3); animation: cardGlow 3.6s ease-in-out infinite; }
@keyframes cardGlow { 0%, 100% { box-shadow: 0 16px 40px rgba(200,162,74,.22); } 50% { box-shadow: 0 24px 60px rgba(200,162,74,.46); } }
.tc-badge--star { display: inline-flex; align-items: center; gap: .32rem; }
.tc-badge--star svg { width: 12px; height: 12px; }
@media (min-width: 821px) { .tour-card--featured { transform: translateY(-10px); } .tour-card--featured:hover { transform: translateY(-15px); } }
@media (prefers-reduced-motion: reduce) { .tour-card--featured { animation: none; } }
@media (max-width: 820px) { .tours-grid { grid-template-columns: 1fr; max-width: 460px; } .tour-card--featured { transform: none; } }
@media (max-width: 380px) { .tc-actions { grid-template-columns: 1fr; } }

/* ---------- Gallery carousel (pro) ---------------------------------------- */
.gallery-carousel { max-width: 1040px; margin-inline: auto; }
.gc-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); aspect-ratio: 16 / 9; box-shadow: var(--shadow); }
.gc-main { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.gc-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .2s var(--ease), transform .2s var(--ease); }
.gc-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.06); }
.gc-nav svg { width: 22px; height: 22px; }
.gc-prev { left: 1rem; } .gc-next { right: 1rem; }
.gc-expand { position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(15,22,32,.55); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s var(--ease); }
.gc-expand:hover { background: var(--gold); color: var(--ink); }
.gc-expand svg { width: 18px; height: 18px; }
.gc-counter { position: absolute; bottom: 1rem; right: 1rem; z-index: 2; background: rgba(15,22,32,.7); color: #fff; font-size: .8rem; font-weight: 600; padding: .35rem .8rem; border-radius: var(--radius-pill); letter-spacing: .04em; }
.gc-thumbs { display: flex; gap: .55rem; margin-top: 1rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.gc-thumbs::-webkit-scrollbar { height: 6px; }
.gc-thumbs::-webkit-scrollbar-track { background: transparent; }
.gc-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.gc-thumb { flex: 0 0 auto; width: 112px; height: 72px; border-radius: 6px; overflow: hidden; opacity: .5; outline: 2px solid transparent; outline-offset: 2px; transition: opacity .25s var(--ease), outline-color .25s var(--ease); padding: 0; }
.gc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gc-thumb:hover { opacity: .85; }
.gc-thumb.is-active { opacity: 1; outline-color: var(--gold); }
.gc-lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(9,12,18,.95); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.gc-lightbox.is-open { display: flex; }
.gc-lightbox-img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: var(--shadow-lg); }
.gc-lightbox .gc-nav { background: rgba(255,255,255,.14); color: #fff; }
.gc-lightbox .gc-nav:hover { background: var(--gold); color: var(--ink); }
.gc-close { position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background .2s var(--ease), color .2s var(--ease); }
.gc-close svg { width: 22px; height: 22px; }
.gc-close:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 600px) { .gc-nav { width: 40px; height: 40px; } .gc-thumb { width: 92px; height: 60px; } }

/* ---------- Blog ----------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .7rem; }
.blog-card h3 { font-size: 1.32rem; line-height: 1.25; margin-bottom: .6rem; }
.blog-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.2rem; }
.blog-card__more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.blog-card__more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.blog-card:hover .blog-card__more svg { transform: translateX(4px); }

/* ---------- Article (blog post / legal) ------------------------------------ */
.prose { max-width: 74ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 2.8rem; }
.prose h3 { font-size: 1.4rem; margin-top: 2rem; }
.prose p, .prose li { color: var(--text-soft); font-size: 1.08rem; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .6rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose blockquote { border-left: 3px solid var(--gold); padding: .4rem 0 .4rem 1.5rem; font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink); }
.prose figure img { border-radius: var(--radius-lg); width: 100%; }
.prose figcaption { font-size: .85rem; color: var(--muted-2); text-align: center; margin-top: .6rem; }

/* ---------- Forms ---------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,.16); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ---------- Info list (contact) ------------------------------------------- */
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list li:last-child { border-bottom: 0; }
.info-list__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--gold-deep); display: grid; place-items: center; flex: 0 0 auto; }
.info-list__icon svg { width: 20px; height: 20px; }
.info-list__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.info-list__val { color: var(--ink); font-weight: 600; }
.info-list__val a:hover { color: var(--gold-deep); }

/* ---------- CTA banner ----------------------------------------------------- */
.cta-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); padding: clamp(3rem, 7vw, 5.5rem) var(--gutter); text-align: center; }
.cta-banner__media { position: absolute; inset: 0; opacity: .3; z-index: 0; }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 1rem auto 0; }
.cta-banner .hero__cta, .cta-banner .btn-row { justify-content: center; margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Chips / badges ------------------------------------------------- */
.chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; padding: .4rem .85rem; border-radius: var(--radius-pill); background: var(--cream); color: var(--gold-deep); }
.chip svg { width: 15px; height: 15px; }
.rating-inline { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); }

/* ---------- Utilities ------------------------------------------------------ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.7; }
.skip-link { position: absolute; top: -60px; left: 1rem; z-index: 200; background: var(--gold); color: var(--ink); padding: .7rem 1.2rem; border-radius: var(--radius); font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ---------- Motion / reveal ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Responsive ----------------------------------------------------- */
@media (max-width: 1023px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header { background: var(--ink); }
  .site-header .container { gap: .75rem; }
  .brand { flex: 0 1 auto; min-width: 0; gap: .55rem; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .header-actions { flex: 0 0 auto; gap: .5rem; }
  .site-header.nav-open { background: var(--ink); }
  .nav.is-open {
    display: flex; position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column;
    align-items: stretch; gap: .25rem; padding: 1.5rem var(--gutter) 2.5rem; background: var(--ink);
    overflow-y: auto; z-index: 99;
  }
  .nav.is-open a { color: #fff; font-size: 1.1rem; padding: .95rem .5rem; border-bottom: 1px solid var(--line-light); }
  .nav.is-open a::after { display: none; }
  .nav.is-open .nav__book { display: inline-flex; margin-top: 1.4rem; border-bottom: 0; color: var(--ink); font-size: 1rem; }
  .nav-toggle.is-open .icon-open { display: none; }
  .nav-toggle.is-open .icon-close { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .trust-band { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split__media { order: -1; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item--wide { grid-column: span 6; }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-item, .gallery-item--wide { grid-column: span 12; }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .brand__tag { display: none; }
  .header-actions .btn--gold { padding: .72rem 1.05rem; font-size: .85rem; }
  .brand__name { font-size: .98rem; }
}
