/* ============================================
   MACHU PICCHU TOURS — SHARED STYLESHEET
   Andean Premium · v1.0
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --navy: #1a2540;
  --navy-dark: #0f1729;
  --navy-mid: #2a3656;
  --gold: #c9a64a;
  --gold-bright: #d9b85a;
  --gold-dark: #a78a3a;
  --cream: #faf7f0;
  --cream-warm: #f4ead6;
  --ink: #1a2540;
  --ink-soft: #4a5570;
  --stone: #8a8578;
  --line: rgba(26, 37, 64, 0.12);
  --success: #2d6e4e;
  --warn: #b87333;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 40px; height: 1px; background: var(--gold); }

em.serif-em { font-style: italic; color: var(--gold); font-weight: 400; }

/* LAYOUT */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(64px, 9vw, 110px) 0; }

/* ANNOUNCEMENT BAR */
.announce {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.announce strong { color: var(--gold); letter-spacing: 0.12em; }
.announce span { opacity: 0.85; }

/* NAV */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex; align-items: baseline;
}
.brand .dot { color: var(--gold); font-size: 1.7rem; line-height: 1; padding: 0 2px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--cream);
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-burger { display: none; width: 32px; height: 32px; position: relative; }
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--navy);
  position: absolute; left: 5px; transition: 0.3s;
}
.nav-burger span:nth-child(1) { top: 10px; }
.nav-burger span:nth-child(2) { top: 16px; }
.nav-burger span:nth-child(3) { top: 22px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 520px) {
  .nav-cta { padding: 10px 14px; font-size: 0.68rem; letter-spacing: 0.12em; }
  .brand { font-size: 1.25rem; }
}

/* BREADCRUMBS */
.crumbs {
  background: var(--cream);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.crumbs-inner {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
.crumbs a { color: var(--stone); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold); }
.crumbs span.sep { margin: 0 12px; color: var(--gold); }
.crumbs span.current { color: var(--navy); }

/* BUTTONS */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--cream);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-ghost {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1.5px solid var(--gold);
  transition: color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--gold-dark); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  background: var(--gold);
  color: var(--navy);
  transition: all 0.25s;
}
.btn-wa:hover { background: var(--cream); transform: translateY(-2px); }
.btn-email {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1.5px solid rgba(250, 247, 240, 0.35);
  color: var(--cream);
  transition: all 0.25s;
}
.btn-email:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
.footer {
  background: var(--navy-dark);
  color: rgba(250, 247, 240, 0.75);
  padding: 72px 0 32px;
  font-family: var(--sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-brand .dot { color: var(--gold); font-size: 1.9rem; padding: 0 2px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer h4 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul li { padding: 7px 0; font-size: 0.88rem; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(250, 247, 240, 0.5);
}
.footer-bottom a:not(:last-child)::after { content: '·'; margin: 0 10px; color: rgba(250, 247, 240, 0.3); }

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.25s;
  font-size: 26px;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   TOUR DETAIL PAGE STYLES
   ============================================ */

/* HERO */
.tour-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.tour-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 166, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 166, 74, 0.08), transparent 60%);
}
.tour-hero::after {
  content: attr(data-numeral);
  position: absolute;
  top: 60px;
  right: -30px;
  font-family: var(--serif);
  font-size: 28vw;
  font-style: italic;
  color: rgba(201, 166, 74, 0.05);
  line-height: 0.85;
  pointer-events: none;
  font-weight: 400;
}
.tour-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .tour-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.tour-hero .eyebrow { color: var(--gold); margin-bottom: 28px; }
.tour-hero h1 {
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 24px;
}
.tour-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-hero-lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
}

.tour-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(250, 247, 240, 0.18);
  border-bottom: 1px solid rgba(250, 247, 240, 0.18);
}
@media (max-width: 540px) {
  .tour-hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.tour-hero-meta-item {
  font-family: var(--sans);
}
.tour-hero-meta-item small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.tour-hero-meta-item strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  font-style: italic;
  line-height: 1.2;
}

