/* Viña Neblina — independent enoturismo identity.
   Standalone tokens. Not derived from any agency design system,
   not derived from any other demo in this repo. */

:root {
  /* Casablanca Valley palette — terracota, vino, ocre, oliva, pergamino */
  --v-cream:          #FBF4E7;   /* page bg, warm parchment */
  --v-paper:          #FFFCF6;   /* card bg */
  --v-parchment:      #F2E3C9;   /* secondary warm surface */
  --v-ink:            #2B1C14;   /* deep warm brown-black ink, never pure black */
  --v-ink-2:          #5C4736;
  --v-ink-3:          #8C7A68;
  --v-bordeaux:       #6B1E2E;   /* primary brand — deep wine */
  --v-bordeaux-2:     #85293B;   /* hover */
  --v-bordeaux-soft:  #F1DEE1;
  --v-terracotta:     #C1602E;   /* secondary accent — clay */
  --v-terracotta-2:   #A34F24;
  --v-ochre:          #C4922F;   /* accent — gold / harvest */
  --v-ochre-soft:     #F3E4C0;
  --v-olive:          #6B7143;
  --v-line:           rgba(43,28,20,0.12);
  --v-line-2:         rgba(43,28,20,0.20);

  /* WhatsApp brand — used ONLY on WhatsApp actions */
  --v-wapp:           #25D366;
  --v-wapp-hover:     #1FAF4F;
  --v-wapp-fg:        #0B2A12;

  --v-shadow-soft: 0 1px 2px rgba(43,28,20,0.05), 0 14px 34px rgba(43,28,20,0.10);
  --v-shadow-deep: 0 22px 56px rgba(43,28,20,0.24);

  --v-r-card:  10px;
  --v-r-btn:   5px;
  --v-r-input: 5px;

  --v-container: 1220px;
  --v-pad-d: 56px;
  --v-pad-t: 32px;
  --v-pad-m: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Jost', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--v-ink);
  background:
    radial-gradient(ellipse 900px 520px at 6% -8%, rgba(196,146,47,0.12), transparent 60%),
    radial-gradient(ellipse 1000px 640px at 104% 6%, rgba(107,30,46,0.09), transparent 55%),
    var(--v-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* Display type — Cormorant Garamond, editorial wine-list serif */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; font-weight: 500; margin: 0; line-height: 1.16; color: var(--v-ink); }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 500; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
em { font-style: italic; color: var(--v-terracotta); font-weight: 500; }

.vn-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--v-bordeaux);
  display: inline-block;
}
.vn-eyebrow-light { color: rgba(251,244,231,0.92); }

.vn-container { max-width: var(--v-container); margin: 0 auto; padding-left: var(--v-pad-d); padding-right: var(--v-pad-d); }
@media (max-width: 1024px) { .vn-container { padding-left: var(--v-pad-t); padding-right: var(--v-pad-t); } }
@media (max-width: 600px)  { .vn-container { padding-left: var(--v-pad-m); padding-right: var(--v-pad-m); } }

/* ---------- Buttons ---------- */
.vn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 15px;
  letter-spacing: 0.2px;
  padding: 14px 24px; border: 1px solid transparent;
  border-radius: var(--v-r-btn); transition: all .18s ease;
  white-space: nowrap;
}
.vn-btn:hover { transform: translateY(-1px); }
.vn-btn:active { transform: translateY(0); }

