/* ============================================================
   TRETIAKOV IN ATHENS — Guide Detail Page Styles
   Clean, premium, editorial. No emojis. Brand-consistent.
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.guide-detail-hero {
  background: var(--color-blue, #17579B);
  padding: 120px 0 60px;
  overflow: hidden;
}
.guide-detail-hero-inner {
  display: block;
}

/* Hide cover image panel on guide pages — image shown only in catalog */
.guide-detail-cover {
  display: none !important;
}

/* Cover image panel — hidden on guide pages */
.guide-detail-cover {
  display: none;
}
.guide-cover-bg {
  position: absolute;
  inset: 0;
  background: #17579B;
  background-image: radial-gradient(circle, rgba(245,242,238,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
}
/* Blurred backdrop — fills empty space around the poster */
.guide-cover-blur {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) brightness(0.65) saturate(1.4);
  transform: scale(1.05);
  z-index: 1;
  pointer-events: none;
}
/* Main poster — fills full hero panel */
.guide-cover-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* SVG doodle accent on cover */
.guide-cover-doodle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  opacity: 0.32;
  pointer-events: none;
}

/* Content panel — full width, no image */
.guide-detail-content {
  padding: 48px 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #F5F2EE;
  max-width: 720px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,242,238,0.52);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(245,242,238,0.52);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: rgba(245,242,238,0.88); }
.breadcrumb-sep { color: rgba(245,242,238,0.28); }

/* Eyebrow */
.guide-detail-eyebrow {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC5628;
  margin-bottom: 14px;
}

/* Title */
.guide-detail-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #F5F2EE;
  line-height: 1.08;
  margin-bottom: 16px;
}

/* Promise line */
.guide-detail-promise {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,242,238,0.78);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Meta row */
.guide-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 28px;
}
.guide-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,242,238,0.72);
  letter-spacing: 0.02em;
}
.meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #CC5628;
}
.meta-icon svg { width: 14px; height: 14px; }

/* CTA group */
.guide-detail-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

/* ── BODY ─────────────────────────────────────────────────── */
.guide-body {
  background: #F5F2EE;
  padding: 80px 0 100px;
}
.guide-body-inner {
  max-width: 800px;
}

/* Section headers */
.guide-section-label {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC5628;
  margin-bottom: 10px;
}
.guide-section-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #17579B;
  line-height: 1.15;
  margin-bottom: 16px;
}
.guide-section-body {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.78;
  color: #444;
  max-width: 640px;
}
.guide-section-body p { margin-bottom: 16px; }
.guide-section-body p:last-child { margin-bottom: 0; }

