/* Canvas: Casa Verde */

/* ----------------------------------------------------------
   Casa Verde — Brand Stylesheet (vibrant tourism)
   Palette: terracotta primary, teal/ocean support, cream surface,
            deep teal-charcoal dark.
---------------------------------------------------------- */

:root {
  /* brand colors */
  --cnvs-themecolor: #E25C2A;        /* signature terracotta */
  --cnvs-themecolor-rgb: 226, 92, 42;
  --cv-terracotta: #E25C2A;
  --cv-terracotta-deep: #B23E14;
  --cv-teal: #0F7A7A;
  --cv-teal-deep: #093E40;
  --cv-cream: #FBF3E6;
  --cv-cream-warm: #F4E6CF;
  --cv-ink: #1C2024;
  --cv-ink-soft: #3A4046;
  --cv-muted: #7A7470;

  /* font routing */
  --cnvs-body-font: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cnvs-primary-font: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cnvs-secondary-font: 'Fraunces', 'Times New Roman', serif;

  /* section rhythm */
  --cv-sec-compact: 2.5rem;
  --cv-sec-default: 5rem;
  --cv-sec-generous: 8rem;

  /* easing tokens */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ───── base typography ───── */
body {
  font-family: var(--cnvs-body-font);
  font-weight: 400;
  background: var(--cv-cream);
  color: var(--cv-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, .cv-h2, .cv-h3 {
  font-family: var(--cnvs-secondary-font);
  font-weight: 600;
  color: var(--cv-ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cv-hero-title { letter-spacing: -0.035em; }

/* ───── eyebrow ───── */
.cv-eyebrow {
  display: inline-block;
  font-family: var(--cnvs-body-font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cv-terracotta);
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--cv-terracotta);
  margin-bottom: 1.25rem;
}

/* ───── section rhythm (HARD RULE) ───── */
.sec-compact  { padding-block: var(--cv-sec-compact); }
.sec-default  { padding-block: var(--cv-sec-default); }
.sec-generous { padding-block: var(--cv-sec-generous); }

/* override .section default 4rem only on scoped classes */
.cv-hero, .cv-hero.include-header { padding: 0; margin: 0; }
.cv-hero.include-header .cv-hero-inner {
  padding-top: calc(var(--cnvs-header-height, 80px) + 3.5rem);
}

@media (max-width: 991.98px) {
  .cv-hero.include-header .cv-hero-inner {
    padding-top: calc(var(--cnvs-header-height, 80px) + 2rem);
  }
}

/* ───── HERO ───── */
.cv-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: #0a1a18;
}
.cv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  animation: cv-heroZoom 16s var(--ease-in-out) forwards;
}
@keyframes cv-heroZoom {
  to { transform: scale(1); }
}
.cv-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,38,40,0.65) 0%, rgba(15,38,40,0.30) 35%, rgba(28,20,16,0.75) 100%),
    radial-gradient(80% 60% at 20% 80%, rgba(226, 92, 42, 0.28), transparent 60%);
  z-index: 1;
}
.cv-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 4rem 5rem;
}
.cv-hero .container { position: relative; }
.cv-hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}
.cv-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  color: #fff;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  max-width: 14ch;
}
.cv-hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255,255,255,0.86);
  margin-bottom: 2rem;
  font-weight: 400;
}
.cv-hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.cv-hero-quick {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.cv-hero-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.cv-hero-quick-item i { color: var(--cv-terracotta); font-size: 1rem; }

.cv-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.cv-scroll-hint:hover { color: #fff; }
.cv-scroll-hint i { font-size: 1rem; animation: cv-bounce 2.4s var(--ease-in-out) infinite; }
@keyframes cv-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ───── BUTTONS ───── */
.cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--cnvs-body-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    background 200ms var(--ease-out),
    color 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}
.cv-btn-primary {
  background: var(--cv-terracotta);
  color: var(--cv-cream);
}
.cv-btn-primary:hover {
  background: var(--cv-terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(178, 62, 20, 0.5);
}
.cv-btn-primary:active { transform: scale(0.97); }
.cv-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cv-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.cv-btn-ghost:active { transform: scale(0.97); }
.cv-btn-block { display: flex; width: 100%; }
@media (hover: hover) and (pointer: fine) {
  .cv-btn:hover { transform: translateY(-2px); }
}
.cv-btn:focus-visible { outline: 2px solid var(--cv-terracotta); outline-offset: 3px; }

/* ───── TYPE — section heads ───── */
.cv-h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem 0;
  max-width: 22ch;
}
.cv-h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 0.75rem 0;
  max-width: 22ch;
}
.cv-section-head {
  max-width: 800px;
  margin-bottom: 4rem;
}
.cv-section-head .cv-h2 { margin-bottom: 1rem; }
.cv-section-sub {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--cv-ink-soft);
  max-width: 60ch;
}
.cv-lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--cv-ink-soft);
  margin-bottom: 1.25rem;
}
.cv-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cv-ink-soft);
  margin-bottom: 1rem;
}

