/* ==========================================================================
   MERIDIAN 33° — Brand Stylesheet v2 (modo claro, estilo Black Tomato)
   ========================================================================== */

:root {
  --navy-deep: #0a1728;
  --navy: #0f2138;
  --navy-light: #16304d;
  --navy-panel: #13253d;
  --gold: #c9a961;
  --gold-soft: #d8c28d;
  --cream: #ede7d8;
  --cream-dim: #b9c2cf;
  --parchment: #f2ede1;
  --ink: #1a2636;
  --ink-soft: #5a6576;
  --white: #ffffff;
  --off-white: #faf9f6;
  --line: #e6e1d4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-label: 'Montserrat', 'Jost', sans-serif;

  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a9873f;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: '◆'; font-size: 9px; color: var(--gold); }

.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,97,0.15) 60%, transparent 100%);
  margin: 18px 0 36px;
}

.section {
  padding: 100px 0;
  background: var(--off-white);
}
.section + .section { border-top: 1px solid var(--line); }

/* Dark utility sections (Destinations / Explore Our Trips / footer) */
.section.dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--cream);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark .eyebrow { color: var(--gold-soft); }
.section.dark .eyebrow::before { color: var(--gold-soft); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.section-head .tag {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section.dark .section-head .tag { color: var(--cream-dim); }

/* Decorative icon watermark (used in .dark sections) */
.icon-decor {
  position: absolute;
  width: 640px;
  height: 640px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  animation: spin-slow 140s linear infinite;
}
.icon-decor.tl { top: -180px; left: -180px; }
.icon-decor.br { bottom: -220px; right: -220px; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  color: #8f6f2e;
  background: transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,169,97,0.35); }
.btn.solid { background: var(--gold); color: var(--navy-deep); }
.btn.solid:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn.dark { border-color: var(--ink); color: var(--ink); }
.btn.dark:hover { background: var(--ink); color: var(--white); }
.btn.ghost-light { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn.ghost-light:hover { background: var(--white); color: var(--navy-deep); }
.btn.whatsapp { border-color: #3fae5b; color: #2f8a45; }
.btn.whatsapp:hover { background: #25d366; color: #06210e; border-color: #25d366; }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0 20px;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,14,26,0.55) 0%, rgba(6,14,26,0.0) 100%);
  z-index: -1;
  opacity: 1;
  transition: opacity .35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(20,30,45,0.08);
}
.site-header.scrolled::before { opacity: 0; }

.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-mark { position: relative; display: block; width: 168px; height: 41px; flex-shrink: 0; }
.logo-mark .logo-img { position: absolute; top: 0; left: 0; width: 168px; height: auto; transition: opacity .35s ease; }
.logo-mark .logo-gold { opacity: 1; }
.logo-mark .logo-ink { opacity: 0; }
.site-header.scrolled .logo-mark .logo-gold { opacity: 0; }
.site-header.scrolled .logo-mark .logo-ink { opacity: 1; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  position: relative;
  transition: color .3s ease;
}
.nav-links a.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a.nav-link:hover { color: var(--gold-soft); }
.nav-links a.nav-link:hover::after { width: 100%; }
.site-header.scrolled .nav-links a.nav-link { color: var(--ink); }
.site-header.scrolled .nav-links a.nav-link:hover { color: #8f6f2e; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: 11px; }
.nav-cta .btn.whatsapp { border-color: rgba(63,174,91,0.7); color: #d7f5df; }
.site-header.scrolled .nav-cta .btn.whatsapp { color: #2f8a45; border-color: #3fae5b; }

.nav-links > li { padding-bottom: 18px; margin-bottom: -18px; }
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0;
  min-width: 560px;
  display: none;
  box-shadow: 0 30px 60px rgba(15,25,40,0.18);
  overflow: hidden;
}
.nav-links > li:hover .mega,
.nav-links > li:focus-within .mega { display: flex; }
.mega .mega-links { flex: 1; padding: 28px; display: flex; gap: 28px; }
.mega a.mega-item { display: block; padding: 8px 0; font-size: 16px; font-family: var(--font-display); color: var(--ink); transition: color .2s ease, padding-left .2s ease; }
.mega a.mega-item:hover { color: #8f6f2e; padding-left: 4px; }
.mega .mega-col { flex: 1; }
.mega .mega-label { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.16em; color: #a9873f; text-transform: uppercase; margin-bottom: 10px; display: block; }
.mega .mega-preview {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.mega .mega-preview .prev-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity .3s ease; }
.mega .mega-preview .prev-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; z-index: 2; background: linear-gradient(0deg, rgba(10,17,28,0.9), transparent); }
.mega .mega-preview .prev-cap .t { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); }
.mega .mega-preview .prev-cap .d { font-size: 14px; color: var(--cream-dim); margin-top: 4px; }

.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }
.site-header.scrolled .mobile-toggle { color: var(--ink); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn.dark-hide { display: none; }
  .mobile-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(160deg, #16304d, #0a1728 70%);
}
.hero video, .hero .hero-fallback-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero video.is-hidden { display: none; }
.hero .hero-fallback-img { display: none; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,26,0.5) 0%, rgba(6,14,26,0.18) 32%, rgba(6,14,26,0.15) 60%, rgba(6,14,26,0.75) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-content .eyebrow { justify-content: center; color: var(--gold-soft); }
.hero-content .eyebrow::before { display: none; }
.hero-content h1 {
  font-size: 64px;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  color: var(--white);
}
.hero-content p.sub {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 36px;
}
.hero-content .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cream-dim);
}
.hero-scroll .line { width: 1px; height: 30px; background: rgba(237,231,216,0.5); margin: 10px auto 0; animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

@media (max-width: 640px) {
  .hero-content h1 { font-size: 38px; }
  .wrap { padding: 0 22px; }
  .section { padding: 64px 0; }
}

/* ---------- Intro statement ---------- */
.statement {
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
}

/* ---------- Journey segments ---------- */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.segment-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(160deg, #1b2f47, #0f2138);
}
.segment-card .seg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.segment-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,26,0.85) 0%, rgba(6,14,26,0.15) 55%);
  z-index: 1;
}
.segment-card:hover .seg-img { transform: scale(1.08); }
.segment-card .seg-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 26px 18px;
}
.segment-card .icon { font-size: 16px; color: var(--gold-soft); margin-bottom: 10px; transition: transform .3s ease; }
.segment-card:hover .icon { transform: scale(1.2) rotate(8deg); }
.segment-card h4 { font-size: 20px; margin-bottom: 6px; color: var(--white); }
.segment-card p { font-size: 13px; color: var(--cream-dim); margin: 0; }
@media (max-width: 900px) { .segment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .segment-grid { grid-template-columns: 1fr; } }