.vn-btn-bordeaux { background: var(--v-bordeaux); color: var(--v-paper); border-color: var(--v-bordeaux); }
.vn-btn-bordeaux:hover { background: var(--v-bordeaux-2); border-color: var(--v-bordeaux-2); }
.vn-btn-terracotta { background: var(--v-terracotta); color: #fff; border-color: var(--v-terracotta); }
.vn-btn-terracotta:hover { background: var(--v-terracotta-2); border-color: var(--v-terracotta-2); }
.vn-btn-outline { background: transparent; color: var(--v-ink); border-color: var(--v-ink); }
.vn-btn-outline:hover { background: var(--v-ink); color: var(--v-paper); }
.vn-btn-outline-light { background: rgba(255,252,246,0.92); color: var(--v-ink); border-color: transparent; }
.vn-btn-outline-light:hover { background: #fff; }
.vn-btn-wapp { background: var(--v-wapp); color: var(--v-wapp-fg); border-color: var(--v-wapp); }
.vn-btn-wapp:hover { background: var(--v-wapp-hover); border-color: var(--v-wapp-hover); }

.vn-btn-sm { padding: 10px 16px; font-size: 13px; }
.vn-btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* Inputs */
.vn-input {
  width: 100%; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 400;
  padding: 12px 14px; border-radius: var(--v-r-input);
  border: 1px solid var(--v-line-2); background: #fff; color: var(--v-ink);
  transition: border-color .15s, box-shadow .15s;
}
.vn-input:focus { outline: none; border-color: var(--v-bordeaux); box-shadow: 0 0 0 3px rgba(107,30,46,0.14); }
.vn-input::placeholder { color: var(--v-ink-3); }
.vn-input.is-invalid { border-color: #A33636; }
textarea.vn-input { min-height: 96px; resize: vertical; }

/* ---------- Top bar ---------- */
.vn-topbar {
  background: var(--v-ink);
  color: rgba(251,244,231,0.82);
  font-size: 12px; letter-spacing: 0.3px;
  padding: 8px 0;
}
.vn-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.vn-topbar a { text-decoration: none; color: inherit; }
.vn-topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.vn-topbar-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.vn-topbar-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Nav ---------- */
.vn-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,244,231,0.90);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--v-line);
}
.vn-nav-inner {
  max-width: var(--v-container); margin: 0 auto;
  padding: 0 var(--v-pad-d);
  height: 80px; display: flex; align-items: center; gap: 28px;
}
.vn-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--v-ink); }
.vn-brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--v-bordeaux);
  color: var(--v-ochre-soft);
  border-radius: 50%;
}
.vn-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.vn-brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; letter-spacing: 0; white-space: nowrap; }
.vn-brand-sub { font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--v-ink-3); white-space: nowrap; }

.vn-nav-links { display: flex; gap: 28px; margin-left: auto; }
.vn-nav-links a {
  text-decoration: none; color: var(--v-ink-2);
  font-size: 14.5px; font-weight: 400;
  padding: 6px 0;
  transition: color .15s;
}
.vn-nav-links a:hover { color: var(--v-bordeaux); }
.vn-nav-cta { display: flex; gap: 10px; }

@media (max-width: 1024px) { .vn-brand-sub { display: none; } .vn-nav-inner { padding: 0 var(--v-pad-t); } }
@media (max-width: 900px) {
  .vn-nav-links { display: none; }
  .vn-nav-cta .vn-btn:not(.vn-btn-wapp) { display: none; }
}
@media (max-width: 600px) { .vn-nav-inner { padding: 0 var(--v-pad-m); height: 68px; } .vn-brand-mark { width: 36px; height: 36px; } .vn-brand-name { font-size: 19px; } }