.tour-hero-cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.tour-hero-cta-row .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.tour-hero-cta-row .btn-primary:hover {
  background: var(--cream);
}
.tour-hero-cta-row .btn-ghost-light {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1.5px solid var(--gold);
}

/* HERO VISUAL */
.tour-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.tour-hero-image {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  overflow: hidden;
  display: flex; align-items: flex-end; padding: 36px;
  border: 1px solid rgba(201, 166, 74, 0.25);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
}
.tour-hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 35%, rgba(201, 166, 74, 0.28), transparent 55%);
}
.tour-hero-image::after {
  content: attr(data-icon);
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 28vw, 280px);
  color: rgba(250, 247, 240, 0.18);
  line-height: 1;
}
.tour-hero-image-tag {
  position: absolute; top: 24px; left: 24px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.tour-hero-image-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.tour-hero-image-caption {
  position: relative; z-index: 2;
  color: var(--cream);
}
.tour-hero-image-caption h3 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 500;
}
.tour-hero-image-caption h3 em { font-style: italic; color: var(--gold-bright); }

.tour-hero-stamp {
  position: absolute;
  top: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 22px;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  z-index: 3;
  transform: rotate(3deg);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.3);
}
.tour-hero-stamp em {
  display: block;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  margin-top: 2px;
}

/* OVERVIEW & HIGHLIGHTS */
.tour-overview { background: var(--cream); padding: clamp(64px, 8vw, 100px) 0; }
.tour-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}
@media (max-width: 920px) { .tour-overview-grid { grid-template-columns: 1fr; gap: 48px; } }
.tour-overview-left .eyebrow { margin-bottom: 20px; }
.tour-overview-left h2 { margin-bottom: 24px; }
.tour-overview-left h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-overview-left p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.tour-overview-quote {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream-warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--navy);
}

.tour-highlights {
  background: #fff;
  padding: 32px;
}
.tour-highlights .eyebrow { margin-bottom: 24px; }
.tour-highlights h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--navy);
}
.tour-highlights h3 em { font-style: italic; color: var(--gold); }
.tour-highlights ul {
  margin-bottom: 0;
}
.tour-highlights li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.tour-highlights li:last-child { border-bottom: none; }
.tour-highlights li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ITINERARY */
.tour-itinerary { background: var(--cream-warm); padding: clamp(72px, 9vw, 110px) 0; }
.tour-itinerary-head { text-align: center; margin-bottom: 64px; }
.tour-itinerary-head .eyebrow { margin-bottom: 20px; }
.tour-itinerary-head h2 { margin-bottom: 16px; }
.tour-itinerary-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-itinerary-head p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.tour-days {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.tour-days::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--gold);
  opacity: 0.4;
}
@media (max-width: 600px) { .tour-days::before { left: 19px; } }