/* ---------- Trip cards ---------- */
.trip-hero-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 480px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
}
.trip-hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.trip-hero-card:hover img { transform: scale(1.04); }
.trip-hero-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,26,0.92) 0%, rgba(6,14,26,0.1) 60%);
}
.trip-hero-card .content { position: relative; z-index: 2; padding: 40px; }
.trip-hero-card .tagline { font-size: 15px; color: var(--cream-dim); max-width: 520px; margin-top: 10px; }

.trip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.trip-card { position: relative; height: 360px; overflow: hidden; border-radius: 2px; }
.trip-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.trip-card:hover img { transform: scale(1.08); }
.trip-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,26,0.95) 0%, rgba(6,14,26,0.1) 45%, rgba(6,14,26,0) 60%);
  transition: background .3s ease;
}
.trip-card .content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px; }
.trip-card .stop-no { font-family: var(--font-label); font-size: 11px; color: var(--gold-soft); letter-spacing: 0.14em; }
.trip-card h4 { font-size: 24px; margin-top: 6px; color: var(--white); }
.trip-card .preview-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--cream-dim);
  transition: max-height .35s ease, opacity .35s ease, margin .35s ease;
}
.trip-card:hover .preview-text { max-height: 60px; opacity: 1; margin-top: 8px; }
@media (max-width: 900px) { .trip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trip-grid { grid-template-columns: 1fr; } }