/* ── IMPORTANT NOTICE BLOCK ─────────────────────────────── */
.guide-notice {
  background: #fff;
  border-left: 3px solid #17579B;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-bottom: 48px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guide-notice-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #17579B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.guide-notice-icon svg { width: 14px; height: 14px; }
.guide-notice-label {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17579B;
  margin-bottom: 6px;
}
.guide-notice-text {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}
/* Island-guide notice: no icon, just inline text */
.guide-notice > strong:first-child {
  color: #17579B;
}
.guide-notice p,
.guide-notice > strong ~ * {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
/* When guide-notice has no .guide-notice-icon, allow text to flow naturally */
.guide-notice:not(:has(.guide-notice-icon)) {
  display: block;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #444;
}

/* ── OVERVIEW BLOCK ─────────────────────────────────────── */
.guide-overview {
  margin-bottom: 56px;
}

/* ── WHAT'S INSIDE LIST ──────────────────────────────────── */
.guide-inside-section {
  margin-bottom: 56px;
}
.guide-inside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guide-inside-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,87,155,0.1);
}
.guide-inside-item:first-child {
  border-top: 1px solid rgba(23,87,155,0.1);
}
.guide-inside-bullet {
  flex-shrink: 0;
  margin-top: 2px;
  color: #CC5628;
}
.guide-inside-bullet svg { width: 16px; height: 16px; }
.guide-inside-title {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.guide-inside-desc {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.84rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

/* ── ISLANDS GRID (for Islands Guide) ───────────────────── */
.guide-islands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(23,87,155,0.12);
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0 48px;
}
.guide-island-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(23,87,155,0.1);
  background: #fff;
  gap: 12px;
}
.guide-island-row:nth-child(odd) { background: #fcfaf7; }
.guide-island-row:last-child,
.guide-island-row:nth-last-child(-n+2) { border-bottom: none; }
.guide-island-name {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: #17579B;
}
.guide-island-count {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
  white-space: nowrap;
}
.guide-island-desc {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.78rem;
  font-weight: 300;
  color: #666;
  line-height: 1.45;
  flex: 1;
  padding: 0 8px;
}

/* ── WHY BLOCK ────────────────────────────────────────────── */
.guide-why-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 56px;
  border: 1px solid rgba(23,87,155,0.1);
}
.guide-why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.guide-why-tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(122,148,54,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #7A9436;
}
.guide-why-tick svg { width: 11px; height: 11px; }
.guide-why-text {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* ── WHO IT'S FOR ─────────────────────────────────────────── */
.guide-for-section {
  margin-bottom: 56px;
}
.guide-for-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-for-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(23,87,155,0.1);
}
.guide-for-dash {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #17579B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-for-dash svg { width: 12px; height: 12px; }
.guide-for-text {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  color: #333;
}

/* ── WINTER CATEGORIES ────────────────────────────────────── */
.guide-winter-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 48px;
}
.guide-winter-cat {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(23,87,155,0.1);
}
.guide-winter-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.guide-winter-cat-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: 1.35rem;
  font-weight: 700;
  color: #17579B;
}
.guide-winter-cat-count {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #CC5628;
  background: rgba(204,86,40,0.08);
  border-radius: 20px;
  padding: 3px 12px;
}
.guide-winter-cat-desc {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
}

/* ── DIVIDERS ─────────────────────────────────────────────── */
.guide-divider {
  width: 100%;
  height: 1px;
  background: rgba(23,87,155,0.12);
  margin: 56px 0;
  position: relative;
}
.guide-divider-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F5F2EE;
  padding: 0 16px;
  color: rgba(23,87,155,0.25);
}
.guide-divider-deco svg { width: 20px; height: 20px; }

/* ── PULL QUOTE ───────────────────────────────────────────── */
.guide-pull-quote {
  padding: 32px 40px;
  border-left: 3px solid #CC5628;
  margin: 48px 0;
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.guide-pull-quote p {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  color: #17579B;
  line-height: 1.4;
  margin: 0;
}

/* ── CTA BLOCK ────────────────────────────────────────────── */
.guide-cta-block {
  background: #17579B;
  border-radius: 18px;
  padding: 52px 56px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.guide-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,242,238,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.guide-cta-eyebrow {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.5);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.guide-cta-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #F5F2EE;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.guide-cta-sub {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245,242,238,0.68);
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.guide-cta-block .btn { position: relative; z-index: 1; }

/* ── RELATED GUIDES ───────────────────────────────────────── */
.guide-related {
  margin-bottom: 16px;
}
.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.guide-related-card {
  display: block;
  padding: 22px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(23,87,155,0.1);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.guide-related-card:hover {
  border-color: #17579B;
  box-shadow: 0 4px 18px rgba(23,87,155,0.1);
}
.guide-related-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: #17579B;
  opacity: 0.6;
}
.guide-related-icon svg { width: 100%; height: 100%; }
.guide-related-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.2;
}
.guide-related-meta {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
}

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(23,87,155,0.12);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mobile-cta-label {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .guide-detail-hero {
    padding: 100px 0 48px;
  }
  .guide-detail-content {
    padding: 32px 0 40px;
  }
  .guide-cta-block {
    padding: 40px 28px;
  }
  .guide-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-why-section { padding: 28px 24px; }
  .guide-islands-grid { grid-template-columns: 1fr; }
  .guide-island-row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(23,87,155,0.1); }
  .guide-island-row:last-child { border-bottom: none; }
  .sticky-mobile-cta { display: flex; }
}
@media (max-width: 600px) {
  .guide-detail-hero {
    padding: 90px 0 40px;
  }
  .guide-body { padding: 56px 0 80px; }
  .guide-related-grid { grid-template-columns: 1fr; }
  .guide-pull-quote { padding: 24px 22px; }
  .guide-notice { padding: 16px 18px; }
  .guide-winter-cat { padding: 20px 18px; }
}