/* ───── INTRO ───── */
.cv-intro { background: var(--cv-cream); }

/* ───── HIGHLIGHTS GRID ───── */
.cv-highlights {
  background: linear-gradient(180deg, var(--cv-cream) 0%, var(--cv-cream-warm) 100%);
}
.cv-grid-row { margin-bottom: 1.5rem; }
.cv-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 38, 40, 0.06);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  border: 1px solid rgba(15, 38, 40, 0.08);
}
.cv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15, 38, 40, 0.18);
}
.cv-card:hover .cv-card-img { transform: scale(1.06); }
.cv-card:hover .cv-card-more i { transform: translateX(4px); }
.cv-card-img {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 700ms var(--ease-out);
  width: 100%;
}
.cv-card-body { padding: 1.5rem 1.6rem 1.7rem; }
.cv-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cv-terracotta);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.cv-card .cv-h3 { color: var(--cv-ink); }
.cv-card p {
  color: var(--cv-ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.cv-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cv-teal);
}
.cv-card-more i { transition: transform 200ms var(--ease-out); }

/* feature card: 7-col with full image overlay */
.cv-card-feature {
  display: grid;
  grid-template-rows: 1fr auto;
}
.cv-card-feature .cv-card-img {
  height: 360px;
  order: 1;
}
.cv-card-feature .cv-card-body {
  order: 2;
  background: #fff;
  position: relative;
}
.cv-card-feature .cv-card-more { display: none; }

.cv-card-tall {
  display: grid;
  grid-template-rows: auto 1fr;
}
.cv-card-tall .cv-card-img {
  height: 220px;
}
.cv-card-tall .cv-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.cv-card-tall .cv-card-tag { margin-bottom: 0.5rem; }
.cv-card-tall p {
  font-size: 0.9rem;
  color: var(--cv-ink-soft);
  line-height: 1.55;
  margin: 0;
}

.cv-card .cv-card-img { height: 220px; }

@media (max-width: 991.98px) {
  .cv-card-feature .cv-card-img,
  .cv-card .cv-card-img,
  .cv-card-tall .cv-card-img { height: 240px; }
}

/* ───── ACTIVITIES ───── */
.cv-activities {
  background: var(--cv-cream);
  overflow: hidden;
}

/* Edge-bleed split — anchored to a single container so the block doesn't float */
.cv-activity-bleed {
  position: relative;
  padding-block: var(--cv-sec-default);
}
.cv-bleed-frame {
  position: relative;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.cv-bleed-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  border-radius: 4px 0 0 4px;
}
.cv-bleed-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,38,40,0.0) 55%, rgba(15,38,40,0.45) 100%);
  border-radius: 4px 0 0 4px;
}
.cv-bleed-text {
  background: var(--cv-cream);
  padding: 3rem 3rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 30px 60px -30px rgba(15,38,40,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -3rem;
  position: relative;
  z-index: 2;
}
.cv-bleed-text .cv-eyebrow { margin-bottom: 1rem; }
.cv-bleed-text .cv-h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .cv-bleed-frame {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }
  .cv-bleed-img {
    min-height: 320px;
    border-radius: 4px 4px 0 0;
  }
  .cv-bleed-img::after { border-radius: 4px 4px 0 0; }
  .cv-bleed-text {
    margin-left: 0;
    margin-top: -2rem;
    border-radius: 0 0 4px 4px;
    padding: 2rem 1.6rem;
  }
}

/* Activity list with icons */
.cv-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(15,38,40,0.10);
}
.cv-activity-list li:last-child { border-bottom: 1px solid rgba(15,38,40,0.10); }
.cv-activity-list i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(226,92,42,0.12);
  color: var(--cv-terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.cv-activity-list li span { font-size: 0.95rem; line-height: 1.55; color: var(--cv-ink-soft); }
.cv-activity-list li span strong { color: var(--cv-ink); display: block; margin-bottom: 2px; }
.cv-activity-list-tight li { padding: 0.7rem 0; }

/* Compact stats band */
.cv-band-edge {
  background: var(--cv-teal-deep);
  color: var(--cv-cream);
  position: relative;
}
.cv-band-edge::before, .cv-band-edge::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 60px;
  background: var(--cv-terracotta);
  top: 50%;
  transform: translateY(-50%);
}
.cv-band-edge::before { left: 0; }
.cv-band-edge::after { right: 0; }
.cv-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.cv-band-figure-num {
  display: block;
  font-family: var(--cnvs-secondary-font);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cv-cream);
  letter-spacing: -0.02em;
}
.cv-band-figure-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251, 243, 230, 0.65);
  margin-top: 0.4rem;
}
@media (max-width: 767.98px) {
  .cv-band-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .cv-band-edge::before, .cv-band-edge::after { display: none; }
}