/* ---------- Placeholder image block (swap with real photography) ---------- */
.ph-img {
  background: linear-gradient(135deg, #1b2f47, #0f2138);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(216,194,141,0.55);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  width: 100%; height: 100%;
  border: 1px dashed rgba(201,169,97,0.3);
}
.ph-img.on-light { background: linear-gradient(135deg, #eee7d5, #f7f3e8); color: #a9873f; border-color: rgba(169,135,63,0.35); }
.ph-img { position: relative; }
.ph-img .cap { position: relative; z-index: 0; padding: 0 10px; }
.ph-img > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; border: none;
}

/* ---------- Newsletter: floating glass card ---------- */
.newsletter-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px rgba(10,20,35,0.18);
  padding: 26px 26px 24px;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s;
  pointer-events: none;
}
.newsletter-float.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.newsletter-float.is-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }
.newsletter-float .nf-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.newsletter-float h4 {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}
.newsletter-float .nf-close { background: none; border: none; font-size: 15px; color: var(--ink-soft); cursor: pointer; line-height: 1; padding: 2px; }
.newsletter-float .nf-close:hover { color: var(--ink); }
.newsletter-float input {
  width: 100%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(20,30,45,0.15);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 12px;
  margin-bottom: 10px;
}
.newsletter-float input::placeholder { color: #8a93a3; }
.newsletter-float input:focus { outline: none; border-color: var(--gold); background: var(--white); }
.newsletter-float .btn { width: 100%; justify-content: center; margin-top: 4px; }
.newsletter-float .nf-note { font-size: 11px; color: var(--ink-soft); margin-top: 12px; line-height: 1.5; }
.newsletter-float .nf-note a { color: #8f6f2e; text-decoration: underline; }
@media (max-width: 560px) { .newsletter-float { left: 16px; right: 16px; bottom: 16px; width: auto; } }

/* Legacy inline newsletter (used in footer) */
.newsletter-inline { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.newsletter-inline input {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(237,231,216,0.3);
  color: var(--white);
  font-family: var(--font-body); font-size: 15px; padding: 13px 14px;
}
.newsletter-inline input::placeholder { color: var(--cream-dim); }
.newsletter-inline input:focus { outline: none; border-color: var(--gold); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,17,28,0.55);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: rgba(255,255,255,0.94); color: var(--ink);
  max-width: 420px; width: 100%; padding: 44px 34px; text-align: center; position: relative;
  border-top: 3px solid var(--gold);
  backdrop-filter: blur(10px);
}
.modal-box h3 { font-size: 26px; color: var(--ink); margin-bottom: 14px; }
.modal-box p { font-size: 15px; color: var(--ink-soft); margin-bottom: 26px; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: #7a8494; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { transition: transform .3s ease; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .img-wrap { height: 220px; overflow: hidden; margin-bottom: 18px; }
.blog-card .img-wrap .ph-img { transition: transform .5s ease; }
.blog-card:hover .img-wrap .ph-img { transform: scale(1.06); }
.blog-card .tag { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.16em; color: #a9873f; text-transform: uppercase; }
.blog-card h4 { font-size: 22px; margin: 10px 0 8px; }
.blog-card p { font-size: 15px; color: var(--ink-soft); }

.article-hero { height: 56vh; min-height: 380px; position: relative; display: flex; align-items: flex-end; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,14,26,0.85) 5%, rgba(6,14,26,0.1) 65%); }
.article-hero .content { position: relative; z-index: 2; padding: 50px; max-width: 900px; }
.article-body { max-width: 740px; margin: 0 auto; }
.article-body p { margin-bottom: 24px; color: var(--ink); }
.article-body h3 { font-size: 28px; margin: 40px 0 18px; }
.article-meta { display: flex; gap: 18px; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 30px; }
.article-pullquote { font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 24px; margin: 40px 0; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 70px 0 30px; color: var(--cream); position: relative; overflow: hidden; }
.footer-newsletter { border: 1px solid rgba(201,169,97,0.25); padding: 34px; margin-bottom: 54px; position: relative; z-index: 2; }
.footer-newsletter h5 { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; position: relative; z-index: 2; }
.footer-grid h5 { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer-grid a, .footer-grid p { display: block; font-size: 14px; color: var(--cream-dim); margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-soft); }
.social-link { display: inline-flex !important; align-items: center; gap: 9px; }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(201,169,97,0.15); padding-top: 24px; font-size: 12px; color: var(--cream-dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; position: relative; z-index: 2; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .newsletter-inline { flex-direction: column; align-items: stretch; } }

/* ---------- Forms (contact / preferences) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.checkbox-group label { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); text-transform: none; font-size: 15px; margin-bottom: 10px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* Consent checkbox line used on newsletter + contact + preferences forms */
.consent-line {
  display: flex; align-items: flex-start; gap: 9px;
  font-family: var(--font-body); text-transform: none;
  font-size: 12.5px; line-height: 1.5; color: var(--ink-soft);
  margin: 12px 0 16px;
}
.consent-line input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 15px; height: 15px; accent-color: var(--gold); }
.consent-line a { color: #8f6f2e; text-decoration: underline; }
.newsletter-float .consent-line, .footer-newsletter .consent-line { color: var(--cream-dim); font-size: 11.5px; }
.newsletter-float .consent-line a, .footer-newsletter .consent-line a { color: var(--gold-soft); }
.section.dark .consent-line { color: var(--cream-dim); }
.section.dark .consent-line a { color: var(--gold-soft); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 998;
  background: var(--navy-deep); border-top: 1px solid rgba(201,169,97,0.3);
  padding: 20px 26px; display: none; align-items: center; justify-content: center;
  box-shadow: 0 -10px 30px rgba(6,14,26,0.25);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; color: var(--cream-dim); max-width: 640px; }
.cookie-banner p a { color: var(--gold-soft); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: 10.5px; }
@media (max-width: 760px) { .cookie-banner .wrap { flex-direction: column; align-items: flex-start; } }

/* ---------- Micrositio (destination detail) ---------- */
.chapter-hero { height: 70vh; min-height: 460px; position: relative; display: flex; align-items: flex-end; }
.chapter-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chapter-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,14,26,0.9) 10%, rgba(6,14,26,0.15) 70%); }
.chapter-hero .content { position: relative; z-index: 2; padding: 60px; }