/* ---------- Hero ---------- */
.vn-hero {
  position: relative;
  min-height: 780px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.vn-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(185deg, rgba(28,12,10,0.08) 0%, rgba(28,12,10,0.22) 40%, rgba(20,9,8,0.84) 100%),
    linear-gradient(100deg, rgba(20,9,8,0.55) 0%, rgba(20,9,8,0) 50%),
    url('https://images.unsplash.com/photo-1662624335971-57960e9e669f?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center 62%;
}
.vn-hero-inner {
  max-width: var(--v-container); margin: 0 auto; width: 100%;
  padding: 64px var(--v-pad-d) 60px;
  position: relative;
}
.vn-hero-content { max-width: 720px; }
.vn-hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.18; margin: 18px 0 24px;
  letter-spacing: -0.005em;
  /* Sits on a dark vineyard photo. Without an explicit colour it inherited the
     page's dark ink and the first line was unreadable against the image. */
  color: #FFFBF4;
  text-shadow: 0 2px 24px rgba(20,9,8,0.45);
}
.vn-hero-h1 em { font-style: italic; color: #F0C77E; font-weight: 500; }
.vn-hero-sub { font-size: 18px; line-height: 1.6; color: rgba(255,251,244,0.92); max-width: 500px; margin: 0 0 30px; font-weight: 300; }
.vn-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.vn-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: rgba(255,251,244,0.88); }
.vn-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.vn-dot { width: 5px; height: 5px; border-radius: 50%; background: #F0C77E; flex-shrink: 0; }

.vn-hero-card {
  position: absolute; top: 8px; right: 0;
  background: var(--v-paper); color: var(--v-ink);
  padding: 16px 20px;
  border-radius: var(--v-r-card);
  box-shadow: var(--v-shadow-deep);
  display: flex; flex-direction: column; gap: 3px;
  transform: rotate(-1.6deg);
  min-width: 210px;
}
.vn-hero-card-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--v-terracotta); font-weight: 600; }
.vn-hero-card-main { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; }
.vn-hero-card-note { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--v-ink-3); }

@media (max-width: 1024px) { .vn-hero-inner { padding: 56px var(--v-pad-t) 48px; } .vn-hero { min-height: 720px; } }
@media (max-width: 900px)  { .vn-hero-card { display: none; } }
@media (max-width: 640px)  { .vn-hero-inner { padding: 44px var(--v-pad-m) 40px; } .vn-hero { min-height: 620px; } .vn-hero-actions { flex-direction: column; align-items: stretch; } .vn-hero-actions .vn-btn { width: 100%; } }

/* ---------- Section base ---------- */
.vn-section { padding: 100px 0; }
@media (max-width: 768px) { .vn-section { padding: 64px 0; } }
.vn-section-tight { padding-top: 76px; padding-bottom: 40px; }

.vn-section-head { max-width: 700px; margin-bottom: 48px; }
.vn-section-head .vn-eyebrow { display: block; margin-bottom: 16px; }
.vn-section-head h2 { margin-bottom: 16px; }
.vn-section-head p { font-size: 17px; color: var(--v-ink-2); line-height: 1.6; max-width: 620px; }

/* ---------- Terroir strip ---------- */
.vn-terroir { background: var(--v-parchment); border-top: 1px solid var(--v-line); border-bottom: 1px solid var(--v-line); }
.vn-terroir-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--v-line); max-width: var(--v-container); margin: 0 auto; }
.vn-terroir-cell { padding: 36px var(--v-pad-d) 40px; border-right: 1px solid var(--v-line); display: flex; flex-direction: column; gap: 10px; }
.vn-terroir-cell:last-child { border-right: none; }
.vn-terroir-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 34px; color: var(--v-terracotta); font-weight: 500; line-height: 1; }
.vn-terroir-h { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; }
.vn-terroir-p { font-size: 14px; color: var(--v-ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 1024px) { .vn-terroir-cell { padding: 32px var(--v-pad-t) 36px; } }
@media (max-width: 900px) {
  .vn-terroir-row { grid-template-columns: 1fr 1fr; }
  .vn-terroir-cell:nth-child(2) { border-right: none; }
  .vn-terroir-cell:nth-child(1), .vn-terroir-cell:nth-child(2) { border-bottom: 1px solid var(--v-line); }
}
@media (max-width: 540px) {
  .vn-terroir-row { grid-template-columns: 1fr; }
  .vn-terroir-cell { border-right: none; border-bottom: 1px solid var(--v-line); padding: 30px var(--v-pad-m); }
  .vn-terroir-cell:last-child { border-bottom: none; }
}

/* ---------- Tours ---------- */
.vn-tours-bg { background: var(--v-cream); }
.vn-tours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 30px; }
@media (max-width: 760px) { .vn-tours-grid { grid-template-columns: 1fr; gap: 36px; } }

