:root {
  --green-deep: #1a3d2b;
  --green-mid: #2d6a4f;
  --green-emerald: #40916c;
  --green-light: #74c69d;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf8f3;
  --warm-white: #f7f5ef;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #7a7a7a;
  --border: rgba(26,61,43,0.11);
  --shadow-sm: 0 2px 18px rgba(26,61,43,0.07);
  --shadow-md: 0 8px 40px rgba(26,61,43,0.13);
  --shadow-lg: 0 20px 80px rgba(26,61,43,0.19);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* ── BRAND LOGO ── */
.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
.brand-logo-sm {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
}
.brand-logo-footer {
  display: block;
  height: 60px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 96px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}
#site-nav.scrolled {
  background: rgba(250,248,243,.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(26,61,43,.06);
}
.nav-logo-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; line-height: 1;
}
.nav-logo-btn .brand-logo {
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
#site-nav.scrolled .nav-logo-btn .brand-logo {
  filter: none;
}


.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.88);
  background: none; border: none; cursor: pointer; font-family: inherit;
  transition: color .3s; white-space: nowrap;
}
#site-nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold); }
#site-nav.scrolled .nav-links a:hover { color: var(--green-emerald); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  padding: 9px 20px !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  transition: background .3s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  box-shadow: var(--shadow-md); min-width: 200px; padding: 7px 0; z-index: 300;
  margin-top: 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; width: 100%; padding: 10px 18px; text-align: left;
  font-size: .78rem; font-weight: 500; color: var(--text-mid) !important;
  text-transform: none !important; letter-spacing: .02em !important;
  text-decoration: none !important;
  border-left: 3px solid transparent;
  transition: all .15s;
  font-family: 'Raleway', sans-serif;
}
.nav-dropdown-menu a:hover { border-left-color: var(--green-emerald); background: var(--warm-white); color: var(--green-deep) !important; }
.nav-dropdown-menu button {
  display: block; width: 100%; padding: 9px 16px; text-align: left;
  font-size: .78rem; font-weight: 500; color: var(--text-mid) !important;
  text-transform: none !important; letter-spacing: .02em !important;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.nav-dropdown-menu button:hover { border-left-color: var(--green-emerald); background: var(--warm-white); color: var(--green-deep) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.9); border-radius: 2px; transition: background .4s; }
#site-nav.scrolled .hamburger span { background: var(--green-deep); }
.mob-menu {
  display: none; position: fixed; top: 96px; left: 0; right: 0;
  background: var(--cream); padding: 20px 5vw 36px;
  box-shadow: var(--shadow-md); z-index: 199;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - 96px); overflow-y: auto;
}
.mob-menu.open { display: block; }
.mob-menu a {
  text-decoration: none;
  display: block; width: 100%; text-align: left; padding: 12px 0;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--green-deep); background: none; border: none;
  border-bottom: 1px solid var(--border); cursor: pointer;
}
.mob-menu a.sub { font-size: .8rem; font-weight: 500; padding-left: 16px; color: var(--text-mid); text-transform: none; letter-spacing: .02em; }
.mob-menu a:last-child { border-bottom: none; }

/* ── SHARED COMPONENTS ── */
.section-eyebrow {
  font-size: .71rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--green-emerald); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after { content: ''; display: block; width: 30px; height: 1px; background: var(--green-emerald); }
.eyebrow-light { color: var(--gold-light) !important; }
.eyebrow-light::after { background: var(--gold-light) !important; }
.eyebrow-center { justify-content: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.18;
  color: var(--green-deep); margin-bottom: 16px;
}
.section-desc { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text-muted); max-width: 560px; letter-spacing: .01em; }

.btn-gold {
  background: var(--gold); color: var(--green-deep);
  padding: 15px 32px; border-radius: 2px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
.btn-ghost {
  background: transparent; color: #fff;
  padding: 15px 32px; border-radius: 2px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.5); cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .3s, background .3s, transform .2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-green {
  background: var(--green-deep); color: #fff;
  padding: 15px 32px; border-radius: 2px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, transform .2s;
  box-shadow: 0 4px 20px rgba(26,61,43,.25);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }

.form-input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 2px;
  font-family: inherit; font-size: .88rem; font-weight: 500;
  color: var(--text-dark); background: #fff; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form-input:focus { border-color: var(--green-emerald); box-shadow: 0 0 0 3px rgba(64,145,108,.1); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-color: #fff;
}
.form-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 6px; }
.form-group { margin-bottom: 16px; }