.tour-day {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}
@media (max-width: 600px) {
  .tour-day { grid-template-columns: 40px 1fr; gap: 20px; }
}
.tour-day-num {
  width: 56px; height: 56px;
  background: var(--cream-warm);
  border: 2px solid var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .tour-day-num { width: 40px; height: 40px; font-size: 0.95rem; }
}
.tour-day-content {
  background: #fff;
  padding: 28px 32px;
  flex: 1;
}
@media (max-width: 600px) {
  .tour-day-content { padding: 20px 22px; }
}
.tour-day-content .day-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.tour-day-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.tour-day-content h3 em { font-style: italic; color: var(--gold); }
.tour-day-content p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.tour-day-content p:last-child { margin-bottom: 0; }
.tour-day-content ul.day-bullets {
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.tour-day-content ul.day-bullets li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  display: flex;
  gap: 10px;
}
.tour-day-content ul.day-bullets li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
}
.tour-day-content .day-meals {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.tour-day-content .day-meals strong { color: var(--navy); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; margin-right: 8px; }
.tour-day-content .day-meals span { display: inline-block; margin-right: 14px; }

/* INCLUDES / NOT INCLUDES */
.tour-includes { background: var(--cream); padding: clamp(64px, 8vw, 100px) 0; }
.tour-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) { .tour-includes-grid { grid-template-columns: 1fr; gap: 32px; } }
.tour-includes-col {
  background: #fff;
  padding: 36px;
}
.tour-includes-col h3 {
  font-size: 1.55rem;
  margin-bottom: 24px;
  color: var(--navy);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: baseline; gap: 10px;
}
.tour-includes-col h3 em { font-style: italic; color: var(--gold); }
.tour-includes-col h3 .col-icon {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.tour-includes-col.excludes h3 .col-icon { color: var(--warn); }
.tour-includes-col.excludes h3 { border-bottom-color: var(--warn); }
.tour-includes-col ul li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex; gap: 14px; align-items: flex-start;
}
.tour-includes-col ul li:last-child { border-bottom: none; }
.tour-includes-col.includes ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.tour-includes-col.excludes ul li::before {
  content: '✕';
  color: var(--warn);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* PRICING */
.tour-pricing { background: var(--navy); color: var(--cream); padding: clamp(72px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.tour-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201, 166, 74, 0.15), transparent 50%);
}
.tour-pricing .wrap { position: relative; z-index: 2; }
.tour-pricing-head { text-align: center; margin-bottom: 56px; }
.tour-pricing-head .eyebrow { color: var(--gold); margin-bottom: 20px; }
.tour-pricing-head h2 { color: var(--cream); margin-bottom: 16px; }
.tour-pricing-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-pricing-head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250, 247, 240, 0.75);
  max-width: 620px;
  margin: 0 auto;
}

.tour-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 920px) { .tour-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tour-pricing-grid { grid-template-columns: 1fr; } }
.tour-price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 166, 74, 0.25);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.tour-price-card:hover { background: rgba(201, 166, 74, 0.08); transform: translateY(-4px); }
.tour-price-card.featured {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.tour-price-card.featured::before {
  content: 'Most Booked';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
}
.tour-price-card .group-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.tour-price-card.featured .group-label { color: var(--navy); opacity: 0.7; }
.tour-price-card .group-size {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.tour-price-card .price-value {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-bright);
}
.tour-price-card.featured .price-value { color: var(--navy); }
.tour-price-card .price-suffix {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.75;
}

.tour-pricing-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(250, 247, 240, 0.65);
}

/* CTA INLINE */
.tour-cta-inline {
  background: var(--cream-warm);
  padding: clamp(56px, 7vw, 90px) 0;
  text-align: center;
}
.tour-cta-inline h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 24px; }
.tour-cta-inline h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-cta-inline p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}
.tour-cta-inline .cta-buttons {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.tour-cta-inline .btn-wa-alt {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  background: var(--navy);
  color: var(--cream);
  transition: all 0.25s;
}
.tour-cta-inline .btn-wa-alt:hover { background: var(--gold); color: var(--navy); }

/* FAQ */
.tour-faq { background: #fff; padding: clamp(64px, 9vw, 110px) 0; }
.tour-faq-head { text-align: center; margin-bottom: 56px; }
.tour-faq-head .eyebrow { margin-bottom: 20px; }
.tour-faq-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-faq-list { max-width: 880px; margin: 0 auto; }
.tour-faq-item { border-bottom: 1px solid var(--line); }
.tour-faq-item:first-child { border-top: 1px solid var(--line); }
.tour-faq-q {
  width: 100%; text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  cursor: pointer;
}
.tour-faq-q:hover { color: var(--gold-dark); }
.tour-faq-q::-webkit-details-marker { display: none; }
.tour-faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s;
}
.tour-faq-item[open] .tour-faq-icon {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
  transform: rotate(45deg);
}
.tour-faq-a {
  padding: 0 0 28px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 780px;
}

/* RELATED TOURS */
.tour-related {
  background: var(--cream);
  padding: clamp(64px, 9vw, 110px) 0;
}
.tour-related-head { text-align: center; margin-bottom: 56px; }
.tour-related-head .eyebrow { margin-bottom: 20px; }
.tour-related-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.tour-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 920px) { .tour-related-grid { grid-template-columns: 1fr; gap: 20px; } }
.tour-related-card {
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}
.tour-related-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -25px rgba(26,37,64,0.25); }
.tour-related-card .rel-img {
  aspect-ratio: 5/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative;
}
.tour-related-card .rel-img::after {
  content: attr(data-icon);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: rgba(201, 166, 74, 0.4);
}
.tour-related-card .rel-body { padding: 22px 24px 26px; }
.tour-related-card .rel-meta {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.tour-related-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.tour-related-card h3 em { font-style: italic; color: var(--gold); }
.tour-related-card .rel-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tour-related-card .rel-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 500;
}
.tour-related-card .rel-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.tour-related-card .rel-arrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   CONTENT PAGES (About, Contact, Legal, Article)
   ============================================ */