.vn-tour {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--v-paper); border: 1px solid var(--v-line);
  border-radius: var(--v-r-card); padding: 16px 16px 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.vn-tour:hover { box-shadow: var(--v-shadow-soft); transform: translateY(-2px); }
.vn-tour-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 6px; background: #2a1a16; }
.vn-tour-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vn-tour:hover .vn-tour-photo img { transform: scale(1.04); }
.vn-tour-tag {
  position: absolute; left: 12px; top: 12px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: rgba(107,30,46,0.88); padding: 6px 11px; border-radius: 999px;
}
.vn-tour-duration {
  position: absolute; right: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,244,231,0.94); color: var(--v-ink);
  font-size: 12.5px; font-weight: 500; padding: 6px 11px; border-radius: 999px;
}
.vn-tour-name { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; padding: 0 6px; }
.vn-tour-includes { list-style: none; margin: 0; padding: 0 6px; display: flex; flex-direction: column; gap: 8px; }
.vn-tour-includes li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--v-ink-2); line-height: 1.4; }
.vn-tour-includes svg { color: var(--v-olive); flex-shrink: 0; margin-top: 3px; }
.vn-tour-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 6px 0; margin-top: auto; border-top: 1px solid var(--v-line); padding-top: 16px; flex-wrap: wrap; }
.vn-tour-price { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--v-ink); }
.vn-tour-price small { display: block; font-family: 'Jost', sans-serif; font-weight: 400; font-size: 11px; letter-spacing: 0.3px; color: var(--v-ink-3); text-transform: none; }

/* ---------- Experiencias ---------- */
.vn-exp-bg { background: var(--v-paper); }
.vn-exp-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .vn-exp-grid { grid-template-columns: 1fr; gap: 36px; } }
.vn-exp-photo { aspect-ratio: 3/4; overflow: hidden; max-height: 580px; border-radius: var(--v-r-card); }
.vn-exp-photo img { width: 100%; height: 100%; object-fit: cover; }
.vn-exp-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-top: 32px; }
@media (max-width: 540px) { .vn-exp-list { grid-template-columns: 1fr; gap: 22px; } }
.vn-exp-item { display: flex; flex-direction: column; gap: 6px; }
.vn-exp-item-h { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.vn-exp-item-h svg { color: var(--v-terracotta); flex-shrink: 0; }
.vn-exp-item-p { font-size: 14px; color: var(--v-ink-2); margin: 0; line-height: 1.55; }

/* ---------- Reserva ---------- */
.vn-reserva { background: var(--v-bordeaux); color: var(--v-cream); position: relative; overflow: hidden; }
.vn-reserva-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .vn-reserva-grid { grid-template-columns: 1fr; gap: 36px; } }

.vn-reserva-side h2 { color: var(--v-cream); }
.vn-reserva-side p { font-size: 17px; color: rgba(251,244,231,0.82); line-height: 1.6; max-width: 480px; }
.vn-reserva-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.vn-reserva-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(251,244,231,0.92); line-height: 1.5; }
.vn-reserva-list svg { color: #F0C77E; flex-shrink: 0; margin-top: 3px; }
.vn-wapp-row { margin-top: 32px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.vn-wapp-direct { font-size: 13px; color: rgba(251,244,231,0.65); }

.vn-reserva-form {
  background: var(--v-paper); color: var(--v-ink);
  padding: 36px; border-radius: var(--v-r-card);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--v-shadow-deep);
}
.vn-reserva-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; margin: 0; }
.vn-reserva-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .vn-reserva-row { grid-template-columns: 1fr; } }
.vn-field { display: flex; flex-direction: column; gap: 6px; }
.vn-field label { font-size: 11px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: var(--v-ink-3); }