.breadcrumb { padding: 110px 5vw 0; font-size: .74rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.breadcrumb button { background: none; border: none; color: var(--green-emerald); font-size: .74rem; font-weight: 600; cursor: pointer; font-family: inherit; padding: 0; }
.breadcrumb button:hover { color: var(--green-deep); }

.email-strip { background: var(--green-deep); padding: 64px 5vw; text-align: center; }
.email-strip-inner { max-width: 580px; margin: 0 auto; }
.email-strip h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.email-strip p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 24px; line-height: 1.75; }
.email-strip-form { display: flex; gap: 10px; flex-wrap: wrap; }
.email-strip-form .form-input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; flex: 1; min-width: 180px; }
.email-strip-form .form-input::placeholder { color: rgba(255,255,255,.45); }
.email-strip-form .form-input:focus { border-color: var(--gold); box-shadow: none; }
.email-strip-form button { background: var(--gold); color: var(--green-deep); border: none; padding: 14px 22px; border-radius: 2px; font-family: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .3s; }
.email-strip-form button:hover { background: var(--gold-light); }

.affiliate-box { background: var(--warm-white); border: 2px dashed var(--border); border-radius: 4px; padding: 24px; text-align: center; }
.affiliate-box p { font-size: .82rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }
.affiliate-box strong { color: var(--green-mid); }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: .1s; } .fd2 { transition-delay: .18s; } .fd3 { transition-delay: .26s; } .fd4 { transition-delay: .34s; } .fd5 { transition-delay: .42s; }

/* ── FOOTER ── */
.site-footer { background: var(--green-deep); padding: 64px 5vw 30px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 18px; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.42); text-decoration: none; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { text-decoration: none; font-size: .84rem; color: rgba(255,255,255,.52); background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; transition: color .3s; text-align: left; line-height: 1.6; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.26); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { text-decoration: none; font-size: .72rem; color: rgba(255,255,255,.26); background: none; border: none; cursor: pointer; font-family: inherit; transition: color .3s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; padding: 44px 36px; max-width: 380px; width: 90%; border-radius: 4px; text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.modal-icon { width: 58px; height: 58px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2.5; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 10px; }
.modal-text { color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; font-size: .88rem; }
.modal-close { background: var(--green-deep); color: #fff; border: none; padding: 12px 28px; border-radius: 2px; font-family: inherit; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }

/* ══════════════════════════════════════
   PAGE: HOME
══════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(8,24,14,.74) 0%, rgba(22,52,35,.48) 50%, rgba(8,20,12,.8) 100%),
    url('cobh-hero.png') center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero-content { position: relative; z-index: 2; padding: 140px 5vw 88px; max-width: 860px; animation: heroFadeUp 1.2s cubic-bezier(.22,1,.36,1) both; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow-text {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow-text::before, .hero-eyebrow-text::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900; line-height: 1.05;
  color: #fff; margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.88); line-height: 1.75;
  margin-bottom: 36px; max-width: 600px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-social-proof {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}
.hero-social-proof-stars { color: var(--gold); letter-spacing: 2px; font-size: .88rem; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.38); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite; pointer-events: none;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.38)); }

/* Trust bar */
.trust-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 16px 5vw; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 600; letter-spacing: .05em; color: var(--text-mid); }
.trust-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: var(--border); }

/* Free Guide CTA */
.home-guide { padding: 92px 5vw; background: var(--warm-white); }
.guide-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guide-book-vis {
  width: 100%; max-width: 310px;
  aspect-ratio: 3/4;
  background: linear-gradient(140deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-radius: 6px;
  box-shadow: var(--shadow-lg), -10px 10px 0 rgba(201,168,76,.22);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px; text-align: center; position: relative; overflow: hidden;
}
.guide-book-vis::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,168,76,.22); border-radius: 3px; pointer-events: none; }
.guide-book-badge { background: var(--gold); color: var(--green-deep); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 18px; z-index: 1; }
.guide-book-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--gold-light); line-height: 1; z-index: 1; }
.guide-book-sub-label { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-top: 4px; margin-bottom: 13px; z-index: 1; }
.guide-book-title-txt { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.2; z-index: 1; }
.guide-perk { display: flex; align-items: flex-start; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .83rem; color: var(--text-mid); line-height: 1.5; }
.guide-perk:last-of-type { border-bottom: none; }
.guide-perk svg { width: 15px; height: 15px; flex-shrink: 0; fill: var(--green-emerald); margin-top: 2px; }

/* Destinations */
.home-destinations { padding: 92px 5vw; background: var(--cream); }
.dest-header { margin-bottom: 48px; }
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.dest-tile {
  position: relative; border-radius: 4px; overflow: hidden;
  cursor: pointer; display: block; aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.dest-tile:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-lg); }
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.dest-tile:hover img { transform: scale(1.06); }
.dest-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,18,.9) 0%, rgba(10,30,18,.05) 55%, transparent 100%); }
.dest-tile-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
.dest-tile-tag { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.dest-tile-name { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; color: #fff; line-height: 1.15; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.dest-tile-cta { display: flex; align-items: center; gap: 5px; margin-top: 8px; font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s; }
.dest-tile:hover .dest-tile-cta { opacity: 1; transform: translateY(0); }
.dest-tile-cta svg { width: 10px; height: 10px; }
/* Extended destinations row */
.dest-grid-ext { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 14px; }
.dest-tile-sm { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; aspect-ratio: 16/9; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.dest-tile-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-tile-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-tile-sm:hover img { transform: scale(1.06); }
.dest-tile-sm-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,18,.82) 0%, transparent 60%); }
.dest-tile-sm-info { position: absolute; bottom: 0; left: 0; padding: 12px 14px; }
.dest-tile-sm-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.dest-tile-sm-tag { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }

/* Why Ireland */
.home-why { padding: 92px 5vw; background: var(--warm-white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.why-img-stack { position: relative; }
.why-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-lg); }
.why-img-inset { position: absolute; bottom: -22px; right: -22px; width: 52%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-lg); border: 5px solid var(--warm-white); }
.why-badge { position: absolute; top: -16px; left: -16px; width: 90px; height: 90px; background: var(--green-deep); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; }
.why-badge-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.why-badge-txt { font-size: .48rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); text-align: center; margin-top: 2px; }
.why-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.why-feat { display: flex; gap: 11px; align-items: flex-start; padding: 14px; border: 1px solid var(--border); border-radius: 4px; background: #fff; transition: border-color .3s, box-shadow .3s, transform .3s; }
.why-feat:hover { border-color: var(--green-emerald); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-feat-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.why-feat h4 { font-family: 'Playfair Display', serif; font-size: .88rem; font-weight: 600; color: var(--green-deep); margin-bottom: 3px; }
.why-feat p { font-size: .75rem; color: var(--text-mid); line-height: 1.6; }

/* Future sections */
.future-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 72px 5vw; background: var(--cream); max-width: none; }
.future-card { border: 1px solid var(--border); border-radius: 4px; padding: 28px; background: #fff; transition: box-shadow .3s, transform .3s, border-color .3s; cursor: pointer; }
.future-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-light); }
.future-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.future-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.future-card p { font-size: .8rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.future-card-link { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green-emerald); display: inline-flex; align-items: center; gap: 6px; }
.future-card-link svg { width: 11px; height: 11px; transition: transform .2s; }
.future-card:hover .future-card-link svg { transform: translateX(3px); }

/* About dark */
.home-about { padding: 92px 5vw; background: var(--green-deep); position: relative; overflow: hidden; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; position: relative; }
.about-body-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 20px; }
.about-body-para { font-size: .92rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.58); margin-bottom: 28px; letter-spacing: .01em; }
.about-stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-stat-lbl { font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 3px; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; filter: brightness(.85) saturate(1.1); }
.about-img-frame { position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 1.5px solid var(--gold); border-radius: 4px; opacity: .3; pointer-events: none; }

/* Waitlist */
.home-waitlist { padding: 92px 5vw; text-align: center; background: linear-gradient(135deg, rgba(26,61,43,.95), rgba(45,106,79,.92)), url('cobh-hero.png') center/cover; }
.waitlist-inner { max-width: 640px; margin: 0 auto; }
.waitlist-form { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.waitlist-form .form-input { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); color: #fff; }
.waitlist-form .form-input::placeholder { color: rgba(255,255,255,.4); }
.waitlist-form .form-input:focus { border-color: var(--gold); box-shadow: none; }
.waitlist-form select.form-input option { background: var(--green-deep); }
.waitlist-submit { grid-column: 1/-1; }

/* Social proof */
.home-social { padding: 72px 5vw; background: var(--cream); text-align: center; }
.proof-stats { display: flex; justify-content: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 28px auto; max-width: 680px; flex-wrap: wrap; }
.proof-stat { flex: 1; min-width: 140px; padding: 28px 18px; border-right: 1px solid var(--border); background: var(--warm-white); }
.proof-stat:last-child { border-right: none; }
.proof-stat-n { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--green-deep); line-height: 1; margin-bottom: 6px; }
.proof-stat-n.gold { color: var(--gold); }
.proof-stat-l { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* ══════════════════════════════════════
   DESTINATION PAGES
══════════════════════════════════════ */
.dest-hero { position: relative; height: 70vh; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; }
.dest-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dest-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,18,.88) 0%, rgba(10,30,18,.15) 60%, transparent 100%); }
.dest-hero-content { position: relative; z-index: 2; padding: 0 5vw 50px; }
.dest-hero-tag { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.dest-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 11px; }
.dest-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(.95rem, 1.8vw, 1.25rem); font-style: italic; color: rgba(255,255,255,.8); max-width: 540px; line-height: 1.6; margin-bottom: 22px; }
.dest-hero-btns { display: flex; gap: 11px; flex-wrap: wrap; }