/* Culture split — needs its own top/bottom rhythm so it doesn't butt the neighbours */
.cv-activity-split {
  background: var(--cv-cream);
  padding-block: var(--cv-sec-default);
}
.cv-split-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.cv-activity-split .cv-h3 { margin-bottom: 1.25rem; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.cv-activity-split p { font-size: 1.05rem; line-height: 1.6; color: var(--cv-ink-soft); margin-bottom: 1.5rem; }

@media (max-width: 991.98px) {
  .cv-activity-split .order-lg-1 { order: 2; }
  .cv-activity-split .order-lg-2 { order: 1; margin-bottom: 2rem; }
  .cv-split-img { aspect-ratio: 16/10; }
}

/* Food grid */
.cv-activity-food {
  background: var(--cv-cream-warm);
  padding-block: var(--cv-sec-default);
}
.cv-food-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.cv-food-head { grid-column: 1 / 2; padding-right: 2rem; }
.cv-food-head .cv-h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cv-food-card { background: var(--cv-cream); padding: 0; border-radius: 4px; overflow: hidden; }
.cv-food-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.cv-food-card h4 {
  font-family: var(--cnvs-secondary-font);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.2rem 1.3rem 0.4rem;
  color: var(--cv-ink);
  letter-spacing: -0.01em;
}
.cv-food-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--cv-ink-soft);
  margin: 0 1.3rem 1.3rem;
}
@media (max-width: 991.98px) {
  .cv-food-grid { grid-template-columns: 1fr 1fr; }
  .cv-food-head { grid-column: 1 / -1; padding-right: 0; margin-bottom: 0.5rem; }
}
@media (max-width: 575.98px) {
  .cv-food-grid { grid-template-columns: 1fr; }
}

/* ───── WHEN TO VISIT ───── */
.cv-when { background: var(--cv-teal-deep); color: var(--cv-cream); }
.cv-when .cv-h2 { color: var(--cv-cream); }
.cv-when .cv-section-sub { color: rgba(251, 243, 230, 0.75); }
.cv-when .cv-eyebrow { color: var(--cv-cream); border-color: var(--cv-cream); }

.cv-when-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.cv-when-month {
  background: rgba(251,243,230,0.05);
  border: 1px solid rgba(251,243,230,0.15);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out), background 280ms var(--ease-out);
}
.cv-when-month:hover {
  transform: translateY(-4px);
  background: rgba(251,243,230,0.08);
  border-color: rgba(251,243,230,0.35);
}
.cv-when-best {
  background: var(--cv-terracotta);
  border-color: var(--cv-terracotta);
}
.cv-when-best:hover {
  background: var(--cv-terracotta-deep);
  border-color: var(--cv-terracotta-deep);
}
.cv-when-month-name {
  font-family: var(--cnvs-secondary-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cv-cream);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.cv-when-month-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(251,243,230,0.65);
  margin-bottom: 1rem;
}
.cv-when-month p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(251,243,230,0.85);
  margin-bottom: 1.5rem;
}
.cv-when-meter {
  width: 100%;
  height: 4px;
  background: rgba(251,243,230,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.cv-when-meter span {
  display: block;
  height: 100%;
  width: var(--m, 50%);
  background: var(--cv-cream);
  border-radius: 999px;
}
.cv-when-best .cv-when-meter span { background: rgba(251,243,230,0.6); }
.cv-when-meter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251,243,230,0.55);
}
.cv-when-besttime {
  border-top: 1px solid rgba(251,243,230,0.2);
  padding-top: 2rem;
}
.cv-when-besttime-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(251,243,230,0.1);
  font-size: 0.95rem;
}
.cv-when-besttime-row span:first-child { color: rgba(251,243,230,0.75); }
.cv-when-besttime-row span:last-child {
  font-family: var(--cnvs-secondary-font);
  font-weight: 600;
  color: var(--cv-cream);
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .cv-when-grid { grid-template-columns: 1fr; }
}