/* PAGE HERO (lighter than tour hero) */
.page-hero {
  background: var(--cream-warm);
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: attr(data-bigtext);
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--serif);
  font-size: 22vw;
  font-style: italic;
  color: rgba(201, 166, 74, 0.07);
  line-height: 0.85;
  pointer-events: none;
  font-weight: 400;
  text-transform: lowercase;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 880px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero-lede {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
}

/* PAGE CONTENT BODY */
.page-body {
  background: var(--cream);
  padding: clamp(56px, 7vw, 90px) 0;
}
.page-body-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-body p {
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}
.page-body p.lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.page-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 56px 0 20px;
  color: var(--navy);
}
.page-body h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--navy);
}
.page-body h3 em { font-style: italic; color: var(--gold); }
.page-body ul, .page-body ol {
  margin: 20px 0 24px;
  padding-left: 0;
}
.page-body ul li, .page-body ol li {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink);
  padding: 8px 0 8px 28px;
  position: relative;
}
.page-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
  top: 12px;
}
.page-body ol { counter-reset: ol-counter; }
.page-body ol li { counter-increment: ol-counter; }
.page-body ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  top: 13px;
}
.page-body strong { color: var(--navy); font-weight: 600; }
.page-body em { font-style: italic; }
.page-body a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  transition: all 0.2s;
}
.page-body a:hover { color: var(--gold); border-bottom-color: var(--ink); }
.page-body blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--cream-warm);
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--navy);
}
.page-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
  font-weight: 700;
}

/* CALLOUT BOX (key info, warnings) */
.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  font-family: var(--serif);
}
.callout.warning { border-left-color: var(--warn); }
.callout.success { border-left-color: var(--success); }
.callout-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.callout.warning .callout-label { color: var(--warn); }
.callout.success .callout-label { color: var(--success); }
.callout p { margin-bottom: 0; font-size: 1.05rem; }
.callout p + p { margin-top: 12px; }