.dest-main-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; max-width: 1200px; margin: 0 auto; padding: 60px 5vw; align-items: start; }
.dest-section-h { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--green-deep); margin-bottom: 20px; margin-top: 44px; }
.why-visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.why-item { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 18px; text-align: center; transition: box-shadow .3s, transform .3s; }
.why-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-item-icon { font-size: 1.4rem; margin-bottom: 8px; }
.why-item h4 { font-family: 'Playfair Display', serif; font-size: .88rem; font-weight: 600; color: var(--green-deep); margin-bottom: 5px; }
.why-item p { font-size: .74rem; color: var(--text-muted); line-height: 1.5; }
.att-card { display: grid; grid-template-columns: 130px 1fr; gap: 18px; margin-bottom: 20px; background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .3s; }
.att-card:hover { box-shadow: var(--shadow-md); }
.att-card img { width: 130px; height: 100px; object-fit: cover; }
.att-body { padding: 16px 16px 16px 0; }
.att-tag { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-emerald); margin-bottom: 4px; }
.att-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--green-deep); margin-bottom: 5px; }
.att-desc { font-size: .8rem; color: var(--text-mid); line-height: 1.65; }
.gems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gem-card { background: var(--green-deep); border-radius: 4px; padding: 22px; transition: transform .3s; }
.gem-card:hover { transform: translateY(-3px); }
.gem-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--gold-light); margin-bottom: 7px; }
.gem-desc { font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.trip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; padding: 24px; background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; }
.trip-grid-item h4 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-emerald); margin-bottom: 7px; }
.trip-grid-item p { font-size: .86rem; color: var(--text-mid); line-height: 1.6; font-weight: 500; }
.sidebar-sticky { position: sticky; top: 110px; }
.sidebar-cta-box { background: var(--green-deep); border-radius: 4px; padding: 24px; margin-bottom: 18px; text-align: center; }
.sidebar-cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; margin-bottom: 7px; }
.sidebar-cta-box p { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.55; margin-bottom: 14px; }
.sidebar-cta-box form { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cta-box .form-input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; padding: 11px 13px; font-size: .82rem; }
.sidebar-cta-box .form-input::placeholder { color: rgba(255,255,255,.4); }
.sidebar-cta-box button { background: var(--gold); color: var(--green-deep); border: none; padding: 11px; border-radius: 2px; font-family: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.sidebar-info { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 20px; margin-bottom: 18px; }
.sidebar-info h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-info p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 11px; }
.sidebar-info a { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-emerald); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }
.related-section { padding: 60px 5vw; background: var(--warm-white); border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.rel-card { border-radius: 4px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rel-card:hover img { transform: scale(1.05); }
.rel-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,18,.82) 0%, transparent 55%); }
.rel-card-info { position: absolute; bottom: 0; left: 0; padding: 16px; }
.rel-card-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.rel-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }

/* ══════════════════════════════════════
   ITINERARY PAGE
══════════════════════════════════════ */
.itin-main { max-width: 1140px; margin: 0 auto; padding: 60px 5vw; display: grid; grid-template-columns: 1fr 290px; gap: 52px; align-items: start; }
.overview-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 22px; background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; margin-bottom: 40px; }
.ov-item { text-align: center; }
.ov-icon { font-size: 1.3rem; margin-bottom: 5px; }
.ov-label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.ov-val { font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 600; color: var(--green-deep); }
.route-bar { background: var(--green-deep); border-radius: 4px; padding: 20px 22px; margin-bottom: 32px; }
.route-bar h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; }
.route-stops { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.route-city { font-size: .78rem; font-weight: 700; color: #fff; padding: 5px 10px; background: rgba(255,255,255,.1); border-radius: 2px; }
.route-arrow { color: var(--gold); padding: 0 4px; font-size: .76rem; }
.day-card { margin-bottom: 28px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: #fff; }
.day-header { display: grid; grid-template-columns: 64px 1fr; background: var(--green-deep); }
.day-num-col { background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 0; }
.day-num-label { font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); }
.day-num-val { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--green-deep); line-height: 1; }
.day-header-text { padding: 14px 18px; }
.day-location { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }
.day-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.25; }
.day-body { padding: 22px; }
.day-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.day-tag { background: rgba(64,145,108,.1); color: var(--green-mid); padding: 4px 10px; border-radius: 20px; font-size: .72rem; font-weight: 600; border: 1px solid rgba(64,145,108,.2); }
.day-desc { font-size: .87rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.day-tip { background: var(--warm-white); border-left: 3px solid var(--gold); padding: 12px 14px; border-radius: 0 2px 2px 0; margin-bottom: 12px; }
.day-tip h4 { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.day-tip p { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }
.day-stay { display: flex; align-items: center; gap: 9px; padding: 10px 12px; background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; font-size: .78rem; color: var(--text-mid); margin-top: 12px; }
.itin-sidebar-sticky { position: sticky; top: 110px; }
.itin-sidebar-cta { background: var(--green-deep); border-radius: 4px; padding: 24px; margin-bottom: 18px; text-align: center; }
.itin-sidebar-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; margin-bottom: 7px; }
.itin-sidebar-cta p { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.55; margin-bottom: 14px; }
.itin-sidebar-cta form { display: flex; flex-direction: column; gap: 8px; }
.itin-sidebar-cta .form-input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; padding: 11px 13px; font-size: .82rem; }
.itin-sidebar-cta .form-input::placeholder { color: rgba(255,255,255,.4); }
.itin-sidebar-cta button { background: var(--gold); color: var(--green-deep); border: none; padding: 11px; border-radius: 2px; font-family: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.sidebar-links { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 18px; margin-bottom: 18px; }
.sidebar-links h4 { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-emerald); margin-bottom: 12px; }
.sidebar-links a { text-decoration: none; display: block; width: 100%; text-align: left; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: .82rem; color: var(--text-mid); background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; font-family: inherit; transition: color .2s; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--green-deep); }