.vn-form-state { border-radius: var(--v-r-input); padding: 14px 16px; font-size: 14px; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
.vn-form-state.is-success { background: var(--v-ochre-soft); color: #6B4E12; border: 1px solid rgba(196,146,47,0.35); }
.vn-form-state.is-error   { background: #F8E4E4; color: #8A2A2A; border: 1px solid rgba(138,42,42,0.22); }
.vn-form-note { font-size: 12px; color: var(--v-ink-3); margin: 2px 0 0; }

/* ---------- Vinos ---------- */
.vn-vinos-bg { background: var(--v-cream); }
.vn-vinos-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .vn-vinos-grid { grid-template-columns: 1fr; gap: 32px; } }
.vn-vinos-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--v-r-card); max-height: 620px; }
.vn-vinos-photo img { width: 100%; height: 100%; object-fit: cover; }
.vn-vinos-photo-cap {
  position: absolute; left: 16px; bottom: 16px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px;
  color: #fff; background: rgba(43,28,20,0.55); padding: 6px 13px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vn-cepas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; margin-top: 28px; }
@media (max-width: 640px) { .vn-cepas-list { grid-template-columns: 1fr; } }
.vn-cepa { border-top: 1px solid var(--v-line); padding-top: 16px; }
.vn-cepa-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.vn-cepa-head svg { color: var(--v-bordeaux); flex-shrink: 0; }
.vn-cepa-head h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; margin: 0; }
.vn-cepa-tipo { margin-left: auto; font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--v-ink-3); }
.vn-cepa-nota { font-size: 14px; color: var(--v-ink-2); line-height: 1.55; margin: 0 0 8px; }
.vn-cepa-marida { font-size: 12.5px; color: var(--v-ink-3); margin: 0; }
.vn-cepa-marida strong { color: var(--v-terracotta); font-weight: 600; }

/* ---------- Gallery ---------- */
.vn-gallery-bg { background: var(--v-paper); }
.vn-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 170px; gap: 10px; }
.vn-g-tile { overflow: hidden; position: relative; background: #2a1a16; border-radius: 6px; }
.vn-g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vn-g-tile:hover img { transform: scale(1.05); }
.vn-g-cap {
  position: absolute; left: 12px; bottom: 12px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: #fff; font-size: 13.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
/* 12-col grid, every row sums to exactly 12 — no dead gaps:
   row1: g1(8)+g2(4)=12 · row2: g1(cont.)+g3(4)=12 · row3: g4(4)+g5(4)+g6(4)=12 */
.g-1 { grid-column: span 8; grid-row: span 2; }
.g-2 { grid-column: span 4; grid-row: span 1; }
.g-3 { grid-column: span 4; grid-row: span 1; }
.g-4 { grid-column: span 4; grid-row: span 1; }
.g-5 { grid-column: span 4; grid-row: span 1; }
.g-6 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  /* 6-col grid, uniform tiles: 2 per row × 3 rows = fully filled */
  .vn-gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 540px) {
  /* 2-col grid, uniform tiles: 2 per row × 3 rows = fully filled */
  .vn-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Location ---------- */
.vn-location-bg { background: var(--v-cream); }
.vn-location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: stretch; }
@media (max-width: 900px) { .vn-location-grid { grid-template-columns: 1fr; gap: 24px; } }

.vn-map-card { position: relative; min-height: 440px; overflow: hidden; background: var(--v-parchment); border-radius: var(--v-r-card); border: 1px solid var(--v-line); }
.vn-map-card img { width: 100%; height: 100%; object-fit: cover; }
.vn-map-pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.vn-pin-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--v-bordeaux); border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(107,30,46,0.24); }
.vn-pin-label { margin-top: 8px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; background: var(--v-paper); padding: 6px 13px; border-radius: 999px; white-space: nowrap; box-shadow: var(--v-shadow-soft); }
.vn-map-cta { position: absolute; left: 16px; bottom: 16px; }