/* ───── STAY (Recipe B — 12-col asymmetric, kept inside the standard container) ───── */
.cv-stay {
  background: var(--cv-cream-warm);
}
.cv-comp-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.cv-comp-lead {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  padding: 2rem;
}
.cv-comp-side {
  grid-column: 6 / 12;
  grid-row: 1 / 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.cv-comp-side-2 {
  grid-column: 6 / 12;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cv-stay-feature {
  position: relative;
  background: var(--cv-cream);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cv-stay-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.cv-stay-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cv-cream);
  color: var(--cv-ink);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}
.cv-comp-side .cv-stay-feature:first-child .cv-stay-img {
  aspect-ratio: 16/11;
}
.cv-stay-feature h3 { padding-inline: 1.5rem; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.cv-stay-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cv-muted);
  padding-inline: 1.5rem;
  margin-bottom: 1rem;
}
.cv-stay-feature p {
  padding-inline: 1.5rem 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cv-ink-soft);
  margin: 0;
}
.cv-stay-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.cv-stay-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(28,32,36,0.12);
  font-size: 0.92rem;
  line-height: 1.5;
}
.cv-stay-list li:last-child { border-bottom: 1px solid rgba(28,32,36,0.12); }
.cv-stay-list i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(15, 122, 122, 0.1);
  color: var(--cv-teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.cv-stay-list strong { color: var(--cv-ink); display: block; }

@media (max-width: 991.98px) {
  .cv-comp-band { grid-template-columns: 1fr; }
  .cv-comp-lead, .cv-comp-side, .cv-comp-side-2 {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .cv-comp-side-2 { grid-template-columns: 1fr; }
}

/* ───── GETTING HERE ───── */
.cv-getting { background: var(--cv-cream); }
.cv-getting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cv-getting-card {
  background: #fff;
  border: 1px solid rgba(28,32,36,0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.cv-getting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15,38,40,0.18);
}
.cv-getting-icon {
  width: 56px;
  height: 56px;
  background: var(--cv-terracotta);
  color: var(--cv-cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.cv-getting-card .cv-h3 { font-size: 1.4rem; margin-bottom: 0.85rem; }
.cv-getting-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--cv-ink-soft);
  margin-bottom: 1.5rem;
}
.cv-getting-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(28,32,36,0.08);
}
.cv-getting-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(28,32,36,0.08);
  font-size: 0.9rem;
}
.cv-getting-meta span { color: var(--cv-ink-soft); }
.cv-getting-meta strong {
  font-family: var(--cnvs-secondary-font);
  color: var(--cv-ink);
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 991.98px) { .cv-getting-grid { grid-template-columns: 1fr; } }

/* ───── BOOK / CONTACT ───── */
.cv-book {
  background: var(--cv-teal-deep);
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(226,92,42,0.15), transparent 60%),
    radial-gradient(50% 40% at 90% 80%, rgba(15,122,122,0.2), transparent 60%),
    var(--cv-teal-deep);
  color: var(--cv-cream);
}
.cv-book .cv-h2 { color: var(--cv-cream); font-size: clamp(2.2rem, 4vw, 3.5rem); }
.cv-book .cv-body { color: rgba(251,243,230,0.8); font-size: 1.05rem; }

.cv-book-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cv-book-lead { padding-right: 1rem; }
.cv-book .cv-eyebrow { color: var(--cv-cream); border-color: var(--cv-cream); }

.cv-book-perks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.cv-book-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(251,243,230,0.15);
}
.cv-book-perks li:last-child { border-bottom: 1px solid rgba(251,243,230,0.15); }
.cv-book-perks i {
  color: var(--cv-terracotta);
  font-size: 1.2rem;
  margin-top: 4px;
}
.cv-book-perks strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--cnvs-secondary-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cv-cream);
  letter-spacing: -0.01em;
}
.cv-book-perks li span { font-size: 0.92rem; line-height: 1.55; color: rgba(251,243,230,0.7); }

.cv-book-form-wrap {
  background: var(--cv-cream);
  color: var(--cv-ink);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.4);
}
.cv-book .cv-btn-primary {
  background: var(--cv-terracotta);
  color: var(--cv-cream);
  font-size: 1rem;
  padding: 1.15rem 1.8rem;
  margin-top: 0.5rem;
}
.cv-book .cv-btn-primary:hover { background: var(--cv-terracotta-deep); }

.cv-form-foot {
  font-size: 0.8rem;
  color: var(--cv-muted);
  margin: 1rem 0 0;
  text-align: center;
}
.cv-form-foot a { color: var(--cv-teal); }