/* ══════════════════════════════════════
   PLAN MY TRIP
══════════════════════════════════════ */
.plan-hero { position: relative; min-height: 58vh; display: flex; align-items: center; overflow: hidden; }
.plan-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,25,16,.9) 0%, rgba(26,61,43,.78) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover; }
.plan-hero-content { position: relative; z-index: 2; padding: 124px 5vw 64px; max-width: 740px; animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) both; }
.plan-hero-tag { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.plan-hero-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.plan-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.plan-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(.95rem, 1.7vw, 1.25rem); font-style: italic; color: rgba(255,255,255,.8); line-height: 1.65; max-width: 560px; margin-bottom: 22px; }
.plan-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.plan-badge { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 5px 13px; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.85); }
.plan-main { max-width: 1060px; margin: 0 auto; padding: 64px 5vw; display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1/-1; }
.interest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 7px; }
.interest-item { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 2px; cursor: pointer; font-size: .8rem; color: var(--text-mid); transition: border-color .2s, background .2s; }
.interest-item:hover { border-color: var(--green-emerald); background: rgba(64,145,108,.05); }
.interest-item input { accent-color: var(--green-emerald); width: 14px; height: 14px; flex-shrink: 0; }
.plan-submit { grid-column: 1/-1; width: 100%; padding: 17px; background: var(--green-deep); color: #fff; border: none; border-radius: 2px; font-family: inherit; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .3s, transform .2s; box-shadow: 0 4px 18px rgba(26,61,43,.28); }
.plan-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
.plan-note { grid-column: 1/-1; font-size: .7rem; color: var(--text-muted); text-align: center; }
.why-us-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.why-us-num { width: 38px; height: 38px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--gold); }
.why-us-text h4 { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 600; color: var(--green-deep); margin-bottom: 3px; }
.why-us-text p { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }
.testimonial-box { background: var(--green-deep); border-radius: 4px; padding: 22px; margin-bottom: 20px; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 12px; }
.testimonial-author { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; }
.services-list-box { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.services-list-box h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 14px; }
.service-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .82rem; color: var(--text-mid); }
.service-row:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   FREE GUIDE
══════════════════════════════════════ */
.guide-hero { min-height: 100vh; background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-emerald) 100%); display: flex; align-items: center; padding: 124px 5vw 64px; position: relative; overflow: hidden; }
.guide-hero::before { content: ''; position: absolute; inset: 0; background: url('cobh-hero.png') center/cover; opacity: .1; }
.guide-hero-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.guide-3d { perspective: 800px; display: flex; justify-content: center; }
.guide-book-wrap { width: 260px; transform: rotateY(-15deg) rotateX(5deg); animation: bookFloat 4s ease-in-out infinite alternate; }
@keyframes bookFloat { from{transform:rotateY(-15deg) rotateX(5deg) translateY(0)} to{transform:rotateY(-10deg) rotateX(3deg) translateY(-12px)} }
.guide-book-cover { width: 260px; aspect-ratio: 3/4; background: linear-gradient(135deg,#1a3d2b,#2d6a4f); border-radius: 4px 8px 8px 4px; box-shadow: -8px 12px 40px rgba(0,0,0,.5); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; position: relative; overflow: hidden; }
.guide-book-cover::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 16px; background: rgba(0,0,0,.28); border-radius: 4px 0 0 4px; }
.guide-book-cover::after { content: ''; position: absolute; inset: 9px; border: 1px solid rgba(201,168,76,.28); border-radius: 2px; }
.guide-badge { background: var(--gold); color: var(--green-deep); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; z-index: 1; }
.guide-cover-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: var(--gold-light); line-height: 1; z-index: 1; }
.guide-cover-label { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-top: 4px; margin-bottom: 11px; z-index: 1; }
.guide-cover-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; z-index: 1; }
.guide-cover-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-top: 14px; z-index: 1; }
.guide-form-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.guide-form-eyebrow::after { content: ''; display: block; width: 26px; height: 1px; background: var(--gold-light); }
.guide-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.guide-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(.95rem, 1.7vw, 1.2rem); font-style: italic; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 22px; }
.guide-include { display: flex; align-items: flex-start; gap: 9px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.guide-include:last-of-type { border-bottom: none; }
.guide-include-icon { font-size: .88rem; flex-shrink: 0; margin-top: 2px; }
.guide-include-text { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.guide-include-text strong { color: rgba(255,255,255,.92); }
.guide-signup-box { background: rgba(255,255,255,.09); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.16); border-radius: 4px; padding: 26px; margin-top: 24px; }
.guide-signup-box h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.guide-signup-box p { font-size: .76rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.guide-signup-form { display: flex; flex-direction: column; gap: 9px; }
.guide-signup-form .form-input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; padding: 12px 15px; }
.guide-signup-form .form-input::placeholder { color: rgba(255,255,255,.4); }
.guide-signup-form .form-input:focus { border-color: var(--gold); box-shadow: none; }
.guide-signup-btn { background: var(--gold); color: var(--green-deep); border: none; padding: 14px; border-radius: 2px; font-family: inherit; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .3s; }
.guide-signup-btn:hover { background: var(--gold-light); }
.guide-privacy { font-size: .68rem; color: rgba(255,255,255,.36); text-align: center; margin-top: 9px; }
.guide-inside { padding: 72px 5vw; background: var(--warm-white); }
.inside-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.inside-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 22px; transition: box-shadow .3s, transform .3s; }
.inside-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.inside-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: rgba(64,145,108,.14); line-height: 1; margin-bottom: 9px; }
.inside-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 7px; }
.inside-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }
.places-preview { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 28px; }
.place-pill { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; padding: 10px 12px; text-align: center; font-size: .76rem; font-weight: 600; color: var(--green-deep); transition: background .3s, border-color .3s, color .3s; cursor: default; }
.place-pill:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }

/* ══════════════════════════════════════
   ABOUT / CONTACT
══════════════════════════════════════ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1040px; margin: 0 auto; padding: 72px 5vw; }
.about-body h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 18px; }
.about-body p { font-size: .92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.about-stats-band { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; max-width: 1040px; margin: 0 5vw; }
.about-stat-cell { padding: 32px 20px; text-align: center; background: var(--warm-white); border-right: 1px solid var(--border); }
.about-stat-cell:last-child { border-right: none; }
.about-stat-big { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--green-deep); line-height: 1; margin-bottom: 7px; }
.about-stat-big.gold { color: var(--gold); }
.about-stat-lbl { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.mission-band { background: var(--green-deep); padding: 52px 5vw; text-align: center; }
.mission-band h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.mission-band p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: rgba(255,255,255,.78); line-height: 1.8; max-width: 620px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 64px 5vw; max-width: 1040px; margin: 0 auto; }
.value-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 26px; transition: box-shadow .3s, transform .3s; }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 1.7rem; margin-bottom: 11px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 7px; }
.value-card p { font-size: .79rem; color: var(--text-muted); line-height: 1.6; }
.contact-wrap { max-width: 880px; margin: 0 auto; padding: 100px 5vw 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-icon-wrap { width: 40px; height: 40px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-form-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 30px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-grid-ext { grid-template-columns: repeat(3, 1fr); }
  .future-sections { grid-template-columns: repeat(2, 1fr); }
  .dest-main-layout { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .itin-main { grid-template-columns: 1fr; }
  .itin-sidebar-sticky { position: static; }
  .plan-main { grid-template-columns: 1fr; }
  .guide-hero-inner { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats-band { grid-template-columns: 1fr; }
  .about-stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .guide-inner { grid-template-columns: 1fr; }
}

@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #site-nav { height: 76px; align-items: center; overflow: visible; background: rgba(250,248,243,.97); box-shadow: 0 1px 0 var(--border); }
  .nav-logo-btn { display: flex; align-items: center; overflow: visible; }
  .brand-logo { display: block; height: 46px; width: auto; max-width: none; }
  .mob-menu { top: 76px; max-height: calc(100vh - 76px); }
  .dest-grid { grid-template-columns: 1fr 1fr !important; }
  .dest-grid-ext { grid-template-columns: 1fr 1fr !important; }
  .future-sections { grid-template-columns: 1fr; padding: 56px 4vw; }
  .why-layout { grid-template-columns: 1fr; gap: 44px; }
  .why-img-inset { display: none; }
  .why-features { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-gold, .btn-ghost, .btn-green { width: 100%; justify-content: center; }
  .proof-stats { flex-direction: column; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .why-visit-grid { grid-template-columns: 1fr 1fr; }
  .gems-grid { grid-template-columns: 1fr; }
  .trip-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .places-preview { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-column: 1; display: block; }
  .values-grid .value-card { margin-bottom: 16px; }
  .email-strip-form { flex-direction: column; }
  .dest-hero-btns { flex-direction: column; }
  .waitlist-form { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .overview-bar { grid-template-columns: repeat(2,1fr); }
  .home-guide .guide-inner { grid-template-columns: 1fr; }
}
@media(max-width:500px) {
  .dest-grid { grid-template-columns: 1fr !important; }
  .dest-grid-ext { grid-template-columns: 1fr 1fr !important; }
  .why-visit-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
  .places-preview { grid-template-columns: repeat(2, 1fr); }
  #site-nav { height: 72px; align-items: center; overflow: visible; }
  .nav-logo-btn { display: flex; align-items: center; overflow: visible; }
  .brand-logo { display: block; height: 44px; width: auto; max-width: none; }
  .mob-menu { top: 72px; max-height: calc(100vh - 72px); }
}
@media(max-width:480px) {
  #site-nav { height: 68px; align-items: center; overflow: visible; }
  .nav-logo-btn { display: flex; align-items: center; overflow: visible; }
  .brand-logo { display: block; height: 42px; width: auto; max-width: none; }
  .mob-menu { top: 68px; max-height: calc(100vh - 68px); }
  .hero-content { padding: 88px 4vw 56px; }
  .breadcrumb { padding: 74px 4vw 0; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .dest-grid { grid-template-columns: 1fr !important; }
  .dest-grid-ext { grid-template-columns: 1fr 1fr !important; }
  .dest-tile { aspect-ratio: 4/3; }
  .trust-bar { gap: 12px; padding: 12px 4vw; }
  .trust-item { font-size: .7rem; }
  .trust-divider { display: none; }
  .home-guide, .home-destinations, .home-why, .home-social { padding: 64px 4vw; }
  .future-sections { padding: 48px 4vw; }
  .guide-book-vis { max-width: 220px; margin: 0 auto; }
  .about-stats-row { gap: 18px; }
  .proof-stats { flex-direction: column; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .att-card { grid-template-columns: 1fr; }
  .att-card img { width: 100%; height: 160px; }
  .dest-hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .overview-bar { grid-template-columns: repeat(2,1fr); }
  .email-strip { padding: 48px 4vw; }
  .site-footer { padding: 48px 4vw 24px; }
}

/* ══════════════════════════════════════
   WHERE-TO-STAY CONTENT PAGES (multi-file build)
══════════════════════════════════════ */
.stay-main { max-width: 1180px; margin: 0 auto; padding: 56px 5vw 20px; display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.stay-article { min-width: 0; }
.stay-article > h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; color: var(--green-deep); margin: 48px 0 18px; line-height: 1.2; }
.stay-article > h2:first-child { margin-top: 0; }
.stay-article > h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--green-deep); margin: 30px 0 10px; }
.stay-article p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
.stay-article a.inline-link { color: var(--green-emerald); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(64,145,108,.3); transition: color .2s, border-color .2s; }
.stay-article .aff-pending { color: var(--text-dark); font-weight: 700; }
.stay-article .route-map { margin: 36px 0; text-align: center; }
.stay-article .route-map img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,.12); display: block; }
.stay-article .route-map figcaption { margin-top: 12px; font-size: .92rem; color: var(--text-muted, #6a6a6a); font-style: italic; }
.stay-article a.inline-link:hover { color: var(--green-deep); border-color: var(--green-deep); }
.stay-article ul { margin: 0 0 20px; padding-left: 22px; }
.stay-article ul li { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 8px; }
.stay-article ul li strong { color: var(--green-deep); }
.about-hero-photo { margin: 0 0 28px; }
.about-hero-photo img { display: block; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.about-hero-photo figcaption { margin-top: 12px; font-family: 'Raleway', sans-serif; font-size: .88rem; line-height: 1.55; color: var(--green-deep); opacity: .78; font-style: italic; text-align: center; padding: 0 12px; }
.about-hero-placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; aspect-ratio: 16/10; background: repeating-linear-gradient(45deg, rgba(26,59,43,.06), rgba(26,59,43,.06) 12px, rgba(26,59,43,.03) 12px, rgba(26,59,43,.03) 24px); border: 2px dashed rgba(26,59,43,.3); color: var(--green-deep); font-family: 'Raleway', sans-serif; font-weight: 600; text-align: center; padding: 20px; }
.about-hero-placeholder small { font-weight: 400; opacity: .75; }

/* Quick-answer snippet box */
.quick-answer { background: var(--warm-white); border-left: 4px solid var(--gold); border-radius: 0 4px 4px 0; padding: 22px 26px; margin-bottom: 14px; }
.quick-answer .qa-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-emerald); margin-bottom: 8px; }
.quick-answer p { font-size: 1.02rem; line-height: 1.8; color: var(--text-dark); margin-bottom: 0; }
.quick-answer strong { color: var(--green-deep); }