/* DATA TABLE (great for GEO citations) */
.data-table {
  margin: 32px 0;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.92rem;
  background: #fff;
  border: 1px solid var(--line);
}
.data-table thead { background: var(--navy); color: var(--cream); }
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.data-table th {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.data-table tbody tr:hover { background: var(--cream-warm); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table td.center { text-align: center; }
.data-table td.gold { color: var(--gold-dark); font-weight: 700; }

/* COMPARISON GRID (for vs articles) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: #fff;
  padding: 28px;
  border-top: 3px solid var(--gold);
}
.compare-card h4 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--navy);
}
.compare-card h4 em { font-style: italic; color: var(--gold); }
.compare-card .compare-list {
  margin: 0;
  padding: 0;
}
.compare-card .compare-list li {
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 10px 0 10px 24px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.compare-card .compare-list li:last-child { border-bottom: none; }
.compare-card .compare-list li::before {
  content: '·';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 8px;
  font-size: 1.4rem;
  top: 4px;
}

/* ARTICLE META */
.article-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta strong { color: var(--navy); font-weight: 700; }

/* SHARE / FOOTER OF ARTICLE */
.article-foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 600px) { .article-foot { grid-template-columns: 1fr; } }
.article-foot-author {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
}
.article-foot-author strong { color: var(--navy); font-style: normal; font-weight: 600; }
.article-foot-share {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

/* RELATED ARTICLES / NEXT */
.related-articles {
  background: var(--cream-warm);
  padding: clamp(56px, 7vw, 90px) 0;
}
.related-articles-head { text-align: center; margin-bottom: 48px; }
.related-articles-head .eyebrow { margin-bottom: 18px; }
.related-articles-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 900px) { .related-articles-grid { grid-template-columns: 1fr; } }
.related-article-card {
  background: #fff;
  padding: 28px;
  transition: all 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-article-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(26,37,64,0.2); }
.related-article-card .ra-tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.related-article-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--navy);
}
.related-article-card h3 em { font-style: italic; color: var(--gold); }
.related-article-card p {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.related-article-card .ra-arrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}

/* TABLE OF CONTENTS */
.toc {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 28px;
  margin: 36px 0;
}
.toc-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.toc ol { margin: 0; padding: 0; counter-reset: toc-counter; }
.toc ol li {
  counter-increment: toc-counter;
  padding: 7px 0 7px 32px;
  position: relative;
  border-bottom: none;
  font-family: var(--serif);
  font-size: 1.02rem;
}
.toc ol li::before {
  content: counter(toc-counter, lower-roman) ".";
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
}
.toc a {
  color: var(--navy);
  border-bottom: none;
}
.toc a:hover { color: var(--gold); }

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 { margin-bottom: 28px; }
.contact-info h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.contact-channel {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.contact-channel-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-channel-value a { color: inherit; border-bottom: none; }
.contact-channel-value a:hover { color: var(--gold); }
.contact-channel-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

.contact-form-wrap {
  background: #fff;
  padding: 36px;
  border: 1px solid var(--line);
}
.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.contact-form-wrap h3 em { font-style: italic; color: var(--gold); }
.contact-form-wrap p.form-intro {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }
.form-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}

/* TEAM GRID (About page) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-member {
  background: #fff;
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}
.team-member-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-member-name em { font-style: italic; color: var(--gold); }
.team-member-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.team-member-bio {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* CERTS BADGES */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0;
}
@media (max-width: 700px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-badge {
  background: var(--cream-warm);
  padding: 24px 18px;
  text-align: center;
}
.cert-icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.cert-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

/* PRICING BREAKDOWN */
.pricing-breakdown {
  background: #fff;
  border: 1px solid var(--line);
  margin: 32px 0;
  overflow: hidden;
}
.pricing-breakdown-head {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.pricing-breakdown-head em { font-style: italic; color: var(--gold-bright); }
.pricing-breakdown-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  gap: 24px;
}
.pricing-breakdown-row:last-child { border-bottom: none; }
.pricing-breakdown-row.total {
  background: var(--cream-warm);
  font-weight: 600;
}
.pricing-breakdown-label {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.05rem;
}
.pricing-breakdown-label small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 3px;
}
.pricing-breakdown-amount {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.pricing-breakdown-row.total .pricing-breakdown-amount {
  color: var(--gold-dark);
  font-size: 1.5rem;
}

/* BLOG LISTING */
.blog-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}
@media (max-width: 760px) { .blog-listing { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  padding: 32px;
  border-top: 3px solid var(--gold);
  transition: all 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(26,37,64,0.22); }
.blog-card .bc-meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.2;
}
.blog-card h3 em { font-style: italic; color: var(--gold); }
.blog-card p {
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.blog-card .bc-arrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