.vn-routes { background: var(--v-parchment); padding: 32px; border-radius: var(--v-r-card); display: flex; flex-direction: column; }
.vn-routes h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin: 0 0 4px; font-weight: 600; }
.vn-routes-sub { font-size: 13px; color: var(--v-ink-3); margin: 0 0 16px; }
.vn-routes-list { list-style: none; padding: 0; margin: 0; }
.vn-routes-row { display: grid; grid-template-columns: 1fr auto; padding: 13px 0; border-bottom: 1px solid var(--v-line); font-size: 15px; align-items: baseline; }
.vn-routes-row:last-child { border-bottom: none; }
.vn-routes-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 16.5px; }
.vn-routes-meta { font-size: 12px; color: var(--v-ink-3); margin-top: 2px; }
.vn-routes-dist { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--v-terracotta); font-size: 17px; white-space: nowrap; }
.vn-hours-card { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--v-line); display: flex; gap: 12px; align-items: flex-start; }
.vn-hours-card svg { color: var(--v-bordeaux); flex-shrink: 0; margin-top: 2px; }
.vn-hours-card strong { display: block; font-size: 14px; font-weight: 600; }
.vn-hours-card span { display: block; font-size: 13px; color: var(--v-ink-2); margin-top: 2px; }

/* ---------- FAQ ---------- */
.vn-faq-bg { background: var(--v-paper); }
.vn-faq-list { max-width: 820px; }
.vn-faq-item { border-bottom: 1px solid var(--v-line); }
.vn-faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600;
  color: var(--v-ink); text-align: left;
}
.vn-faq-q .vn-chev { transition: transform .25s; color: var(--v-bordeaux); flex-shrink: 0; }
.vn-faq-item.is-open .vn-chev { transform: rotate(45deg); }
.vn-faq-a { padding: 0 0 22px; color: var(--v-ink-2); font-size: 15px; line-height: 1.65; max-width: 640px; }

/* ---------- Final CTA ---------- */
.vn-final { position: relative; color: #fff; padding: 140px 0; overflow: hidden; isolation: isolate; }
.vn-final-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(180deg, rgba(20,9,8,0.60), rgba(20,9,8,0.88)),
                    url('https://images.unsplash.com/photo-1470158499416-75be9aa0c4db?auto=format&fit=crop&w=2400&q=80');
  background-size: cover; background-position: center;
}
.vn-final-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.vn-final h2 { font-size: clamp(36px, 5vw, 60px); margin: 16px 0 20px; color: #fff; font-weight: 500; }
.vn-final h2 em { font-style: italic; color: #F0C77E; font-weight: 500; }
.vn-final p { font-size: 17px; color: rgba(251,244,231,0.86); margin: 0 auto 32px; max-width: 520px; line-height: 1.6; }
.vn-final-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .vn-final { padding: 96px 0; } }

/* ---------- Footer ---------- */
.vn-footer { background: var(--v-ink); color: rgba(251,244,231,0.68); padding: 72px 0 32px; font-size: 14px; }
.vn-footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(251,244,231,0.10); }
@media (max-width: 900px) { .vn-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .vn-footer-top { grid-template-columns: 1fr; gap: 28px; } }
.vn-footer .vn-brand-name { color: #fff; }
.vn-footer .vn-brand-sub { color: rgba(251,244,231,0.5); }
.vn-footer .vn-brand-mark { background: rgba(251,244,231,0.12); color: #F0C77E; }
.vn-footer h4 { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin: 0 0 16px; font-weight: 500; }
.vn-footer-col p, .vn-footer-col a { color: rgba(251,244,231,0.68); text-decoration: none; line-height: 1.7; display: block; }
.vn-footer-col a:hover { color: #fff; }
.vn-footer-bot { padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(251,244,231,0.5); }
.vn-demo-tag { font-style: italic; font-family: 'Cormorant Garamond', serif; color: rgba(251,244,231,0.55); }

/* ---------- Floating WhatsApp ---------- */
.vn-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--v-wapp);
  display: grid; place-items: center;
  box-shadow: 0 14px 36px rgba(37,211,102,0.4), 0 4px 14px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform .15s ease;
}
.vn-fab:hover { transform: scale(1.08); }
.vn-fab:active { transform: scale(0.96); }
.vn-fab-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--v-wapp); opacity: 0.7;
  animation: vn-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes vn-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vn-fab-pulse { animation: none; }
  .vn-btn, .vn-tour, .vn-g-tile img, .vn-tour-photo img { transition: none; }
}