/* Top affiliate disclosure (small) */
.aff-disclosure-sm { font-size: .76rem; font-style: italic; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }

/* Area / base cards */
.area-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 24px 26px; margin-bottom: 16px; transition: box-shadow .3s, transform .3s, border-color .3s; }
.area-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.area-card h3 { font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.area-card .area-best { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.area-card p { font-size: .95rem; line-height: 1.75; margin-bottom: 12px; }
.area-picks { list-style: none; margin: 0; padding: 0; }
.area-picks li { padding: 8px 0; border-top: 1px solid var(--border); font-size: .92rem; line-height: 1.6; color: var(--text-mid); }
.area-picks li strong { color: var(--green-deep); }
.area-route-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-emerald); text-decoration: none; }
.area-route-link:hover { color: var(--green-deep); }

/* Hotel tier blocks */
.tier-block { margin-bottom: 22px; }
.tier-label { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); background: var(--gold-light); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.hotel-list { list-style: none; margin: 0; padding: 0; }
.hotel-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .95rem; line-height: 1.6; color: var(--text-mid); }
.hotel-list li:last-child { border-bottom: none; }
.hotel-list .htl-name { font-weight: 700; color: var(--green-deep); }
.hotel-list .htl-pin { flex-shrink: 0; color: var(--gold); font-weight: 700; }