.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.stay-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.2); transition: transform .3s ease, border-color .3s ease; }
.stay-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.stay-card .img { height: 200px; overflow: hidden; }
.stay-card .img .ph-img { transition: transform .5s ease; }
.stay-card:hover .img .ph-img { transform: scale(1.08); }
.stay-card .body { padding: 22px; }
.stay-card .cat { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; color: var(--gold-soft); text-transform: uppercase; }
.stay-card h4 { font-size: 21px; margin: 8px 0 4px; color: var(--white); }
.stay-card .loc { font-size: 13px; color: var(--cream-dim); margin-bottom: 10px; }
.stay-card p.desc { font-size: 14px; color: var(--cream-dim); }
@media (max-width: 900px) { .stay-grid { grid-template-columns: 1fr; } }

.day-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.day-card .img { height: 180px; position: relative; overflow: hidden; }
.day-card .img .ph-img { transition: transform .5s ease; }
.day-card:hover .img .ph-img { transform: scale(1.08); }
.day-card .img .badge { position: absolute; top: 12px; left: 12px; background: var(--navy-deep); color: var(--gold-soft); font-family: var(--font-label); font-size: 10px; letter-spacing: 0.12em; padding: 5px 10px; text-transform: uppercase; z-index: 2; }
.day-card .body { padding: 18px 0; }
.day-card h4 { font-size: 19px; margin-bottom: 8px; color: var(--white); }
.day-card p { font-size: 14px; color: var(--cream-dim); }
@media (max-width: 900px) { .day-grid { grid-template-columns: 1fr; } }

.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 2; }
.included-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.2); padding: 30px; }
.included-box h4 { color: var(--white); }
.included-box.not { background: var(--parchment); color: var(--ink); }
.included-box.not h4 { color: var(--ink); }
.included-box ul { margin: 0; padding-left: 18px; }
.included-box li { margin-bottom: 10px; font-size: 15px; }
@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr; } }

.price-scale { display: flex; justify-content: space-between; margin: 40px 0; border-top: 1px solid rgba(201,169,97,0.25); padding-top: 30px; position: relative; z-index: 2; }
.price-scale .p { text-align: center; flex: 1; }
.price-scale .p .amt { font-family: var(--font-display); font-size: 28px; color: var(--gold-soft); }
.price-scale .p .label { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); margin-top: 6px; }