.cv-book-form-wrap label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cv-ink);
  margin-bottom: 0.4rem;
}
.cv-book-form-wrap label small { color: var(--cv-terracotta); }
.cv-book-form-wrap .form-control {
  border: 1px solid rgba(28,32,36,0.15);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--cnvs-body-font);
  font-size: 0.95rem;
  color: var(--cv-ink);
  background: #fff;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.cv-book-form-wrap .form-control:focus {
  border-color: var(--cv-terracotta);
  box-shadow: 0 0 0 3px rgba(226, 92, 42, 0.15);
  outline: none;
}
.cv-book-form-wrap .form-control::placeholder { color: var(--cv-muted); }

@media (max-width: 991.98px) {
  .cv-book-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 575.98px) {
  .cv-book-form-wrap { padding: 1.6rem 1.4rem; }
}

/* ───── FOOTER (vibrant brand colour block) ───── */
#footer.cv-footer {
  background: #1d0e07;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(226,92,42,0.12), transparent 60%),
    linear-gradient(180deg, #1d0e07 0%, #0e0805 100%);
  --cnvs-footer-bg: #1d0e07;
  --cnvs-footer-top-border: 1px solid rgba(251,243,230,0.06);
  --cnvs-copyrights-link-color: rgba(251,243,230,0.55);
  color: rgba(251,243,230,0.85);
  padding-top: 5rem;
}
#footer.cv-footer a { color: rgba(251,243,230,0.85); }
#footer.cv-footer a:hover { color: var(--cv-terracotta); }
.cv-footer-brand .footer-logo { max-width: 130px; height: auto; margin-bottom: 1.4rem; }
.cv-footer-tag {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(251,243,230,0.7);
  margin-bottom: 1.5rem;
  max-width: 36ch;
}
.cv-footer-contact > div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  padding: 0.45rem 0;
  color: rgba(251,243,230,0.65);
}
.cv-footer-contact i {
  color: var(--cv-terracotta);
  margin-top: 2px;
  font-size: 1rem;
}
.cv-footer-h {
  font-family: var(--cnvs-body-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cv-cream);
  margin-bottom: 1.3rem;
}
.cv-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-footer ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.cv-footer ul li a {
  text-decoration: none;
  transition: color 180ms var(--ease-out), padding-left 180ms var(--ease-out);
}
.cv-footer ul li a:hover { padding-left: 4px; }

.cv-footer-social {
  display: flex;
  gap: 0.7rem;
}
.cv-footer-social li { padding: 0 !important; }
.cv-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251,243,230,0.2);
  border-radius: 50%;
  font-size: 1.05rem;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.cv-footer-social a:hover {
  background: var(--cv-terracotta);
  border-color: var(--cv-terracotta);
  color: var(--cv-cream);
}

#copyrights {
  margin-top: 3rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(251,243,230,0.08);
  background: transparent;
  font-size: 0.85rem;
  color: rgba(251,243,230,0.6);
}
#copyrights a {
  color: rgba(251,243,230,0.85);
  text-decoration: none;
}
#copyrights a:hover { color: var(--cv-terracotta); }

/* ───── header on transparent ───── */
.cv-card, .cv-stay-feature, .cv-getting-card { cursor: pointer; }

/* ───── reveal animations (subtle) ───── */
@media (prefers-reduced-motion: no-preference) {
  .cv-section-head, .cv-card, .cv-food-card, .cv-when-month, .cv-getting-card,
  .cv-bleed-text, .cv-split-img, .cv-comp-lead, .cv-stay-feature, .cv-book-lead,
  .cv-book-form-wrap {
    opacity: 0;
    transform: translateY(16px);
    animation: cv-rise 700ms var(--ease-out) forwards;
  }
  @keyframes cv-rise {
    to { opacity: 1; transform: translateY(0); }
  }
  .cv-card { animation-delay: 120ms; }
  .cv-when-month:nth-child(2) { animation-delay: 80ms; }
  .cv-when-month:nth-child(3) { animation-delay: 160ms; }
  .cv-getting-card:nth-child(2) { animation-delay: 80ms; }
  .cv-getting-card:nth-child(3) { animation-delay: 160ms; }
  .cv-comp-side .cv-stay-feature { animation-delay: 80ms; }
  .cv-comp-side-2 .cv-stay-feature:nth-child(2) { animation-delay: 160ms; }
}

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

/* slight focus rings for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cv-terracotta);
  outline-offset: 3px;
}

/* utility — prevent masonry from bleeding */
.cv-card-img { display: block; }
.cv-stay-img, .cv-bleed-img, .cv-split-img, .cv-food-img { display: block; }

.content-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .cv-intro .row.gx-5,
  .cv-activity-split .row.gx-5,
  #footer.cv-footer .row.gx-5 { --bs-gutter-x: 1.5rem; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .cv-footer-social { flex-wrap: wrap; }
}