/* Affiliate CTA button (real link) */
.aff-cta { display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: var(--green-deep); padding: 15px 30px; border-radius: 2px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; margin: 14px 0 8px; box-shadow: 0 4px 20px rgba(201,168,76,.35); transition: background .3s, transform .2s, box-shadow .3s; }
.aff-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
.aff-cta.green { background: var(--green-deep); color: #fff; box-shadow: 0 4px 20px rgba(26,61,43,.25); }
.aff-cta.green:hover { background: var(--green-mid); }
.aff-cta.coming-soon { background: #d9d6cc; color: #6b6b63; cursor: not-allowed; box-shadow: none; pointer-events: none; }
.aff-cta.coming-soon:hover { background: #d9d6cc; transform: none; box-shadow: none; }

/* Tours list */
.tours-list { list-style: none; margin: 8px 0 0; padding: 0; }
.tours-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .95rem; line-height: 1.6; color: var(--text-mid); }
.tours-list li:last-child { border-bottom: none; }
.tours-list .tour-name { font-weight: 700; color: var(--green-deep); }
.tours-list .tour-pin { flex-shrink: 0; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .95rem; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.compare-table th { background: var(--green-deep); color: #fff; text-align: left; padding: 13px 16px; font-family: 'Raleway', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.compare-table td { padding: 12px 16px; border-top: 1px solid var(--border); color: var(--text-mid); line-height: 1.5; }
.compare-table tr:nth-child(even) td { background: var(--warm-white); }
.compare-table td:last-child { font-weight: 700; color: var(--green-deep); }

/* FAQ */
.faq-block { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 7px; }
.faq-a { font-size: .95rem; line-height: 1.8; color: var(--text-mid); margin: 0; }

/* Cross-link cards (internal linking block) */
.crosslink-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.crosslink-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 18px 20px; text-decoration: none; transition: box-shadow .3s, transform .3s, border-color .3s; }
.crosslink-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-light); }
.crosslink-card .cl-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.crosslink-card .cl-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* Sidebar (reuses existing sidebar styles where possible) */
.stay-sidebar { position: sticky; top: 116px; }
@media(max-width:1100px) {
  .stay-main { grid-template-columns: 1fr; gap: 32px; }
  .stay-sidebar { position: static; }
  .crosslink-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .compare-table { font-size: .86rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ============== AT A GLANCE RATINGS ============== */
.at-a-glance {
  background: var(--cream);
  border: 1px solid rgba(26,59,43,0.1);
  border-left: 4px solid var(--gold);
  padding: 24px 30px;
  margin: 36px 0;
  border-radius: 4px;
}
.at-a-glance .qa-label { margin-bottom: 8px; }
.aag-blurb {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.aag-rows { display: flex; flex-direction: column; }
.aag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,59,43,0.08);
}
.aag-row:last-child { border-bottom: none; }
.aag-cat {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.aag-stars {
  font-size: 1.05rem;
  letter-spacing: 3px;
  font-family: serif;
}
.aag-stars .filled { color: var(--gold); }
.aag-stars .empty { color: rgba(26,59,43,0.18); }
@media (max-width: 500px) {
  .at-a-glance { padding: 20px 22px; }
  .aag-cat { font-size: 0.88rem; }
  .aag-stars { font-size: 0.95rem; letter-spacing: 2px; }
}

/* Live tour links (untracked pre-approval; data-aff preserved for affiliate swap) */
.tours-list a.tour-link, .stay-article a.tour-link { text-decoration: underline; text-decoration-color: rgba(201,168,76,.55); text-decoration-thickness: 2px; text-underline-offset: 3px; transition: text-decoration-color .2s; }
.tours-list a.tour-link:hover, .stay-article a.tour-link:hover { text-decoration-color: var(--gold); }
a.tour-link .tour-name { color: var(--green-deep); font-weight: 700; }