/* ─────────────────────────────────────────────────────────────
   ISLAND & CITY GUIDE LAYOUT — content grid + sidebar
   Used by: corfu, santorini, mykonos, saronic, big-crete,
            thessaloniki guide pages
   ───────────────────────────────────────────────────────── */

/* Two-column layout: main content + sidebar */
.guide-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-main-content {
  min-width: 0;
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
.guide-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sidebar CTA block (different from the inline .guide-cta-block) */
.guide-sidebar .guide-cta-block {
  background: #17579B;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.guide-sidebar .guide-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,242,238,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.guide-cta-price-row {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.guide-cta-label {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F2EE;
  line-height: 1.2;
}
.guide-cta-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.guide-cta-meta span {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245,242,238,0.68);
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-cta-meta span i {
  color: #CC5628;
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.guide-sidebar .guide-cta-block .btn {
  position: relative;
  z-index: 1;
}

/* Sidebar related guides */
.guide-sidebar .guide-related {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid rgba(23,87,155,0.1);
}
.guide-related-title {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CC5628;
  margin-bottom: 14px;
}
.guide-sidebar .guide-related-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}
.guide-sidebar .guide-related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(23,87,155,0.1);
  background: #fcfaf7;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.guide-sidebar .guide-related-card:hover {
  border-color: #17579B;
  box-shadow: 0 2px 12px rgba(23,87,155,0.1);
}
.guide-sidebar .guide-related-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.guide-sidebar .guide-related-card span {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}

/* ── SECTION BLOCKS ──────────────────────────────────────── */
.guide-section-block {
  margin-bottom: 36px;
}
.guide-section-lead {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: #555;
  max-width: 660px;
  margin-top: 10px;
}

/* ── ISLAND GUIDE: why-section used as category block ────── */
.guide-why-section {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid rgba(23,87,155,0.1);
  margin-bottom: 0;
}
.guide-why-title {
  font-family: var(--font-display, 'Caveat', cursive);
  font-size: 1.45rem;
  font-weight: 700;
  color: #17579B;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Island rows inside category blocks */
.island-name {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 140px;
}
.island-count {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: #CC5628;
  background: rgba(204,86,40,0.08);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.island-desc {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  flex: 1;
  padding-left: 12px;
}

/* ── CHECKLIST ──────────────────────────────────────────── */
.guide-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(23,87,155,0.08);
}
.guide-checklist li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(122,148,54,0.12);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%237A9436' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l2.5 2.5 5.5-5'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── FINAL CTA SECTION ──────────────────────────────────── */
.guide-final-cta {
  background: #17579B;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.guide-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,242,238,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.guide-final-cta .container {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE: island guide layout ────────────────────── */
@media (max-width: 1024px) {
  .guide-content-grid {
    grid-template-columns: 1fr 300px;
    gap: 28px;
  }
}
@media (max-width: 860px) {
  .guide-content-grid {
    grid-template-columns: 1fr;
  }
  .guide-sidebar {
    position: static;
    /* Show sidebar CTA before related on mobile */
  }
  .guide-sidebar .guide-related-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .guide-sidebar .guide-related-card {
    flex: 1 1 calc(50% - 5px);
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .guide-content-grid {
    gap: 20px;
  }
  .guide-sidebar .guide-related-grid {
    flex-direction: column;
  }
  .guide-sidebar .guide-related-card {
    flex: unset;
  }
  .guide-why-section {
    padding: 18px 16px;
  }
  .guide-why-title {
    font-size: 1.2rem;
  }
  .island-name {
    min-width: 100px;
  }
  .island-desc {
    display: none;
  }
}

/* ── FOOTER (guide pages) ─────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 20px; }
}
.footer-brand-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  color: var(--cream, #F5F2EE);
  margin-bottom: 8px;
}
.footer-brand-tagline {
  font-size: 0.82rem;
  color: rgba(245,242,238,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,242,238,0.1);
  color: rgba(245,242,238,0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover {
  background: rgba(245,242,238,0.22);
  color: #fff;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(245,242,238,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
