/* ============================================================
   Heissa Artie — main stylesheet
   ============================================================
   Hand-written. No build step (Rule 12).
   The bulk of the global layout, components, and per-page
   sections are added in Phase 4 and Phase 5. This file starts
   with the design-token :root block, copied verbatim from the
   approved mockup so every later port shares the same tokens.
   ============================================================ */


/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-bg: #FFFFFF;
  --color-sand: #FAF6EE;
  --color-sand-deep: #F2EADA;
  --color-nubian-blue: #1B4F8C;
  --color-nubian-blue-deep: #14406F;
  --color-warm-yellow: #F4C430;
  --color-warm-yellow-deep: #E0AE1A;
  --color-nubian-red: #D64545;
  --color-nubian-red-deep: #B53737;
  --color-nubian-orange: #E8893A;
  --color-nubian-green: #4A8B2C;
  --color-nubian-turq: #2BB3B3;

  --color-text: #14110F;
  --color-text-muted: #5A5550;
  --color-border: #EAE3D2;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1280px;
  --container-narrow: 880px;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(20, 17, 15, 0.06);
  --shadow-md: 0 8px 32px rgba(27, 79, 140, 0.10);
  --shadow-lg: 0 24px 64px rgba(27, 79, 140, 0.16);

  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* ============================================================
   RESET & BASE
   Verbatim from _mockup-reference/index.html lines 90–122.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-variation-settings: "opsz" 14; }
p { color: var(--color-text-muted); }


/* ============================================================
   CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }


/* ============================================================
   BUNTING — colored triangle row decoration
   ============================================================ */
.bunting {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  height: 18px;
  padding: 8px 0;
  background: var(--color-bg);
}
.bunting-flag {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.bunting-flag.up   { border-bottom: 14px solid; }
.bunting-flag.down { border-top: 14px solid; }
.bunting-flag.c1 { border-bottom-color: var(--color-nubian-blue);   border-top-color: var(--color-nubian-blue); }
.bunting-flag.c2 { border-bottom-color: var(--color-warm-yellow);   border-top-color: var(--color-warm-yellow); }
.bunting-flag.c3 { border-bottom-color: var(--color-nubian-red);    border-top-color: var(--color-nubian-red); }
.bunting-flag.c4 { border-bottom-color: var(--color-nubian-green);  border-top-color: var(--color-nubian-green); }
.bunting-flag.c5 { border-bottom-color: var(--color-nubian-orange); border-top-color: var(--color-nubian-orange); }
.bunting-flag.c6 { border-bottom-color: var(--color-nubian-turq);   border-top-color: var(--color-nubian-turq); }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.header.scrolled { border-bottom-color: var(--color-border); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-nubian-blue);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-warm-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav a:hover { color: var(--color-nubian-blue); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-switcher:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-nubian-red);
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(214, 69, 69, 0.25);
}
.btn-cta:hover {
  background: var(--color-nubian-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 69, 69, 0.35);
}

.menu-toggle { display: none; color: var(--color-text); }


/* ============================================================
   BREADCRUMB
   The partial sits INSIDE each hero section, so it inherits the hero's
   background. No band of its own. Dark-hero pages override the link
   colors below.
   ============================================================ */
.breadcrumb {
  background: transparent;
  padding: 0 0 24px;
  font-size: 13px;
}
.breadcrumb > .container { padding: 0; max-width: none; }
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb-item { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-item a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--color-nubian-blue); }
.breadcrumb-item.is-current span { color: var(--color-text); font-weight: 500; }
.breadcrumb-sep { color: var(--color-border); }

/* Dark-hero pages: lighten the breadcrumb so it reads against blue. */
.reviews-hero .breadcrumb-list,
.hours-section .breadcrumb-list { color: rgba(255,255,255,0.7); }
.reviews-hero .breadcrumb-item a,
.hours-section .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.reviews-hero .breadcrumb-item a:hover,
.hours-section .breadcrumb-item a:hover { color: var(--color-warm-yellow); }
.reviews-hero .breadcrumb-item.is-current span,
.hours-section .breadcrumb-item.is-current span { color: white; }
.reviews-hero .breadcrumb-sep,
.hours-section .breadcrumb-sep { color: rgba(255,255,255,0.3); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 0 0 32px;
}
.footer .bunting { background: var(--color-text); padding: 16px 0; }
.footer-main {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-about .logo {
  color: white;
  margin-bottom: 24px;
}
.footer-about .logo small { color: rgba(255,255,255,0.6); }
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--color-warm-yellow);
  color: var(--color-text);
  transform: translateY(-2px);
}

.footer h5 {
  font-family: var(--font-display);
  font-size: 16px;
  color: white;
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-warm-yellow); }

.footer-contact-item {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact-item strong {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-contact-item a { color: var(--color-warm-yellow); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--color-warm-yellow); }


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }


/* ============================================================
   MOBILE MENU — slide-in panel
   Phase 4 addition; the mockup ships only the toggle button.
   ============================================================ */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.55);
  backdrop-filter: blur(2px);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 120;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu[hidden] { display: flex; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 28px 28px 32px;
  overflow-y: auto;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-nubian-blue);
  letter-spacing: -0.01em;
}
.mobile-menu-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.mobile-menu-close:hover { background: var(--color-sand); color: var(--color-nubian-blue); }

.mobile-menu-nav { flex: 1; }
.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-list a,
.mobile-menu-list .menu-item a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.mobile-menu-list a:hover { color: var(--color-nubian-blue); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu-cta {
  justify-content: center;
  padding: 16px 24px;
}
.mobile-menu-whatsapp {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 8px 0;
}
.mobile-menu-whatsapp:hover { color: var(--color-nubian-blue); }

/* Lock body scroll while the menu is open. JS toggles this class on <body>. */
body.mobile-menu-open { overflow: hidden; }


/* ============================================================
   ACCESSIBILITY HELPERS
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 100000;
  background: var(--color-nubian-blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--color-warm-yellow);
  outline-offset: 2px;
}


/* ============================================================
   RESPONSIVE — global chrome
   Verbatim from _mockup-reference/index.html lines 1374–1404,
   limited to header/footer rules. Per-page rules added by
   Phase 5 templates under their own section headers.
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .header-actions .lang-switcher { display: none; }
  .header-actions .btn-cta { display: none; }   /* CTA available inside the mobile menu */
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }


/* ============================================================
   PHASE 5+ — per-page sections live below this line, each
   under a /* === {slug} === */ section header.
   ============================================================ */


/* === front-page ===
   Verbatim from _mockup-reference/index.html lines 279–1262.
*/

/* HERO ----------------------------------------------------- */
.hero {
  position: relative;
  background: var(--color-sand);
  overflow: hidden;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-nubian-blue) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-blue);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-nubian-blue);
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-nubian-blue);
  font-weight: 500;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--color-nubian-red);
  margin-bottom: 32px;
  line-height: 1.2;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-nubian-blue);
}
.hero-meta-item span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 720px;
}
.hero-arch {
  position: absolute;
  border-radius: 50% 50% 8px 8px / 40% 40% 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-arch-1 {
  top: 0;
  right: 0;
  width: 420px;
  height: 560px;
  background: linear-gradient(180deg, #F4C430 0%, #E8893A 50%, #D64545 100%);
}
.hero-arch-1::after {
  content: '🌅';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.3;
}
.hero-arch-2 {
  bottom: 0;
  left: 0;
  width: 360px;
  height: 460px;
  background: linear-gradient(180deg, #FFFFFF 0%, #1B4F8C 100%);
  border: 8px solid white;
}
.hero-arch-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.15) 8px, rgba(255,255,255,0.15) 9px),
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px);
}

.hero-decoration {
  position: absolute;
  top: 78%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-decoration svg { width: 70%; height: 70%; }

/* BOOKING BAR ---------------------------------------------- */
.booking-bar {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: -64px;
  position: relative;
  z-index: 5;
  border: 1px solid var(--color-border);
}
.booking-field {
  padding: 12px 16px;
  border-radius: 12px;
  transition: background var(--transition);
}
.booking-field:hover { background: var(--color-sand); }
.booking-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  outline: none;
}
.booking-submit {
  height: 100%;
  padding: 0 32px;
  background: var(--color-nubian-blue);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-submit:hover { background: var(--color-nubian-blue-deep); }

/* SECTIONS — common ---------------------------------------- */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.section-title { margin-bottom: 20px; max-width: 700px; }
.section-title em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.section-lede { font-size: 18px; max-width: 640px; margin-bottom: 64px; }

/* WHY HEISSA — feature row --------------------------------- */
.why {
  background: var(--color-bg);
  padding: 120px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.why-item {
  position: relative;
  padding-top: 24px;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 4px;
  background: var(--color-warm-yellow);
}
.why-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--color-nubian-blue);
}
.why-item h4 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
}
.why-item p { font-size: 15px; line-height: 1.6; }

/* STORY (welcome) ------------------------------------------ */
.story {
  background: var(--color-sand);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.story-visual { position: relative; }
.story-arch {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 12px 12px / 35% 35% 12px 12px;
  background:
    linear-gradient(180deg, rgba(27,79,140,0.1), rgba(244,196,48,0.2)),
    repeating-linear-gradient(45deg, var(--color-sand-deep), var(--color-sand-deep) 20px, var(--color-sand) 20px, var(--color-sand) 40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-arch::after {
  content: '🏛️';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.25;
}
.story-quote {
  position: absolute;
  bottom: -32px;
  right: -24px;
  background: white;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-nubian-blue);
  z-index: 1111;
}
.story-quote::before {
  content: '"';
  position: absolute;
  top: -16px; left: 16px;
  font-size: 80px;
  color: var(--color-warm-yellow);
  line-height: 1;
  font-family: var(--font-display);
}

.story-content h2 { margin-bottom: 32px; }
.story-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.story-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.story-signature .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
}
.story-signature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
}
.story-signature-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ROOMS SECTION -------------------------------------------- */
.rooms-section { background: white; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 48px;
  flex-wrap: wrap;
}
.section-head-left { max-width: 600px; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-nubian-blue);
  font-size: 15px;
  border-bottom: 2px solid var(--color-nubian-blue);
  padding-bottom: 4px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 12px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.room-card {
  background: white;
  transition: transform var(--transition);
}
.room-card:hover { transform: translateY(-8px); }
.room-card-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 12px 12px / 30% 30% 12px 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.room-card-image-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: white;
  font-size: 120px;
  font-weight: 300;
}
.room-card-image.r1 .room-card-image-bg { background: linear-gradient(160deg, #1B4F8C, #14406F); }
.room-card-image.r2 .room-card-image-bg { background: linear-gradient(160deg, #E8893A, #D64545); }
.room-card-image.r3 .room-card-image-bg { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }

.room-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  color: var(--color-nubian-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.room-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.room-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 500;
}
.room-card-desc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.room-card-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-nubian-blue);
}
.room-card-price span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.room-card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-nubian-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.room-card-link:hover { gap: 10px; }

/* EXPERIENCES SECTION -------------------------------------- */
.experiences-section {
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.experiences-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.12;
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 720px;
}
.experience-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: white;
  cursor: pointer;
  transition: transform var(--transition);
}
.experience-card:hover { transform: scale(1.02); }
.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.experience-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.experience-card.featured { grid-row: 1 / 3; background: linear-gradient(160deg, #1B4F8C, #14406F); }
.experience-card.e2 { background: linear-gradient(160deg, #E8893A, #D64545); }
.experience-card.e3 { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
.experience-card.e4 { background: linear-gradient(160deg, #F4C430, #E8893A); }
.experience-card.e5 { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }

.experience-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.experience-card-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.experience-card h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 500;
}
.experience-card.featured h3 { font-size: 40px; }
.experience-card-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  opacity: 0.9;
}
.experience-card-meta span { display: flex; align-items: center; gap: 6px; }

/* DINING TEASER -------------------------------------------- */
.dining {
  background: white;
  padding: 120px 0;
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dining-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4F8C 0%, #14406F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dining-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(244,196,48,0.08) 20px, rgba(244,196,48,0.08) 21px);
}
.dining-visual-emoji {
  font-size: 160px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.dining-visual-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--color-warm-yellow);
  padding: 16px 24px;
  border-radius: 12px;
  z-index: 2;
}
.dining-visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
}
.dining-visual-badge span {
  font-size: 12px;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.dining-content h2 { margin-bottom: 24px; }
.dining-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.dining-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.dining-feature {
  padding: 16px;
  background: var(--color-sand);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dining-feature::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-nubian-red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* REVIEWS RIBBON ------------------------------------------- */
.reviews {
  background: var(--color-nubian-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.1;
}
.reviews .section-eyebrow { color: var(--color-warm-yellow); }
.reviews .section-eyebrow::before { background: var(--color-warm-yellow); }
.reviews h2 { color: white; }
.reviews .section-lede { color: rgba(255,255,255,0.85); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  position: relative;
}
.review-stars {
  color: var(--color-warm-yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.review-author-name strong {
  display: block;
  font-size: 15px;
  color: white;
}
.review-author-name span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.review-platform {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(244,196,48,0.2);
  color: var(--color-warm-yellow);
  border-radius: 999px;
}

/* LOCATION ------------------------------------------------- */
.location {
  background: var(--color-sand);
  padding: 120px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-map {
  position: relative;
  aspect-ratio: 1;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid white;
}
.map-illustration {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, #E8F4F8 0%, #C8DCE8 50%, #E0D4B8 100%);
  position: relative;
  overflow: hidden;
}
.map-river {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 60px;
  background: linear-gradient(90deg, #2BB3B3 0%, #1B4F8C 50%, #2BB3B3 100%);
  transform: translateX(-50%) skewX(-3deg);
  opacity: 0.7;
}
.map-river::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255,255,255,0.3) 12px, rgba(255,255,255,0.3) 14px);
}
.map-island {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 60px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 2;
}
.map-pin {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.map-pin-dot {
  width: 24px;
  height: 24px;
  background: var(--color-nubian-red);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 0 rgba(214,69,69,0.4); }
  50%      { box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 12px rgba(214,69,69,0); }
}
.map-pin-label {
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-nubian-blue);
  white-space: nowrap;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.map-cities {
  position: absolute;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-city-aswan { top: 60%; right: 15%; }
.map-city-west { top: 30%; left: 10%; }

.location-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.location-step {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  align-items: center;
}
.location-step-num {
  width: 40px;
  height: 40px;
  background: var(--color-nubian-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.location-step-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--color-text);
}
.location-step-text span {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* FINAL CTA ------------------------------------------------ */
.final-cta {
  background: white;
  padding: 60px 0 120px;
}
.final-cta-inner {
  background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.2;
}
.final-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%);
  opacity: 0.15;
}
.final-cta h2 {
  color: white;
  margin: 0 auto 20px;
  max-width: 700px;
  position: relative;
}
.final-cta h2 em { color: var(--color-warm-yellow); font-style: italic; }
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
  position: relative;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-cta-large {
  padding: 18px 36px;
  font-size: 15px;
  background: var(--color-nubian-red);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

/* Front-page responsive — verbatim from mockup lines 1377–1402 */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 400px; max-width: 480px; margin: 0 auto; }
  .hero-arch-1 { width: 240px; height: 320px; }
  .hero-arch-2 { width: 200px; height: 260px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .dining-grid, .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .experience-card { min-height: 280px; }
  .experience-card.featured { grid-row: auto; grid-column: 1 / -1; min-height: 360px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 80px; }
  .booking-bar { grid-template-columns: 1fr; gap: 4px; margin-top: -32px; }
  .booking-submit { padding: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .experiences-grid { grid-template-columns: 1fr; }
  .experience-card.featured { grid-column: auto; }
  .final-cta-inner { padding: 48px 32px; }
  .hero-meta { gap: 20px; flex-wrap: wrap; }
}


/* === page-rooms ===
   Verbatim from _mockup-reference/rooms.html lines 235–746 with
   conflict-prone selectors scoped under body.page-template-page-rooms
   so the front-page rooms section retains its right-aligned badge +
   smaller image-bg font.
*/

/* Page hero ----------------------------------------------- */
.page-hero {
  background: var(--color-sand);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.12;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
.page-hero h1 { margin-bottom: 24px; font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.page-hero-lede { font-size: 18px; line-height: 1.6; max-width: 540px; }
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px 32px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.page-hero-stat { display: flex; flex-direction: column; gap: 4px; }
.page-hero-stat strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  line-height: 1;
}
.page-hero-stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Filter chips -------------------------------------------- */
.filter-section { padding: 48px 0 0; background: white; }
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.filter-chip {
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background: white;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-chip:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.filter-chip.active {
  background: var(--color-nubian-blue);
  color: white;
  border-color: var(--color-nubian-blue);
}
.filter-chip-count { font-size: 12px; opacity: 0.7; font-weight: 500; }

/* Rooms grid (page-rooms-only overrides) ------------------ */
body.page-template-page-rooms .rooms-section {
  padding: 64px 0 100px;
  background: white;
}
body.page-template-page-rooms .room-card { display: flex; flex-direction: column; }
body.page-template-page-rooms .room-card-image-bg {
  font-size: 130px;
  letter-spacing: -0.05em;
}
body.page-template-page-rooms .room-card-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(255,255,255,0.06) 12px, rgba(255,255,255,0.06) 13px);
}
body.page-template-page-rooms .room-card-badge {
  /* Push the badge below the 50%/30% top arch curve so the text isn't
     clipped by overflow:hidden on the parent. The mockup's verbatim
     top:24px positions the badge inside the arch — visible bug. */
  top: 64px;
  left: 24px;
  right: auto;
  z-index: 2;
}

/* Rooms-archive room-card-image color variants */
.room-card-image.twin-1 .room-card-image-bg { background: linear-gradient(160deg, #1B4F8C, #14406F); }
.room-card-image.twin-2 .room-card-image-bg { background: linear-gradient(160deg, #2B5FA0, #1B4F8C); }
.room-card-image.twin-3 .room-card-image-bg { background: linear-gradient(160deg, #14406F, #0E2D52); }
.room-card-image.twin-4 .room-card-image-bg { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
.room-card-image.conv-1 .room-card-image-bg { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
.room-card-image.conv-2 .room-card-image-bg { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
.room-card-image.fam-1  .room-card-image-bg { background: linear-gradient(160deg, #E8893A, #D64545); }
.room-card-image.fam-2  .room-card-image-bg { background: linear-gradient(160deg, #F4C430, #E8893A); }
.room-card-image.fam-3  .room-card-image-bg { background: linear-gradient(160deg, #D64545, #B53737); }

/* Sleeps badge (rooms-archive only) */
.room-card-sleeps {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

/* Card meta — rooms-archive uses `·` separators */
body.page-template-page-rooms .room-card-meta {
  gap: 12px;
  flex-wrap: wrap;
}
body.page-template-page-rooms .room-card-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  color: var(--color-border);
}

/* Card title spacing + script-style "deity name" line */
body.page-template-page-rooms .room-card h3 { margin-bottom: 8px; }
.room-card-name {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--color-nubian-red);
  margin-bottom: 12px;
  line-height: 1;
}
body.page-template-page-rooms .room-card-desc {
  margin-bottom: 24px;
  line-height: 1.55;
}
.room-card-amenities {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--color-text-muted);
}
.room-card-amenities svg { width: 18px; height: 18px; }
body.page-template-page-rooms .room-card-footer {
  margin-top: auto;
}

/* Common amenities ---------------------------------------- */
.amenities-section {
  padding: 100px 0;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-nubian-blue) 0%, transparent 70%);
  opacity: 0.05;
}
.amenities-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
/* Centered eyebrow variant — adds `::after` line to mirror `::before` */
.amenities-head .section-eyebrow,
.help-text .section-eyebrow {
  justify-content: center;
}
.amenities-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.amenities-head h2 { margin-bottom: 16px; }
.amenities-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.amenities-head p { font-size: 17px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.amenity {
  background: white;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-warm-yellow);
}
.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-nubian-blue);
}
.amenity-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}
.amenity-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Help block ---------------------------------------------- */
.help-block { padding: 80px 0 120px; background: white; }
.help-inner {
  background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.help-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.18;
}
.help-text { position: relative; z-index: 1; }
.help-text .section-eyebrow {
  color: var(--color-warm-yellow);
  justify-content: flex-start;
}
.help-text .section-eyebrow::before { background: var(--color-warm-yellow); }
.help-text h2 { color: white; margin-bottom: 16px; }
.help-text h2 em { color: var(--color-warm-yellow); font-style: italic; }
.help-text p { color: rgba(255,255,255,0.85); font-size: 17px; }

.help-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.help-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.help-action:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateX(8px);
}
.help-action-icon {
  width: 44px; height: 44px;
  background: var(--color-warm-yellow);
  color: var(--color-text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-action-text strong { display: block; font-size: 16px; }
.help-action-text span { font-size: 13px; opacity: 0.8; font-weight: 400; }

/* Reveal stagger (rooms grid uses 9 cards) ---------------- */
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.10s; }
.reveal-3 { animation-delay: 0.15s; }
.reveal-4 { animation-delay: 0.20s; }
.reveal-5 { animation-delay: 0.25s; }
.reveal-6 { animation-delay: 0.30s; }
.reveal-7 { animation-delay: 0.35s; }
.reveal-8 { animation-delay: 0.40s; }
.reveal-9 { animation-delay: 0.45s; }

/* Page-rooms responsive ----------------------------------- */
@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
  body.page-template-page-rooms .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .help-inner { grid-template-columns: 1fr; padding: 48px 32px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 64px 0 48px; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); padding: 20px 24px; }
  body.page-template-page-rooms .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .help-inner { padding: 32px 24px; border-radius: 20px; }
}


/* === single-room ===
   Verbatim from _mockup-reference/room-101.html lines 184–974.
*/

/* Room hero ----------------------------------------------- */
.room-hero {
  background: var(--color-sand);
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
}
.room-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
}
.room-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.room-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 16px 16px / 30% 30% 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px),
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.03) 15px);
  pointer-events: none;
}
.room-hero-image-num {
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}
.room-hero-image-badge {
  position: absolute;
  /* Anchored to the FLAT bottom-left corner (16px square radius)
     so the badge can never be clipped by the Nubian arch on the
     top edge. Earlier `top: 64px; left: 24px;` still fell inside
     the rounded zone at desktop and cropped the "Sl" of "Sleeps 4"
     (Bug 3a fix). */
  bottom: 24px; left: 24px;
  background: white;
  color: var(--color-nubian-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
/* .room-hero-image-arrows / .room-hero-image-arrow rules removed in
   Bug 3b — the hero is a single CSS background-image, not a carousel,
   so the prev/next buttons had no images to cycle through and no JS
   handler. The gallery thumb strip below + the lightbox (Bug 2 commit)
   cover the "browse photos" need. */

.room-hero-content {
  display: flex;
  flex-direction: column;
}
.room-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
}
.room-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.room-hero h1 {
  margin-bottom: 8px;
  font-weight: 400;
}
.room-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.room-hero-name {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  line-height: 1;
}
.room-hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.room-hero-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.room-hero-quick-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.room-hero-quick-item svg {
  width: 24px; height: 24px;
  color: var(--color-nubian-blue);
  margin-bottom: 8px;
}
.room-hero-quick-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.1;
}
.room-hero-quick-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.room-hero-actions {
  display: flex;
  flex-wrap: wrap;     /* Bug 6 — when price (flex:1) + 2 buttons can't fit one row, secondary wraps below */
  gap: 12px;
  align-items: center;
}
.room-hero-actions > .btn-cta,
.room-hero-actions > .btn-cta-outline { flex-shrink: 0; }  /* Bug 6 — keep buttons single-line; don't let flex:1 price squish them */
.room-price {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-price strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-nubian-blue);
  font-weight: 500;
}
.room-price span {
  font-size: 13px;
  color: var(--color-text-muted);
}
.btn-book-large {
  padding: 16px 32px;
  font-size: 15px;
}

/* Gallery ------------------------------------------------- */
.gallery-section {
  padding: 100px 0;
  background: white;
}
.gallery-head { margin-bottom: 48px; }
.gallery-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-num {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-display);
  color: white;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-num { opacity: 1; }

.gallery-item.g1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #1B4F8C, #14406F); }
.gallery-item.g2 { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
.gallery-item.g3 { background: linear-gradient(160deg, #F4C430, #E8893A); }
.gallery-item.g4 { background: linear-gradient(160deg, #E8893A, #D64545); }
.gallery-item.g5 { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }

.gallery-item-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: 0.3;
}
.gallery-item.g1 .gallery-item-icon { font-size: 120px; opacity: 0.25; }

.gallery-view-all {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  transition: all var(--transition);
}
.gallery-view-all:hover {
  border-color: var(--color-nubian-blue);
  color: var(--color-nubian-blue);
  transform: translateX(4px);
}

/* Room details (description + bed config) ----------------- */
.details-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.details-content h2 { margin-bottom: 24px; }
.details-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.details-content > p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.details-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}
.details-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.details-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.details-feature svg {
  width: 18px; height: 18px;
  color: var(--color-nubian-red);
  flex-shrink: 0;
}

/* Bed config visual */
.bed-config {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.bed-config-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.bed-config-head h3 {
  font-size: 24px;
  margin-bottom: 4px;
}
.bed-config-head p {
  font-size: 14px;
  color: var(--color-text-muted);
}
.bed-config-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-warm-yellow);
  color: var(--color-text);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bed-diagram {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.bed-shape {
  background: var(--color-sand);
  border: 2px solid var(--color-nubian-blue);
  border-radius: 12px;
  padding: 16px 12px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 130px;
  height: 200px;
}
.bed-shape::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 12px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.bed-shape::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background: linear-gradient(180deg, var(--color-warm-yellow) 0%, transparent 100%);
  opacity: 0.2;
  border-radius: 4px;
}
.bed-shape-size {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-nubian-blue);
  white-space: nowrap;
}
.bed-shape-label {
  font-family: var(--font-display);
  font-size: 14px;
  margin-top: 32px;
  color: var(--color-text);
  font-weight: 500;
}
.bed-config-info {
  background: var(--color-sand);
  padding: 20px;
  border-radius: 12px;
  margin-top: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.bed-config-info svg {
  width: 24px; height: 24px;
  color: var(--color-nubian-blue);
  flex-shrink: 0;
}
.bed-config-info p {
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
}

/* In-room amenities --------------------------------------- */
.in-room-section {
  padding: 100px 0;
  background: white;
}
.in-room-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.in-room-head .section-eyebrow { justify-content: center; }
.in-room-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.in-room-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.in-room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.in-room-item {
  background: var(--color-sand);
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition);
}
.in-room-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.in-room-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  color: var(--color-nubian-blue);
}
.in-room-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

/* Booking + policies -------------------------------------- */
.booking-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking-widget {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.booking-widget-head {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.booking-widget-head .section-eyebrow { margin-bottom: 8px; }
.booking-widget-head h3 {
  font-size: 22px;
  font-weight: 500;
}
/* Booking-section's .booking-fields override the front-page hero
   booking-bar grid so the widget is a vertical stack. */
.booking-section .booking-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.booking-section .booking-field {
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all var(--transition);
  background: white;
}
.booking-section .booking-field:focus-within { border-color: var(--color-nubian-blue); }
.booking-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-submit-large {
  width: 100%;
  padding: 18px;
  background: var(--color-nubian-red);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-submit-large:hover { background: var(--color-nubian-red-deep); }

.booking-widget-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.booking-meta-item svg {
  width: 16px; height: 16px;
  color: var(--color-nubian-green);
  flex-shrink: 0;
}

.booking-beds24-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--color-sand);
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.booking-beds24-note strong { color: var(--color-text); }

/* Policies */
.policies-content h2 { margin-bottom: 16px; }
.policies-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.policies-content > p {
  font-size: 17px;
  margin-bottom: 32px;
}
.policies-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  align-items: center;
}
.policy-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-warm-yellow);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}
.policy-text span {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Per-room FAQ accordion (optional cross-CPT block) -------- */
.room-faqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.room-faq {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.room-faq[open] { border-color: var(--color-nubian-blue); }
.room-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.room-faq-question::-webkit-details-marker { display: none; }
.room-faq-question::after {
  content: '+';
  color: var(--color-nubian-blue);
  font-size: 22px;
  transition: transform var(--transition);
}
.room-faq[open] .room-faq-question::after { transform: rotate(45deg); }
.room-faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Similar rooms ------------------------------------------- */
.similar-section {
  padding: 100px 0;
  background: white;
}
.similar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.similar-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.similar-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.similar-card:hover { transform: translateY(-8px); }
.similar-card-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 12px 12px / 30% 30% 12px 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.similar-card-image-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: white;
  font-size: 110px;
  font-weight: 300;
}
.similar-card-image.s1 .similar-card-image-bg { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
.similar-card-image.s2 .similar-card-image-bg { background: linear-gradient(160deg, #14406F, #0E2D52); }
.similar-card-image.s3 .similar-card-image-bg { background: linear-gradient(160deg, #2B5FA0, #1B4F8C); }
.similar-card-badge {
  position: absolute;
  /* Anchored to the flat bottom-left corner (12px square radius)
     so the badge can never be clipped by the Nubian arch. Earlier
     `top: 56px; left: 20px` fell inside the rounded zone. Note:
     this class is currently unused by the live PHP templates —
     CSS kept in sync with sibling badges in case the markup is
     re-added (Bug 3 follow-up). */
  bottom: 20px; left: 20px;
  background: white;
  color: var(--color-nubian-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.similar-card-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.similar-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 500;
}
.similar-card-name {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--color-nubian-red);
  margin-bottom: 12px;
}
.similar-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.similar-card-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-nubian-blue);
  font-weight: 500;
}
.similar-card-price span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.similar-card-link {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-nubian-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* HARDCODED-AUDIT A-1 fix — real photo in the arch shape, configs row,
 * title links. Mirrors the working .room-card.has-photo pattern. */
.similar-card-image-link { display: block; }
.similar-card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.similar-card.has-photo .similar-card-image-bg { display: none; }
.similar-card-title-link {
  color: inherit;
  text-decoration: none;
}
.similar-card-title-link:hover { color: var(--color-nubian-red); }
.similar-card-configs {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.similar-card-configs li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-nubian-blue);
  position: relative;
}
.similar-card-configs li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -10px;
  top: 0;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Single-room responsive ---------------------------------- */
@media (max-width: 1024px) {
  .room-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .room-hero-image { max-width: 480px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px 240px; }
  .gallery-item.g1 { grid-column: span 3; grid-row: span 1; }
  .details-grid { grid-template-columns: 1fr; gap: 48px; }
  .in-room-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .room-hero { padding: 32px 0 48px; }
  .room-hero h1 { font-size: 2.25rem; }
  .room-hero-quick { grid-template-columns: 1fr 1fr; }
  .room-hero-actions { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px 200px; }
  .gallery-item.g1 { grid-column: span 2; }
  .in-room-grid { grid-template-columns: 1fr 1fr; }
  .similar-grid { grid-template-columns: 1fr; }
  .details-features { grid-template-columns: 1fr; }
}


/* === page-experiences ===
   Verbatim from _mockup-reference/experiences.html lines 174–605.
   Hero / breadcrumb / filter-section / page-hero-stats / help-block
   are reused from page-rooms (Phase 5c). Page-hero-tagline is new.
   The 6-column grid + .featured/.medium/.wide spans + variants e6–e8
   collide with front-page's 3-col experiences grid → scoped under
   body.page-template-page-experiences.
*/

.page-hero-tagline {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Page-experiences grid + card overrides ------------------ */
body.page-template-page-experiences .experiences-section {
  padding: 64px 0 100px;
  background: white;
}
body.page-template-page-experiences .experiences-grid {
  display: grid;
  /* 6-col base. First 3 cards explicitly placed (1 big featured +
     2 mediums stacked beside it). Cards 4+ flow into uniform 3-per-row
     (2 cols each). Explicit placement avoids auto-flow weirdness when
     individual cards differ in min-height. */
  grid-template-columns: repeat(6, 1fr);
  /* Bug 4 fix — split explicit vs implicit row sizing:
     - Rows 1-2 stay at 232px each so card #1 fits exactly across both
       (its min-height is 488 = 232 + 24 gap + 232).
     - Rows 3+ implicit at 320px to match :nth-child(n+4) min-height.
     `grid-auto-rows: auto` and `minmax(232, auto)` do NOT grow tracks
     to accommodate child min-height in Chrome — they only respect
     content size. Hence the explicit values. */
  grid-template-rows: 232px 232px;
  grid-auto-rows: 320px;
  gap: 24px;
  /* Bug 5 — override the inherited 720px from the generic
     .experiences-grid rule (line 1110), which was sized for the
     5-card front-page mosaic. The archive page renders 9 cards
     spanning 4 row tracks (~1176px tall) and needs the container
     to grow; otherwise cards 7-9 render OUTSIDE the box and are
     visually covered by .how-section below. */
  height: auto;
}

/* First 3 cards — featured mosaic (1 big LEFT, 2 mediums stacked RIGHT) */
body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
  min-height: 488px;
}
body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(2) {
  grid-column: 5 / span 2;
  grid-row: 1 / span 1;
  min-height: 232px;
}
body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 2 / span 1;
  min-height: 232px;
}

/* Cards 4+ — uniform 3-per-row, auto-flow kicks in below row 3 */
body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(n+4) {
  grid-column: span 2;
  grid-row: auto;
  min-height: 320px;
}

@media (max-width: 1024px) {
  body.page-template-page-experiences .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }
  body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(2),
  body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(3),
  body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(n+4) {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  body.page-template-page-experiences .experiences-grid {
    grid-template-columns: 1fr;
  }
  body.page-template-page-experiences .experiences-grid > .experience-card:nth-child(n) {
    grid-column: span 1;
    min-height: 280px;
  }
}
body.page-template-page-experiences .experience-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: white;
  cursor: pointer;
  transition: transform var(--transition);
  /* No base min-height — every grid position sets its own:
     nth-child(1)=488, nth-child(2-3)=232, nth-child(n+4)=320,
     and the 640px breakpoint resets all to 320. (Bug 4 cleanup.) */
  text-decoration: none;
  align-items: stretch;
}
body.page-template-page-experiences .experience-card:hover { transform: translateY(-6px); }
body.page-template-page-experiences .experience-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
body.page-template-page-experiences .experience-card-pattern {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  opacity: 0.2;
  z-index: 0;
}
body.page-template-page-experiences .experience-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
body.page-template-page-experiences .experience-card-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
body.page-template-page-experiences .experience-card h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}
body.page-template-page-experiences .experience-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
}
body.page-template-page-experiences .experience-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.experience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-warm-yellow);
  letter-spacing: 0.04em;
}

/* Class-based variants — grid spans now controlled by :nth-child
   positional rules above (predictable: 1st card big, next two
   stacked, rest uniform). These class rules only set cosmetic
   variations (background gradient on featured) so they coexist
   with the position-driven layout. */
body.page-template-page-experiences .experience-card.featured {
  background: linear-gradient(160deg, #1B4F8C 0%, #14406F 50%, #0E2D52 100%);
}
body.page-template-page-experiences .experience-card.featured h3 { font-size: 32px; }
body.page-template-page-experiences .experience-card.featured .experience-card-pattern { font-size: 180px; opacity: 0.18; }

/* Color variants — extends Phase 5b's e2/e3/e4/e5 with e1/e6/e7/e8.
   Scoped to avoid the front-page card backgrounds being overridden. */
body.page-template-page-experiences .experience-card.e1 { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
body.page-template-page-experiences .experience-card.e2 { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
body.page-template-page-experiences .experience-card.e3 { background: linear-gradient(160deg, #4A8B2C 0%, #2BB3B3 100%); }
body.page-template-page-experiences .experience-card.e4 { background: linear-gradient(160deg, #F4C430 0%, #E8893A 100%); }
body.page-template-page-experiences .experience-card.e4 h3,
body.page-template-page-experiences .experience-card.e4 .experience-card-link { color: var(--color-text); }
body.page-template-page-experiences .experience-card.e4 .experience-card-meta { color: var(--color-text); opacity: 0.85; }
body.page-template-page-experiences .experience-card.e4::before { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.25) 100%); }
body.page-template-page-experiences .experience-card.e4 .experience-card-tag { color: var(--color-text); background: rgba(255,255,255,0.5); }
body.page-template-page-experiences .experience-card.e5 { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 100%); }
body.page-template-page-experiences .experience-card.e6 { background: linear-gradient(160deg, #D64545 0%, #B53737 100%); }
body.page-template-page-experiences .experience-card.e7 { background: linear-gradient(160deg, #14406F 0%, #1B4F8C 100%); }
body.page-template-page-experiences .experience-card.e8 { background: linear-gradient(160deg, #4A8B2C 0%, #6BA838 100%); }

/* How it works ------------------------------------------- */
.how-section {
  padding: 100px 0;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.how-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.how-head .section-eyebrow { justify-content: center; }
.how-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.how-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.how-head p { font-size: 17px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-step {
  position: relative;
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}
.how-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.how-step p {
  font-size: 15px;
  line-height: 1.6;
}

/* Page-experiences responsive ----------------------------- */
@media (max-width: 1024px) {
  .how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-experiences .experience-card { min-height: 320px; }
  body.page-template-page-experiences .experience-card.featured h3 { font-size: 22px; }
}


/* === single-experience ===
   Verbatim from _mockup-reference/felucca-sunset.html lines 129–948.
   Reuses .booking-widget*, .booking-fields*, .booking-submit-large,
   .booking-meta-item, .gallery-section, .gallery-grid, .gallery-item.g1-g5
   from earlier phases — single-experience-only differences scoped under
   body.single-hartie_experience.
*/

/* Experience hero ---------------------------------------- */
.exp-hero {
  background: var(--color-sand);
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
}
.exp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
}
.exp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.exp-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 16px 16px / 30% 30% 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px);
  pointer-events: none;
}
.exp-hero-image-emoji {
  font-size: 200px;
  opacity: 0.4;
  position: relative; z-index: 1;
}
.exp-hero-image-badge {
  position: absolute;
  /* Anchored to the flat bottom-left corner (16px square radius)
     so the badge can never be clipped by the Nubian arch on the
     top edge (Bug 3 follow-up — same fix as room-hero-image-badge). */
  bottom: 24px; left: 24px;
  background: white;
  color: var(--color-nubian-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
.exp-hero-image-sun {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-warm-yellow);
  box-shadow: 0 0 60px rgba(244, 196, 48, 0.7);
  z-index: 2;
}

.exp-hero-content { display: flex; flex-direction: column; }
.exp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
}
.exp-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.exp-hero h1 { margin-bottom: 12px; font-weight: 400; }
.exp-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.exp-hero-tagline {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  line-height: 1.2;
}
.exp-hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.exp-hero-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.exp-hero-quick-item { display: flex; flex-direction: column; gap: 4px; }
.exp-hero-quick-item svg {
  width: 24px; height: 24px;
  color: var(--color-nubian-blue);
  margin-bottom: 8px;
}
.exp-hero-quick-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.1;
}
.exp-hero-quick-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.difficulty-meter {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 4px;
}
.difficulty-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.difficulty-dot.active { background: var(--color-warm-yellow); }

.exp-hero-actions {
  display: flex;
  flex-wrap: wrap;     /* Bug 6 — when price (flex:1) + 2 buttons can't fit one row, secondary wraps below */
  gap: 12px;
  align-items: center;
}
.exp-hero-actions > .btn-cta,
.exp-hero-actions > .btn-cta-outline { flex-shrink: 0; }  /* Bug 6 — keep buttons single-line */
.exp-price {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exp-price strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-nubian-blue);
  font-weight: 500;
}
.exp-price span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Story section (single-experience-specific overrides scoped) - */
body.single-hartie_experience .story-section {
  padding: 100px 0;
  background: white;
  position: static;
}
body.single-hartie_experience .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
body.single-hartie_experience .story-content h2 { margin-bottom: 24px; }
body.single-hartie_experience .story-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.single-hartie_experience .story-content > p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
body.single-hartie_experience .story-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}

.highlights {
  background: var(--color-sand);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.highlights h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
}
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.highlight-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-warm-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}
.highlight-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 500;
}

/* Itinerary timeline ------------------------------------- */
.itinerary-section {
  padding: 100px 0;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.itinerary-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.12;
}
.itinerary-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.itinerary-head .section-eyebrow { justify-content: center; }
.itinerary-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.itinerary-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 60px;
  width: 2px;
  background: var(--color-warm-yellow);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
  align-items: start;
}
.timeline-time {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  text-align: right;
  padding-right: 24px;
  padding-top: 12px;
  position: relative;
}
.timeline-time::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--color-nubian-red);
  border: 4px solid var(--color-sand);
  border-radius: 50%;
  z-index: 2;
}
.timeline-content {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.timeline-content:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
.timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Includes / Excludes ------------------------------------ */
.includes-section {
  padding: 100px 0;
  background: white;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.includes-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
}
.includes-card.yes {
  background: linear-gradient(135deg, rgba(74, 139, 44, 0.04) 0%, rgba(43, 179, 179, 0.04) 100%);
  border-color: rgba(74, 139, 44, 0.2);
}
.includes-card.no { background: var(--color-sand); }
.includes-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.includes-card h3 svg {
  width: 28px; height: 28px;
  padding: 4px;
  border-radius: 50%;
}
.includes-card.yes h3 svg { background: var(--color-nubian-green); color: white; }
.includes-card.no h3 svg { background: var(--color-text-muted); color: white; }
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}
.includes-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.includes-card.yes .includes-item svg { color: var(--color-nubian-green); }
.includes-card.no .includes-item svg { color: var(--color-text-muted); }

/* Gallery (single-experience overrides) ------------------ */
body.single-hartie_experience .gallery-section { background: var(--color-sand); }
body.single-hartie_experience .gallery-item.g1 { background: linear-gradient(160deg, #1B4F8C, #E8893A 70%, #D64545); }
body.single-hartie_experience .gallery-item.g4 { background: linear-gradient(160deg, #14406F, #1B4F8C); }
body.single-hartie_experience .gallery-item.g5 { background: linear-gradient(160deg, #E8893A, #D64545); }

.gallery-item-bg {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.4;
}
body.single-hartie_experience .gallery-item.g1 .gallery-item-bg { font-size: 160px; }

/* Book + bring ------------------------------------------ */
.book-section {
  padding: 100px 0;
  background: white;
}
.book-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.book-content h2 { margin-bottom: 16px; }
.book-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.book-content > p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bring-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.bring-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 24px;
  background: var(--color-sand);
  border-radius: 16px;
  align-items: center;
}
.bring-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: white;
  color: var(--color-nubian-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bring-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}
.bring-text span {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Single-experience booking widget extras ---------------- */
body.single-hartie_experience .booking-widget {
  border: 1px solid var(--color-border);
}
.booking-widget-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.booking-widget-price strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-nubian-blue);
}
.booking-widget-price span {
  font-size: 13px;
  color: var(--color-text-muted);
}
.booking-or {
  text-align: center;
  margin: 16px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  position: relative;
}
.booking-or::before, .booking-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--color-border);
}
.booking-or::before { left: 0; }
.booking-or::after  { right: 0; }
.booking-whatsapp {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: background var(--transition);
}
.booking-whatsapp:hover { background: #1FB855; }

/* FAQ ---------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.faq-head .section-eyebrow { justify-content: center; }
.faq-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.faq-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--color-nubian-blue); }
.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-nubian-blue);
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Related experiences ------------------------------------ */
.related-section {
  padding: 100px 0;
  background: white;
}
.related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.related-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.related-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: white;
  cursor: pointer;
  transition: transform var(--transition);
  min-height: 320px;
  text-decoration: none;
}
.related-card:hover { transform: translateY(-6px); }
.related-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.related-card-pattern {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  opacity: 0.2;
  z-index: 0;
}
/* HARDCODED-AUDIT A-3 fix — render real featured image when available. */
.related-card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.related-card.has-photo .related-card-pattern { display: none; }
.related-card-content { position: relative; z-index: 2; }
.related-card-tag {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.related-card h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
}
.related-card-meta {
  font-size: 13px;
  opacity: 0.85;
  display: flex;
  gap: 12px;
}
.related-card.r1 { background: linear-gradient(160deg, #E8893A, #D64545); }
.related-card.r2 { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
.related-card.r3 { background: linear-gradient(160deg, #F4C430, #E8893A); }

/* Single-experience responsive --------------------------- */
@media (max-width: 1024px) {
  .exp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .exp-hero-image { max-width: 480px; margin: 0 auto; }
  body.single-hartie_experience .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .highlights { position: static; }
  .timeline::before { left: 50px; }
  .timeline-item { grid-template-columns: 100px 1fr; gap: 24px; }
  .includes-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  body.single-hartie_experience .booking-widget { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .exp-hero { padding: 32px 0 48px; }
  .exp-hero-quick { grid-template-columns: 1fr 1fr; }
  /* Bug 6 — stack primary + secondary CTA vertically with full width
     so they don't get squished on narrow screens (mirror of the
     .room-hero-actions mobile rule). */
  .exp-hero-actions { flex-direction: column; align-items: stretch; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .timeline-time { font-size: 16px; padding-right: 16px; }
  .timeline::before { left: 40px; }
  .timeline-time::after { width: 12px; height: 12px; }
  .related-grid { grid-template-columns: 1fr; }
}


/* === page-about ===
   Verbatim from _mockup-reference/about.html lines 130–665.
   Reuses .breadcrumbs, .section-eyebrow, .btn-cta, .final-cta /
   .final-cta-inner / .final-cta-actions, .btn-cta-large, .btn-cta-secondary
   from earlier phases.
*/

/* About hero — centered editorial */
.about-hero {
  background: var(--color-sand);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 60%);
  opacity: 0.12;
}
body.page-template-page-about .breadcrumbs {
  justify-content: center;
  margin-bottom: 48px;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  justify-content: center;
}
.about-hero-eyebrow::before, .about-hero-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.about-hero h1 {
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.about-hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-nubian-red);
  margin-bottom: 32px;
  line-height: 1.2;
}
.about-hero-lede {
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* Hero stats ribbon */
.hero-ribbon {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 64px auto 0;
  position: relative;
}
.hero-ribbon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-ribbon-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: var(--color-border);
}
.hero-ribbon-stat strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-ribbon-stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Story chapters — alternating sand/white backgrounds + flipped layout */
.chapter {
  padding: 120px 0;
  background: white;
  position: relative;
}
.chapter:nth-child(even) { background: var(--color-sand); }
.chapter-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.chapter-num::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--color-nubian-red);
}
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.chapter-grid.flipped { direction: rtl; }
.chapter-grid.flipped > * { direction: ltr; }
.chapter-content h2 {
  margin-bottom: 32px;
  font-weight: 400;
}
.chapter-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.chapter-content > p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.chapter-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}
.chapter-quote {
  border-left: 4px solid var(--color-warm-yellow);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--color-nubian-blue);
  line-height: 1.3;
}

.chapter-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.chapter-visual-arch {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.chapter-visual-arch::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.08) 14px, rgba(255,255,255,0.08) 15px),
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px);
  pointer-events: none;
}
.chapter-visual-emoji {
  font-size: 200px;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.chapter-1 .chapter-visual-arch { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 50%, #14406F 100%); }
.chapter-2 .chapter-visual-arch { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
.chapter-3 .chapter-visual-arch { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
/* Cycle additional chapters (chapter-4, -5...) through the same palette. */
.chapter-4 .chapter-visual-arch,
.chapter-7 .chapter-visual-arch { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 50%, #14406F 100%); }
.chapter-5 .chapter-visual-arch,
.chapter-8 .chapter-visual-arch { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
.chapter-6 .chapter-visual-arch,
.chapter-9 .chapter-visual-arch { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }

.chapter-badge {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.chapter-badge-1, .chapter-badge-3, .chapter-badge-5, .chapter-badge-7, .chapter-badge-9 {
  bottom: 32px;
  right: -32px;
  max-width: 240px;
}
.chapter-badge-2, .chapter-badge-4, .chapter-badge-6, .chapter-badge-8 {
  top: 32px;
  left: -32px;
  max-width: 240px;
}
.chapter-badge strong {
  font-family: var(--font-display);
  display: block;
  font-size: 22px;
  color: var(--color-nubian-blue);
  font-weight: 500;
  margin-bottom: 4px;
}
.chapter-badge span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Values — dark blue panel */
.values-section {
  padding: 120px 0;
  background: var(--color-nubian-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.12;
}
.values-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%);
  opacity: 0.08;
}
.values-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
}
.values-head .section-eyebrow {
  color: var(--color-warm-yellow);
  justify-content: center;
}
.values-head .section-eyebrow::before { background: var(--color-warm-yellow); }
.values-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-warm-yellow);
}
.values-head h2 { color: white; margin-bottom: 16px; }
.values-head h2 em { color: var(--color-warm-yellow); font-style: italic; font-weight: 500; }
.values-head p { color: rgba(255,255,255,0.85); font-size: 17px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.value {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 32px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.value:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  border-color: var(--color-warm-yellow);
}
.value-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-warm-yellow);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.value h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.value p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}

/* Commitments / sustainability */
.commitments-section {
  padding: 120px 0;
  background: white;
}
.commitments-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 80px;
  align-items: end;
}
.commitments-head h2 { margin-bottom: 0; }
.commitments-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.commitments-head p { font-size: 17px; line-height: 1.7; }

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.commitment {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--color-sand);
  border-radius: 20px;
  align-items: start;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.commitment:hover {
  background: white;
  box-shadow: var(--shadow-md);
  border-color: var(--color-warm-yellow);
}
.commitment-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nubian-blue);
  flex-shrink: 0;
}
.commitment-text h4 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 500;
}
.commitment-text p {
  font-size: 15px;
  line-height: 1.6;
}

/* Awards / recognition */
.awards-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.awards-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.awards-head .section-eyebrow { justify-content: center; }
.awards-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.awards-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.award {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition);
}
.award:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.award-platform {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.award-rating {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.award-stars {
  color: var(--color-warm-yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.award-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* About-page-specific final-cta tweaks (eyebrow color + center) */
body.page-template-page-about .final-cta .section-eyebrow {
  color: var(--color-warm-yellow);
  justify-content: center;
}
body.page-template-page-about .final-cta .section-eyebrow::before { background: var(--color-warm-yellow); }
body.page-template-page-about .final-cta .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-warm-yellow);
}
body.page-template-page-about .final-cta h2 { margin-top: 16px; }

/* Page-about responsive */
@media (max-width: 1024px) {
  .hero-ribbon { grid-template-columns: repeat(2, 1fr); }
  .chapter-grid { grid-template-columns: 1fr; gap: 48px; }
  .chapter-grid.flipped { direction: ltr; }
  .chapter-badge { position: static; max-width: none; margin-top: 16px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments-head { grid-template-columns: 1fr; gap: 32px; }
  .commitments-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-ribbon { grid-template-columns: 1fr; padding: 24px; }
  .hero-ribbon-stat:not(:last-child)::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   === dining ===
   Verbatim from _mockup-reference/dining.html (lines 127–895).
   Globals already defined above — only dining-scoped selectors below.
   ============================================================ */

/* DINING HERO */
.dining-hero {
  background: var(--color-sand);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.dining-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
}
.dining-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.dining-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
}
.dining-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.dining-hero h1 {
  margin-bottom: 20px;
  font-weight: 400;
}
.dining-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.dining-hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  color: var(--color-nubian-red);
  margin-bottom: 28px;
  line-height: 1.2;
}
.dining-hero-lede {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}
.dining-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.dining-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dining-hero-meta-item svg {
  width: 20px; height: 20px;
  color: var(--color-nubian-blue);
  margin-bottom: 8px;
}
.dining-hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.1;
}
.dining-hero-meta-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Restaurant visual */
.dining-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.dining-hero-arch {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px;
  background: linear-gradient(160deg, #1B4F8C 0%, #14406F 50%, #0E2D52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dining-hero-arch::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(244,196,48,0.05) 16px, rgba(244,196,48,0.05) 17px);
}
.dining-hero-arch-emoji {
  font-size: 200px;
  opacity: 0.45;
  position: relative;
  z-index: 1;
}
.dining-hero-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--color-warm-yellow);
  padding: 20px 28px;
  border-radius: 16px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.dining-hero-badge strong {
  font-family: var(--font-display);
  display: block;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 4px;
  font-weight: 500;
}
.dining-hero-badge span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 600;
}

/* INTRO / STORY */
.intro-section {
  padding: 120px 0;
  background: white;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-content h2 { margin-bottom: 24px; }
.intro-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.intro-content > p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.intro-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}
.intro-quote {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--color-nubian-blue);
  border-left: 4px solid var(--color-warm-yellow);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  line-height: 1.3;
}
.intro-features {
  background: var(--color-sand);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.intro-features h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 500;
}
.intro-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.intro-feature-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-warm-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}
.intro-feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}
.intro-feature-text span {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* MENU SECTION */
.menu-section {
  padding: 120px 0;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.12;
}
.menu-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
}
.menu-head .section-eyebrow { justify-content: center; }
.menu-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.menu-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.menu-head p { font-size: 17px; }

.menu-paper {
  background: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 80px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.menu-tab {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: white;
  transition: all var(--transition);
}
.menu-tab:hover { color: var(--color-nubian-blue); border-color: var(--color-nubian-blue); }
.menu-tab.active {
  background: var(--color-nubian-blue);
  color: white;
  border-color: var(--color-nubian-blue);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.menu-section-block { position: relative; }
.menu-section-block-head {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-warm-yellow);
}
.menu-section-block-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  margin-bottom: 4px;
  font-style: italic;
}
.menu-section-block-sub {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--color-nubian-red);
  line-height: 1;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-right: 8px;
}
.menu-item-name::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 100%;
  right: -100%;
  border-bottom: 2px dotted var(--color-border);
  pointer-events: none;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  background: white;
  padding-left: 12px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.menu-item-desc {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-top: 6px;
  font-style: italic;
}
.menu-item-tags {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.menu-item-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--color-sand);
  color: var(--color-text-muted);
}
.menu-item-tag.veg { background: rgba(74, 139, 44, 0.12); color: var(--color-nubian-green); }
.menu-item-tag.gf { background: rgba(244, 196, 48, 0.18); color: var(--color-warm-yellow-deep); }
.menu-item-tag.spicy { background: rgba(214, 69, 69, 0.12); color: var(--color-nubian-red); }
.menu-item-tag.signature { background: rgba(27, 79, 140, 0.1); color: var(--color-nubian-blue); }
.menu-note {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* DIETARY OPTIONS */
.dietary-section {
  padding: 100px 0;
  background: white;
}
.dietary-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.dietary-head .section-eyebrow { justify-content: center; }
.dietary-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.dietary-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.dietary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dietary {
  background: var(--color-sand);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.dietary:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-warm-yellow);
}
.dietary-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nubian-blue);
  margin: 0 auto 20px;
}
.dietary h4 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 500;
}
.dietary p {
  font-size: 14px;
  line-height: 1.5;
}

/* HOURS / TIMELINE */
.hours-section {
  padding: 120px 0;
  background: var(--color-nubian-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.hours-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
}
.hours-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
}
.hours-head .section-eyebrow {
  color: var(--color-warm-yellow);
  justify-content: center;
}
.hours-head .section-eyebrow::before, .hours-head .section-eyebrow::after {
  background: var(--color-warm-yellow);
}
.hours-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
}
.hours-head h2 { color: white; margin-bottom: 16px; }
.hours-head h2 em { color: var(--color-warm-yellow); font-style: italic; }
.hours-head p { color: rgba(255,255,255,0.85); font-size: 17px; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.meal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 32px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: all var(--transition);
}
.meal-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--color-warm-yellow);
  transform: translateY(-6px);
}
.meal-card-icon {
  width: 60px; height: 60px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  margin-bottom: 24px;
}
.meal-card-time {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 144;
}
.meal-card-name {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--color-warm-yellow);
  margin-bottom: 16px;
  line-height: 1;
}
.meal-card-desc {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.meal-card-included {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(74, 139, 44, 0.25);
  border: 1px solid rgba(74, 139, 44, 0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.meal-card-extra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* GALLERY */
.gallery-section {
  padding: 100px 0;
  background: white;
}
.gallery-head { text-align: center; margin-bottom: 48px; }
.gallery-head .section-eyebrow { justify-content: center; }
.gallery-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.gallery-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item-emoji {
  font-size: 60px;
  opacity: 0.4;
}
.gallery-item.g1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #1B4F8C, #E8893A); }
.gallery-item.g1 .gallery-item-emoji { font-size: 140px; }
.gallery-item.g2 { background: linear-gradient(160deg, #E8893A, #D64545); }
.gallery-item.g3 { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
.gallery-item.g4 { background: linear-gradient(160deg, #F4C430, #E8893A); }
.gallery-item.g5 { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }

/* OUTLINE BUTTON variant — used in dining final-CTA */
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: white;
  border: 1.5px solid var(--color-nubian-blue);
  color: var(--color-nubian-blue);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-cta-outline:hover {
  background: var(--color-nubian-blue);
  color: white;
}

/* FINAL CTA — dining override (white card on sand, vs. theme's blue gradient) */
body.page-template-page-dining .final-cta { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-dining .final-cta-inner {
  background: white;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}
body.page-template-page-dining .final-cta-inner::before {
  top: 0; left: 50%; right: auto; bottom: auto;
  transform: translateX(-50%);
  height: 6px; width: 240px;
  background: linear-gradient(90deg, var(--color-nubian-blue), var(--color-warm-yellow), var(--color-nubian-red));
  border-radius: 0 0 8px 8px;
  opacity: 1;
}
body.page-template-page-dining .final-cta-inner::after { display: none; }
body.page-template-page-dining .final-cta h2 { color: var(--color-text); margin: 16px auto 20px; }
body.page-template-page-dining .final-cta h2 em { color: var(--color-nubian-blue); font-style: italic; font-weight: 500; }
body.page-template-page-dining .final-cta p { color: var(--color-text-muted); }
body.page-template-page-dining .final-cta .section-eyebrow { justify-content: center; }
body.page-template-page-dining .final-cta .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}

/* DINING RESPONSIVE */
@media (max-width: 1024px) {
  .dining-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .dining-hero-visual { max-width: 480px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-features { position: static; }
  .menu-paper { padding: 48px 40px; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .dietary-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px 240px; }
  .gallery-item.g1 { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 640px) {
  .dining-hero { padding: 48px 0 64px; }
  .dining-hero-meta { grid-template-columns: 1fr; }
  .menu-paper { padding: 32px 24px; }
  .dietary-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px 200px; }
  .gallery-item.g1 { grid-column: span 2; }
  body.page-template-page-dining .final-cta-inner { padding: 48px 32px; }
}


/* ============================================================
   === contact ===
   Verbatim from _mockup-reference/contact.html (lines 126–664).
   ============================================================ */

/* CONTACT HERO */
.contact-hero {
  background: var(--color-sand);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 60%);
  opacity: 0.12;
}
.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  justify-content: center;
}
.contact-hero-eyebrow::before, .contact-hero-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.contact-hero h1 {
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.contact-hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-hero-lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* CONTACT METHODS */
.methods-section {
  padding: 0 0 80px;
  background: var(--color-sand);
  position: relative;
}
.methods-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.method {
  background: white;
  padding: 32px 28px;
  border-radius: 24px;
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-warm-yellow);
}
.method.featured {
  background: linear-gradient(135deg, #25D366 0%, #1FB855 100%);
  color: white;
}
.method.featured:hover { border-color: white; }
.method-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nubian-blue);
  margin-bottom: 24px;
}
.method.featured .method-icon { background: rgba(255,255,255,0.2); color: white; }
.method-name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.method.featured .method-name { color: rgba(255,255,255,0.85); }
.method-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  margin-bottom: 12px;
  line-height: 1.2;
  word-break: break-word;
}
.method.featured .method-value { color: white; font-size: 26px; }
.method-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
}
.method.featured .method-meta { border-top-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }
.method-meta strong { color: var(--color-nubian-green); font-weight: 600; }
.method.featured .method-meta strong { color: white; }

/* FORM + MAP */
.form-section {
  padding: 100px 0;
  background: white;
}
.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-content h2 { margin-bottom: 16px; }
.form-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.form-content > p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  outline: none;
  transition: all var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--color-nubian-blue); box-shadow: 0 0 0 4px rgba(27, 79, 140, 0.1); }
.form-field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-field-required label::after {
  content: ' *';
  color: var(--color-nubian-red);
}
.form-submit {
  margin-top: 8px;
  padding: 18px 32px;
  background: var(--color-nubian-red);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--color-nubian-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 69, 69, 0.3);
}
.form-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--color-sand);
  border-left: 3px solid var(--color-warm-yellow);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
.form-note strong { color: var(--color-nubian-blue); }

/* Honeypot — hidden from users, fail-silent if filled */
.hartie-hp-wrap { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Map column */
.map-column {
  position: sticky;
  top: 100px;
}
.map-card {
  background: var(--color-sand);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
}
.map-illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #E8F4F8 0%, #C8DCE8 50%, #E0D4B8 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.map-river {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 64px;
  background: linear-gradient(90deg, #2BB3B3 0%, #1B4F8C 50%, #2BB3B3 100%);
  transform: translateX(-50%) skewX(-3deg);
  opacity: 0.7;
}
.map-river::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255,255,255,0.3) 12px, rgba(255,255,255,0.3) 14px);
}
.map-island {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 64px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 2;
}
.map-pin {
  position: absolute;
  top: 32%; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.map-pin-dot {
  width: 28px; height: 28px;
  background: var(--color-nubian-red);
  border: 5px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: hartie-pulse 2s infinite;
  margin: 0 auto;
}
@keyframes hartie-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 0 rgba(214,69,69,0.4); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 14px rgba(214,69,69,0); }
}
.map-pin-label {
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-nubian-blue);
  white-space: nowrap;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.map-cities {
  position: absolute;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-city-aswan { top: 60%; right: 15%; }
.map-city-west { top: 30%; left: 8%; }
.map-address { margin-bottom: 16px; }
.map-address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}
.map-address span {
  font-size: 14px;
  color: var(--color-text-muted);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-nubian-blue);
  transition: all var(--transition);
}
.map-link:hover {
  border-color: var(--color-nubian-blue);
  background: var(--color-nubian-blue);
  color: white;
}

/* Hours card */
.hours-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
}
.hours-card h3 {
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hours-card h3 svg {
  width: 24px; height: 24px;
  color: var(--color-nubian-blue);
}
.hours-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row-label { color: var(--color-text); font-weight: 500; }
.hours-row-value { color: var(--color-text-muted); }
.hours-row-value.highlight {
  color: var(--color-nubian-green);
  font-weight: 600;
}

/* GET HERE */
.get-here-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.get-here-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.get-here-head .section-eyebrow { justify-content: center; }
.get-here-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
.get-here-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.get-here-head h2 { margin-bottom: 16px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}
.step-icon {
  position: absolute;
  top: 32px; right: 32px;
  color: var(--color-nubian-blue);
  opacity: 0.2;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 500;
}
.step-meta {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
  line-height: 1;
}
.step p { font-size: 14px; line-height: 1.6; }

/* CONTACT RESPONSIVE */
@media (max-width: 1024px) {
  .methods-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-column { position: static; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-hero { padding: 48px 0 64px; }
  .methods-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   === faq ===
   Verbatim from _mockup-reference/faq.html (lines 126–483).
   ============================================================ */
.faq-hero {
  background: var(--color-sand);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.faq-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 60%);
  opacity: 0.12;
}
.faq-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-nubian-red);
  margin-bottom: 24px; justify-content: center;
}
.faq-hero-eyebrow::before, .faq-hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--color-nubian-red);
}
.faq-hero h1 { margin: 0 auto 16px; font-weight: 400; max-width: 820px; }
.faq-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.faq-hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  color: var(--color-nubian-red);
  margin-bottom: 24px; line-height: 1.2;
}
.faq-hero-lede { font-size: 18px; line-height: 1.6; max-width: 640px; margin: 0 auto; }

.cat-nav-section {
  background: white; position: sticky; top: 80px; z-index: 50;
  padding: 24px 0; border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cat-nav { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cat-nav-item {
  padding: 10px 20px; border: 1px solid var(--color-border); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--color-text); background: white;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.cat-nav-item:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.cat-nav-item-count { font-size: 12px; opacity: 0.6; font-weight: 500; }
.cat-nav-item svg { width: 16px; height: 16px; }

.faq-content { padding: 80px 0 60px; background: white; }
.faq-category { max-width: 880px; margin: 0 auto 80px; scroll-margin-top: 160px; }
.faq-category-head {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 2px solid var(--color-warm-yellow);
}
.faq-category-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--color-sand); display: flex; align-items: center; justify-content: center;
  color: var(--color-nubian-blue); flex-shrink: 0;
}
.faq-category-text { flex: 1; }
.faq-category-text h2 { font-size: 28px; margin-bottom: 4px; font-weight: 500; }
.faq-category-text h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.faq-category-text p { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.faq-category-count {
  font-family: var(--font-display); font-size: 32px;
  color: var(--color-nubian-red); font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-sand); border-radius: 16px; overflow: hidden;
  border: 1px solid transparent; transition: all var(--transition);
}
.faq-item:hover { background: white; border-color: var(--color-border); }
.faq-item[open] { background: white; border-color: var(--color-nubian-blue); }
.faq-question {
  padding: 22px 28px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 17px;
  color: var(--color-text); list-style: none; line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; font-family: var(--font-display);
  font-size: 28px; font-weight: 300; color: var(--color-nubian-blue);
  transition: transform var(--transition); flex-shrink: 0; line-height: 1;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; font-size: 15px; line-height: 1.7; color: var(--color-text-muted); }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--color-text); font-weight: 600; }
.faq-answer ul { margin: 12px 0; padding-left: 0; list-style: none; }
.faq-answer li { padding-left: 24px; position: relative; margin-bottom: 8px; }
.faq-answer li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; background: var(--color-warm-yellow); border-radius: 50%;
}

.help-section { padding: 80px 0 120px; background: white; }
.help-inner {
  background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%);
  border-radius: 32px; padding: 64px;
  position: relative; overflow: hidden; text-align: center;
}
.help-inner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.18;
}
.help-inner::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%);
  opacity: 0.12;
}
.help-inner > * { position: relative; }
.help-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-warm-yellow);
  margin-bottom: 16px; justify-content: center;
}
.help-eyebrow::before, .help-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--color-warm-yellow);
}
.help-inner h2 { color: white; margin: 0 auto 16px; max-width: 600px; }
.help-inner h2 em { color: var(--color-warm-yellow); font-style: italic; }
.help-inner p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.help-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.help-action-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  font-weight: 600; font-size: 14px; border-radius: 999px;
  transition: all var(--transition);
}
.help-action-btn:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateY(-2px); }
.help-action-btn.primary { background: var(--color-warm-yellow); color: var(--color-text); border-color: var(--color-warm-yellow); }
.help-action-btn.primary:hover { background: var(--color-warm-yellow-deep); border-color: var(--color-warm-yellow-deep); }

@media (max-width: 1024px) {
  .cat-nav-section { top: 76px; }
}
@media (max-width: 640px) {
  .faq-hero { padding: 48px 0 64px; }
  .cat-nav-item span:first-child { display: none; }
  .cat-nav { gap: 8px; }
  .cat-nav-item { padding: 8px 14px; font-size: 12px; }
  .faq-category-head { gap: 16px; flex-wrap: wrap; }
  .faq-category-icon { width: 48px; height: 48px; }
  .faq-category-text h2 { font-size: 22px; }
  .faq-category-count { font-size: 24px; }
  .faq-question { padding: 18px 20px; font-size: 15px; gap: 12px; }
  .faq-answer { padding: 0 20px 20px; font-size: 14px; }
  .help-inner { padding: 40px 24px; border-radius: 20px; }
}


/* ============================================================
   === reviews ===
   Verbatim from _mockup-reference/reviews.html (lines 114–696).
   ============================================================ */
.reviews-hero { background: var(--color-nubian-blue); color: white; padding: 80px 0 100px; position: relative; overflow: hidden; }
.reviews-hero::before { content: ''; position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
.reviews-hero::after { content: ''; position: absolute; bottom: -200px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%); opacity: 0.1; }
.reviews-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.reviews-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-warm-yellow); margin-bottom: 24px; }
.reviews-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-warm-yellow); }
.reviews-hero h1 { color: white; margin-bottom: 16px; font-weight: 400; }
.reviews-hero h1 em { font-style: italic; color: var(--color-warm-yellow); font-weight: 500; }
.reviews-hero-tagline { font-family: var(--font-script); font-size: clamp(1.75rem, 2.8vw, 2.25rem); color: var(--color-warm-yellow); margin-bottom: 24px; line-height: 1.2; }
.reviews-hero-lede { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 520px; }
.rating-card { background: white; color: var(--color-text); border-radius: 32px; padding: 48px; box-shadow: var(--shadow-lg); text-align: center; position: relative; }
.rating-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 6px; width: 200px; background: linear-gradient(90deg, var(--color-nubian-blue), var(--color-warm-yellow), var(--color-nubian-red)); border-radius: 0 0 8px 8px; }
.rating-big { font-family: var(--font-display); font-size: 96px; font-weight: 500; color: var(--color-nubian-blue); line-height: 1; letter-spacing: -0.04em; margin-bottom: 16px; font-variation-settings: "opsz" 144; }
.rating-big-suffix { font-size: 36px; color: var(--color-text-muted); font-weight: 300; }
.rating-stars-big { color: var(--color-warm-yellow); font-size: 28px; letter-spacing: 4px; margin-bottom: 16px; }
.rating-card-meta { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; }
.rating-card-meta strong { color: var(--color-text); font-weight: 600; }
.rating-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.rating-platform { display: flex; flex-direction: column; gap: 4px; padding: 12px; }
.rating-platform-name { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.rating-platform-score { font-family: var(--font-display); font-size: 22px; color: var(--color-nubian-blue); font-weight: 500; }
.rating-platform-score small { font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); font-weight: 400; }

.stats-ribbon { background: var(--color-sand); padding: 60px 0; border-bottom: 1px solid var(--color-border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; top: 50%; right: -16px; transform: translateY(-50%); width: 1px; height: 56px; background: var(--color-border); }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 500; color: var(--color-nubian-blue); line-height: 1; margin-bottom: 8px; font-variation-settings: "opsz" 144; }
.stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

.reviews-section { padding: 80px 0 100px; background: white; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.reviews-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.reviews-head h2 { margin-bottom: 0; }
.review-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.review-filter { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); background: white; transition: all var(--transition); }
.review-filter:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.review-filter.active { background: var(--color-nubian-blue); color: white; border-color: var(--color-nubian-blue); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 24px; align-items: start; }
.review-card { background: var(--color-sand); padding: 32px; border-radius: 24px; border: 1px solid transparent; transition: all var(--transition); position: relative; }
.review-card:hover { background: white; border-color: var(--color-warm-yellow); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card.featured { grid-column: span 2; background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); color: white; border-color: transparent; position: relative; overflow: hidden; }
.review-card.featured::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
.review-card.featured .review-stars { color: var(--color-warm-yellow); }
.review-card.featured .review-text { color: white; font-size: 22px; }
.review-card.featured .review-author-name strong { color: white; }
.review-card.featured .review-author-name span { color: rgba(255,255,255,0.7); }
.review-card.featured .review-author { border-top-color: rgba(255,255,255,0.2); }
.review-card.featured .review-platform { background: rgba(244, 196, 48, 0.2); color: var(--color-warm-yellow); }
.review-stars { color: var(--color-warm-yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-quote-mark { font-family: var(--font-display); font-size: 64px; line-height: 0.5; color: var(--color-warm-yellow); position: relative; height: 24px; }
.review-text { font-family: var(--font-display); font-size: 18px; line-height: 1.5; font-weight: 400; font-style: italic; color: var(--color-text); margin-bottom: 24px; }
.review-author { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--color-border); flex-wrap: wrap; gap: 12px; }
.review-author-info { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 16px; flex-shrink: 0; }
.review-author-name strong { display: block; font-size: 14px; color: var(--color-text); font-weight: 600; font-family: var(--font-display); }
.review-author-name span { font-size: 12px; color: var(--color-text-muted); }
.review-platform { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; background: rgba(244, 196, 48, 0.18); color: var(--color-warm-yellow-deep); border-radius: 999px; }

.breakdown-section { padding: 100px 0; background: var(--color-sand); }
.breakdown-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.breakdown-head .section-eyebrow { justify-content: center; }
.breakdown-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.breakdown-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.breakdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.breakdown { background: white; border-radius: 20px; padding: 24px 28px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; transition: all var(--transition); }
.breakdown:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.breakdown-text { display: flex; flex-direction: column; gap: 4px; }
.breakdown-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--color-text); }
.breakdown-bar { height: 6px; background: var(--color-sand); border-radius: 999px; overflow: hidden; margin-top: 8px; }
.breakdown-bar-fill { height: 100%; background: linear-gradient(90deg, var(--color-nubian-blue), var(--color-warm-yellow)); border-radius: 999px; }
.breakdown-score { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--color-nubian-blue); line-height: 1; font-variation-settings: "opsz" 144; }
.breakdown-score small { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); font-weight: 400; }

.leave-review-section { padding: 100px 0; background: white; }
.leave-review-inner { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; position: relative; overflow: hidden; text-align: center; }
.leave-review-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
.leave-review-inner > * { position: relative; }
.leave-review-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-warm-yellow); margin-bottom: 16px; justify-content: center; }
.leave-review-eyebrow::before, .leave-review-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-warm-yellow); }
.leave-review-inner h2 { color: white; margin: 0 auto 16px; max-width: 600px; }
.leave-review-inner h2 em { color: var(--color-warm-yellow); font-style: italic; }
.leave-review-inner p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 40px; }
.platform-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 0 auto; }
.platform-btn { display: flex; flex-direction: column; gap: 8px; padding: 24px; background: white; color: var(--color-text); border-radius: 16px; font-weight: 600; font-size: 14px; transition: all var(--transition); text-align: center; }
.platform-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.platform-btn-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--color-nubian-blue); }
.platform-btn-action { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

@media (max-width: 1024px) {
  .reviews-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item:nth-child(2)::after { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card.featured { grid-column: span 2; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .platform-buttons { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .reviews-hero { padding: 48px 0 64px; }
  .rating-card { padding: 32px 24px; }
  .rating-big { font-size: 72px; }
  .rating-platforms { grid-template-columns: 1fr; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: span 1; }
  .leave-review-inner { padding: 40px 24px; }
}


/* ============================================================
   === gallery ===
   Verbatim from _mockup-reference/gallery.html (lines 122–607).
   .filter-section / .filter-chip already exist (page-experiences) —
   gallery's sticky variant scoped via body class to avoid breaking
   the experiences landing.
   ============================================================ */
.gallery-hero { background: var(--color-sand); padding: 80px 0 64px; position: relative; overflow: hidden; }
.gallery-hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
.gallery-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; }
.gallery-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
.gallery-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.gallery-hero h1 { margin-bottom: 16px; font-weight: 400; }
.gallery-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.gallery-hero-tagline { font-family: var(--font-script); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--color-nubian-red); line-height: 1.2; }
.gallery-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background: white; border-radius: 16px; padding: 24px; box-shadow: var(--shadow-md); }
.gallery-hero-stat { display: flex; flex-direction: column; gap: 4px; }
.gallery-hero-stat strong { font-family: var(--font-display); font-size: 28px; color: var(--color-nubian-blue); font-weight: 500; line-height: 1; }
.gallery-hero-stat span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

/* Sticky filters — scoped to gallery only so the experiences page keeps its non-sticky variant */
body.page-template-page-gallery .filter-section { position: sticky; top: 80px; z-index: 50; padding: 24px 0; border-bottom: 1px solid var(--color-border); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.filter-chip-icon { width: 16px; height: 16px; }

.masonry-section { padding: 48px 0 100px; background: white; }
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.tile { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); display: flex; align-items: center; justify-content: center; }
.tile:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); z-index: 2; }
.tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%); z-index: 1; opacity: 0; transition: opacity var(--transition); }
.tile:hover::before { opacity: 1; }
.tile::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 21px); pointer-events: none; }
.tile-emoji { font-size: 60px; opacity: 0.4; transition: transform var(--transition); }
.tile.size-l .tile-emoji { font-size: 100px; }
.tile.size-xl .tile-emoji { font-size: 140px; }
.tile:hover .tile-emoji { transform: scale(1.1); }
.tile-caption { position: absolute; bottom: 16px; left: 20px; right: 20px; z-index: 2; color: white; opacity: 0; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); }
.tile:hover .tile-caption { opacity: 1; transform: translateY(0); }
.tile-caption-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-warm-yellow); margin-bottom: 4px; }
.tile-caption-title { font-family: var(--font-display); font-size: 16px; font-weight: 500; line-height: 1.2; }
.tile.size-s { grid-column: span 1; grid-row: span 1; }
.tile.size-m { grid-column: span 1; grid-row: span 2; }
.tile.size-l { grid-column: span 2; grid-row: span 2; }
.tile.size-w { grid-column: span 2; grid-row: span 1; }
.tile.size-xl { grid-column: span 2; grid-row: span 3; }
.tile.cat-rooms { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
.tile.cat-rooms.alt { background: linear-gradient(160deg, #2B5FA0 0%, #1B4F8C 100%); }
.tile.cat-restaurant { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
.tile.cat-restaurant.alt { background: linear-gradient(160deg, #F4C430 0%, #E8893A 100%); }
.tile.cat-island { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 100%); }
.tile.cat-island.alt { background: linear-gradient(160deg, #4A8B2C 0%, #2BB3B3 100%); }
.tile.cat-experiences { background: linear-gradient(160deg, #D64545 0%, #B53737 100%); }
.tile.cat-experiences.alt { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
.tile.cat-guests { background: linear-gradient(160deg, #F4C430 0%, #E8893A 100%); }
.tile.cat-guests.alt { background: linear-gradient(160deg, #4A8B2C 0%, #6BA838 100%); }
.tile-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; color: var(--color-nubian-blue); z-index: 2; }

.social-section { padding: 100px 0; background: var(--color-sand); position: relative; overflow: hidden; }
.social-section::before { content: ''; position: absolute; top: -150px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.12; }
.social-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
.social-content h2 { margin-bottom: 16px; }
.social-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.social-content > p { font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.social-handle { font-family: var(--font-script); font-size: 28px; color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1; }
.social-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: all var(--transition); }
.social-btn.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045); color: white; }
.social-btn.instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253, 29, 29, 0.3); }
.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.facebook:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3); }
.social-btn.outline { background: white; border: 1px solid var(--color-border); color: var(--color-text); }
.social-btn.outline:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.social-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-preview-tile { aspect-ratio: 1; border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 60px; opacity: 0.5; transition: transform var(--transition); }
.social-preview-tile:hover { transform: scale(1.05); opacity: 0.8; }
.social-preview-tile.p1 { background: linear-gradient(160deg, #1B4F8C, #14406F); transform: rotate(-2deg); }
.social-preview-tile.p2 { background: linear-gradient(160deg, #E8893A, #D64545); transform: rotate(2deg); }
.social-preview-tile.p3 { background: linear-gradient(160deg, #F4C430, #E8893A); transform: rotate(2deg); }
.social-preview-tile.p4 { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); transform: rotate(-2deg); }

@media (max-width: 1024px) {
  .gallery-hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .tile.size-xl { grid-column: span 2; grid-row: span 2; }
  .social-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .gallery-hero { padding: 48px 0 32px; }
  .gallery-hero-stats { grid-template-columns: 1fr 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 12px; }
  .tile.size-l, .tile.size-xl, .tile.size-w { grid-column: span 2; }
  .tile.size-l { grid-row: span 2; }
  .tile.size-xl { grid-row: span 2; }
  .tile.size-w { grid-row: span 1; }
}


/* ============================================================
   === blog (index + single) ===
   Verbatim from _mockup-reference/blog.html and
   _mockup-reference/blog-day-in-the-life-heissa.html.
   The mockup's `.hero` collides with front-page; blog hero is scoped
   under body.page-template-page-blog / body.blog / body.archive.
   ============================================================ */

/* Blog index hero (scoped to avoid front-page collision) */
body.page-template-page-blog .hero,
body.blog .hero,
body.archive .hero,
body.search .hero {
  background: var(--color-sand); padding: 64px 0 80px; position: relative; overflow: hidden;
}
body.page-template-page-blog .hero::before,
body.blog .hero::before,
body.archive .hero::before,
body.search .hero::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.15;
}
.hero-content { max-width: 720px; position: relative; }

.cat-section { background: white; padding: 24px 0; border-bottom: 1px solid var(--color-border); position: sticky; top: 80px; z-index: 50; }
.cat-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cat-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); cursor: pointer; }
.cat-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.cat-link.active { background: var(--color-nubian-blue); color: white; border-color: var(--color-nubian-blue); }
.cat-link span { display: inline-block; margin-left: 6px; padding: 1px 6px; background: rgba(0,0,0,0.08); border-radius: 8px; font-size: 11px; }
.cat-link.active span { background: rgba(255,255,255,0.18); }

.featured-section { padding: 64px 0 48px; background: white; }
.featured-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--color-sand); border-radius: 32px; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.featured-image { background: linear-gradient(160deg, #1B4F8C 0%, #2BB3B3 50%, #F4C430 100%); min-height: 480px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.featured-image::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.featured-image-emoji { font-size: 220px; opacity: 0.5; position: relative; z-index: 1; }
.featured-image-tag { position: absolute; top: 32px; left: 32px; background: var(--color-warm-yellow); color: var(--color-text); padding: 8px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; z-index: 2; }
.featured-content { padding: 48px 56px; display: flex; flex-direction: column; justify-content: center; }
.featured-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; font-size: 13px; color: var(--color-text-muted); flex-wrap: wrap; }
.featured-meta-cat { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-nubian-red); }
.featured-meta-dot { width: 4px; height: 4px; background: var(--color-text-muted); border-radius: 50%; opacity: 0.5; }
.featured-content h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 400; margin-bottom: 16px; line-height: 1.15; }
.featured-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.featured-excerpt { font-size: 17px; line-height: 1.65; margin-bottom: 24px; color: var(--color-text-muted); }
.featured-author { display: flex; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid var(--color-border); margin-bottom: 24px; }
.featured-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.featured-author-name { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--color-text); display: block; }
.featured-author-role { font-size: 12px; color: var(--color-text-muted); letter-spacing: 0.04em; }
.featured-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--color-nubian-blue); color: white; font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); align-self: flex-start; }
.featured-cta:hover { background: var(--color-nubian-blue-deep); transform: translateX(4px); }

.posts-section { padding: 48px 0 100px; background: white; }
.posts-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.posts-section-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.posts-section-head h2 { margin: 0; }
.posts-section-head .head-link { font-size: 14px; font-weight: 600; color: var(--color-nubian-blue); border-bottom: 1px solid currentColor; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; transition: all var(--transition); background: white; border: 1px solid transparent; }
.post-card:hover { border-color: var(--color-warm-yellow); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.post-card-image { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-card-image::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.post-card-image-emoji { font-size: 80px; opacity: 0.45; position: relative; z-index: 1; }
.post-card-image-tag { position: absolute; top: 16px; left: 16px; background: white; color: var(--color-text); padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2; }
.gr-aswan-guide { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
.gr-island-life { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 100%); }
.gr-food-recipes { background: linear-gradient(160deg, #4A8B2C 0%, #2BB3B3 100%); }
.gr-nubian-culture { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
.gr-egypt-travel { background: linear-gradient(160deg, #F4C430 0%, #E8893A 100%); }
.gr-photography { background: linear-gradient(160deg, #D64545 0%, #B53737 100%); }
.gr-people { background: linear-gradient(160deg, #2BB3B3 0%, #4A8B2C 100%); }
.gr-history { background: linear-gradient(160deg, #14406F 0%, #2BB3B3 100%); }
.post-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.post-card-meta-cat { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-nubian-red); }
.post-card-meta-dot { width: 3px; height: 3px; background: var(--color-text-muted); border-radius: 50%; opacity: 0.5; }
.post-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 12px; line-height: 1.2; flex: 1; }
.post-card h3 a { color: var(--color-text); transition: color var(--transition); }
.post-card h3 a:hover { color: var(--color-nubian-blue); }
.post-card-excerpt { font-size: 14px; line-height: 1.55; color: var(--color-text-muted); margin-bottom: 16px; }
.post-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--color-border); }
.post-card-author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text); font-weight: 500; }
.post-card-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 11px; }
.post-card-readtime { font-size: 12px; color: var(--color-text-muted); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
.pagination a:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }
.pagination .current { background: var(--color-nubian-blue); color: white; border-color: var(--color-nubian-blue); cursor: default; }
.pagination .disabled { opacity: 0.4; cursor: not-allowed; }

.newsletter-section { padding: 100px 0; background: var(--color-sand); }
.newsletter-card { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.newsletter-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
.newsletter-card::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 250px; height: 250px; background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%); opacity: 0.12; }
.newsletter-card > * { position: relative; }
.newsletter-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-warm-yellow); margin-bottom: 16px; justify-content: center; }
.newsletter-eyebrow::before, .newsletter-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-warm-yellow); }
.newsletter-card h2 { color: white; margin: 0 auto 16px; max-width: 600px; }
.newsletter-card h2 em { color: var(--color-warm-yellow); font-style: italic; }
.newsletter-card p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; padding: 16px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-family: var(--font-body); font-size: 14px; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; background: rgba(255,255,255,0.15); border-color: var(--color-warm-yellow); }
.newsletter-submit { padding: 16px 28px; border-radius: 999px; background: var(--color-warm-yellow); color: var(--color-text); font-weight: 600; font-size: 14px; cursor: pointer; transition: all var(--transition); }
.newsletter-submit:hover { background: var(--color-warm-yellow-deep); transform: translateY(-2px); }
.newsletter-disclaimer { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* Single post hero */
.post-hero { background: var(--color-sand); padding: 56px 0 48px; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
.post-hero-content { max-width: 760px; position: relative; }
.post-hero-cat { display: inline-block; padding: 6px 14px; background: white; color: var(--color-nubian-red); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.post-hero h1 { margin-bottom: 24px; font-weight: 400; }
.post-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.post-hero-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(20, 17, 15, 0.1); }
.post-hero-author { display: flex; align-items: center; gap: 12px; }
.post-hero-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.post-hero-author-name { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--color-text); display: block; }
.post-hero-author-role { font-size: 12px; color: var(--color-text-muted); letter-spacing: 0.04em; }
.post-hero-stat { font-size: 13px; color: var(--color-text-muted); display: flex; align-items: center; gap: 6px; }
.post-hero-stat svg { width: 14px; height: 14px; }
.post-hero-divider { width: 1px; height: 24px; background: rgba(20,17,15,0.1); }

.post-feature { background: linear-gradient(160deg, #F4C430 0%, #E8893A 50%, #D64545 100%); height: 460px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-feature::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.post-feature-emoji { font-size: 240px; opacity: 0.5; position: relative; z-index: 1; }
.post-feature-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); padding: 12px 24px; border-radius: 999px; font-size: 13px; color: var(--color-text); font-style: italic; z-index: 2; }

.post-body { padding: 80px 0; background: white; }
.post-content { font-family: var(--font-body); }
.post-content > p { font-size: 18px; line-height: 1.75; margin-bottom: 22px; color: var(--color-text); }
.post-content > p:first-of-type::first-letter { font-family: var(--font-display); font-size: 72px; font-weight: 500; float: left; line-height: 0.85; margin: 8px 14px 0 0; color: var(--color-nubian-blue); font-style: italic; }
.post-content > p:first-of-type { font-size: 22px; line-height: 1.6; color: var(--color-text); margin-bottom: 32px; }
.post-content h2 { margin-top: 56px; margin-bottom: 24px; font-weight: 400; scroll-margin-top: 100px; }
.post-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.post-content h3 { margin-top: 36px; margin-bottom: 16px; font-weight: 500; }
.post-content h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.post-content blockquote { margin: 32px 0; padding: 24px 0 24px 28px; border-left: 4px solid var(--color-warm-yellow); font-family: var(--font-display); font-size: 24px; line-height: 1.4; font-style: italic; color: var(--color-nubian-blue); }
.post-content blockquote p { font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; margin: 0; }
.post-content ul, .post-content ol { margin: 20px 0; padding-left: 0; }
.post-content ul li, .post-content ol li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 17px; line-height: 1.6; color: var(--color-text); }
.post-content ul li::before { content: ''; position: absolute; left: 8px; top: 11px; width: 8px; height: 8px; background: var(--color-warm-yellow); border-radius: 50%; }
.post-content ol { counter-reset: item; }
.post-content ol li { counter-increment: item; }
.post-content ol li::before { content: counter(item); position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 600; color: var(--color-nubian-blue); font-size: 17px; }
.post-content li strong { color: var(--color-text); font-weight: 600; }
.post-content a { color: var(--color-nubian-blue); border-bottom: 1px solid currentColor; transition: color var(--transition); }
.post-content a:hover { color: var(--color-nubian-blue-deep); }

.share-bar { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; margin-top: 64px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); flex-wrap: wrap; gap: 16px; }
.share-label { font-size: 13px; color: var(--color-text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.share-buttons { display: flex; gap: 8px; }
.share-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--color-sand); display: flex; align-items: center; justify-content: center; color: var(--color-text); transition: all var(--transition); }
.share-btn:hover { background: var(--color-nubian-blue); color: white; transform: translateY(-2px); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 6px 12px; background: var(--color-sand); border-radius: 999px; font-size: 12px; color: var(--color-text-muted); font-weight: 500; transition: all var(--transition); }
.tag:hover { background: var(--color-nubian-blue); color: white; }

.author-bio { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; padding: 40px; background: var(--color-sand); border-radius: 24px; margin: 64px 0; }
.author-bio-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--color-warm-yellow), var(--color-nubian-orange)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 32px; }
.author-bio-text h4 { font-size: 18px; margin-bottom: 4px; font-weight: 500; }
.author-bio-role { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-nubian-red); font-weight: 600; margin-bottom: 12px; }
.author-bio-text p { font-size: 15px; line-height: 1.6; margin: 0 0 12px; }
.author-bio-link { font-size: 14px; font-weight: 600; color: var(--color-nubian-blue); border-bottom: 1px solid currentColor; }

.related-section { padding: 80px 0; background: var(--color-sand); }
.related-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.related-head .section-eyebrow { justify-content: center; }
.related-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.related-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: white; border-radius: 20px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
.related-card:hover { border-color: var(--color-warm-yellow); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.related-card-image { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.related-card-image::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.related-card-image-emoji { font-size: 64px; opacity: 0.45; position: relative; }
/* HARDCODED-AUDIT A-7 / A-8 — real featured images on blog cards. */
.featured-image-img,
.post-card-image-img,
.related-card-image-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.related-card.has-photo .related-card-image::after { display: none; }
.featured-card.has-photo .featured-image-tag,
.post-card.has-photo .post-card-image-tag {
  z-index: 2;
}
.related-card-body { padding: 24px; }
.related-card-cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-nubian-red); font-weight: 700; margin-bottom: 8px; }
.related-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 500; line-height: 1.3; }
.related-card h3 a { color: var(--color-text); transition: color var(--transition); }
.related-card h3 a:hover { color: var(--color-nubian-blue); }
.related-card-readtime { font-size: 12px; color: var(--color-text-muted); }

@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 280px; }
  .featured-content { padding: 32px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .post-feature { height: 320px; }
  .post-feature-emoji { font-size: 160px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .cat-list { gap: 6px; }
  .cat-link { padding: 6px 12px; font-size: 12px; }
  .posts-grid { grid-template-columns: 1fr; }
  .featured-content { padding: 24px; }
  .featured-content h2 { font-size: 1.5rem; }
  .newsletter-card { padding: 48px 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: auto; width: 100%; }
  .post-hero { padding: 40px 0 32px; }
  .post-feature { height: 240px; }
  .post-feature-emoji { font-size: 120px; }
  .post-body { padding: 48px 0; }
  .post-content > p:first-of-type { font-size: 18px; }
  .post-content > p:first-of-type::first-letter { font-size: 56px; }
  .author-bio { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .author-bio-avatar { margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   === offers ===
   Verbatim from _mockup-reference/offers.html. Hero overrides
   scoped via body.page-template-page-offers to avoid colliding
   with the front-page hero block.
   ============================================================ */
body.page-template-page-offers .hero { background: var(--color-sand); padding: 72px 0 96px; }
body.page-template-page-offers .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-offers .hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 48px; margin-top: 40px; padding: 24px 0; border-top: 1px solid var(--color-border); }
body.page-template-page-offers .hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--color-nubian-blue); line-height: 1; margin-bottom: 4px; font-variation-settings: "opsz" 144; }
body.page-template-page-offers .hero-stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

.offers-section { padding: 100px 0; background: white; }
.offers-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.offers-head .section-eyebrow { justify-content: center; }
.offers-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.offers-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.offers-head p { font-size: 17px; }

.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.offer { background: white; border-radius: 24px; overflow: hidden; border: 1px solid var(--color-border); transition: all var(--transition); position: relative; }
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
.offer.featured { border-color: var(--color-warm-yellow); box-shadow: var(--shadow-md); grid-column: span 2; display: grid; grid-template-columns: 1.4fr 1fr; }
.offer.featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-banner { height: 140px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.offer-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.06) 16px, rgba(255,255,255,0.06) 17px); }
.offer-banner-emoji { font-size: 64px; opacity: 0.45; position: relative; z-index: 1; }
.offer-1 .offer-banner { background: linear-gradient(135deg, #1B4F8C 0%, #2BB3B3 100%); }
.offer-2 .offer-banner { background: linear-gradient(135deg, #E8893A 0%, #D64545 100%); }
.offer-3 .offer-banner { background: linear-gradient(135deg, #4A8B2C 0%, #F4C430 100%); }
.offer-4 .offer-banner { background: linear-gradient(135deg, #2BB3B3 0%, #1B4F8C 100%); }
.offer-5 .offer-banner { background: linear-gradient(135deg, #D64545 0%, #B53737 100%); }
.offer.featured .offer-banner { height: 100%; min-height: 280px; }
.offer.featured .offer-banner-emoji { font-size: 100px; }
.offer-discount-badge { position: absolute; top: 20px; right: 20px; background: white; color: var(--color-nubian-red); padding: 12px 20px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 16px; box-shadow: var(--shadow-md); z-index: 2; line-height: 1; }
.offer-discount-badge small { display: block; font-family: var(--font-body); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-top: 2px; }
.offer.featured .offer-discount-badge { background: var(--color-warm-yellow); color: var(--color-text); }
.offer.featured .offer-discount-badge small { color: var(--color-text); opacity: 0.7; }
.offer-tag-corner { position: absolute; top: 20px; left: 20px; padding: 6px 12px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(6px); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text); z-index: 2; }
.offer-body { padding: 32px; }
.offer-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 8px; }
.offer h3 { font-size: 24px; margin-bottom: 12px; font-weight: 500; }
.offer h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.offer-desc { font-size: 15px; line-height: 1.65; margin-bottom: 24px; color: var(--color-text-muted); }
.offer-includes { list-style: none; margin: 0 0 24px 0; padding: 16px 0; border-top: 1px dashed var(--color-border); border-bottom: 1px dashed var(--color-border); }
.offer-includes li { display: flex; gap: 10px; align-items: start; font-size: 14px; line-height: 1.5; padding: 4px 0; color: var(--color-text-muted); }
.offer-includes li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 7px; }
.offer-includes li strong { color: var(--color-text); font-weight: 600; }
.offer-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.offer-code { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--color-sand); border-radius: 8px; font-family: 'SF Mono', Monaco, monospace; font-size: 13px; font-weight: 600; color: var(--color-text); }
.offer-code-label { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.offer-cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; background: var(--color-nubian-blue); color: white; font-weight: 600; font-size: 13px; border-radius: 999px; transition: all var(--transition); }
.offer-cta:hover { background: var(--color-nubian-blue-deep); transform: translateY(-2px); }

.terms-section { padding: 100px 0; background: var(--color-sand); }
.terms-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.terms-head .section-eyebrow { justify-content: center; }
.terms-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.terms-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.terms-head p { font-size: 17px; }
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.term-card { background: white; padding: 28px; border-radius: 20px; transition: all var(--transition); }
.term-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.term-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-sand); color: var(--color-nubian-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.term-card h4 { font-size: 17px; margin-bottom: 8px; font-weight: 500; }
.term-card p { font-size: 14px; line-height: 1.6; }

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .offer.featured .offer-banner { min-height: 200px; }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body.page-template-page-offers .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .terms-grid { grid-template-columns: 1fr; }
  .offer-actions { flex-direction: column; align-items: stretch; }
  .offer-actions > * { justify-content: center; text-align: center; }
}


/* ============================================================
   === groups ===
   Verbatim from _mockup-reference/groups.html. Hero classes scoped
   to avoid front-page collision; final-cta blue gradient + .final-btn
   yellow variant added.
   ============================================================ */
body.page-template-page-groups .hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; }
body.page-template-page-groups .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-groups .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-groups .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); max-width: 520px; }
body.page-template-page-groups .hero-stat-num { font-family: var(--font-display); font-size: 32px; color: var(--color-nubian-blue); font-weight: 500; line-height: 1; margin-bottom: 4px; font-variation-settings: "opsz" 144; }
body.page-template-page-groups .hero-stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-groups .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-groups .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
body.page-template-page-groups .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
body.page-template-page-groups .hero-arch-emoji { font-size: 200px; opacity: 0.5; position: relative; z-index: 1; }
body.page-template-page-groups .hero-badge { position: absolute; bottom: 32px; left: -32px; background: var(--color-warm-yellow); padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-groups .hero-badge strong { font-family: var(--font-display); display: block; font-size: 18px; color: var(--color-text); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-groups .hero-badge span { font-size: 12px; color: var(--color-text); font-weight: 600; }

.why-section { padding: 100px 0; background: white; }
.why-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.why-head .section-eyebrow { justify-content: center; }
.why-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.why-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--color-sand); padding: 32px 24px; border-radius: 20px; text-align: center; transition: all var(--transition); }
.why-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-4px); border: 1px solid var(--color-warm-yellow); }
.why-card-icon { width: 56px; height: 56px; border-radius: 14px; background: white; display: flex; align-items: center; justify-content: center; color: var(--color-nubian-blue); margin: 0 auto 16px; }
.why-card h4 { font-size: 18px; margin-bottom: 8px; font-weight: 500; }
.why-card p { font-size: 14px; line-height: 1.6; }

.use-section { padding: 100px 0; background: var(--color-sand); }
.use-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.use-head .section-eyebrow { justify-content: center; }
.use-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.use-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.use-card { background: white; border-radius: 24px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
.use-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--color-warm-yellow); }
.use-card-image { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 80px; opacity: 0.5; position: relative; overflow: hidden; }
.use-card-image::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.06) 16px, rgba(255,255,255,0.06) 17px); }
.use-card-1 .use-card-image { background: linear-gradient(160deg, #1B4F8C, #14406F); }
.use-card-2 .use-card-image { background: linear-gradient(160deg, #E8893A, #D64545); }
.use-card-3 .use-card-image { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
.use-card-4 .use-card-image { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
.use-card-body { padding: 32px; }
.use-card-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); font-weight: 600; margin-bottom: 12px; }
.use-card h4 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.use-card h4 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.use-card > p { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.use-card ul { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.use-card ul li { display: flex; gap: 10px; align-items: start; font-size: 13px; line-height: 1.5; color: var(--color-text-muted); }
.use-card ul li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 6px; }

.inc-section { padding: 100px 0; background: white; }
.inc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.inc-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.inc-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.inc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.inc-item { display: flex; gap: 12px; align-items: start; font-size: 14px; line-height: 1.5; color: var(--color-text); }
.inc-item-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--color-nubian-green); color: white; display: flex; align-items: center; justify-content: center; }
.inc-visual { aspect-ratio: 4/5; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #4A8B2C 0%, #2BB3B3 100%); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.inc-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.inc-visual-emoji { font-size: 180px; opacity: 0.5; position: relative; }

.itin-section { padding: 100px 0; background: var(--color-sand); }
.itin-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.itin-head .section-eyebrow { justify-content: center; }
.itin-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.itin-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.itin-head p { font-size: 17px; }
.itin-timeline { max-width: 880px; margin: 0 auto; position: relative; }
.itin-timeline::before { content: ''; position: absolute; left: 28px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--color-warm-yellow) 0%, var(--color-nubian-red) 100%); }
.itin-day { display: grid; grid-template-columns: 56px 1fr; gap: 32px; padding-bottom: 32px; align-items: start; position: relative; }
.itin-day:last-child { padding-bottom: 0; }
.itin-day-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--color-warm-yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--color-text); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(244, 196, 48, 0.4); text-align: center; line-height: 1.1; padding: 4px 0; }
.itin-day-dot small { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; font-family: var(--font-body); font-weight: 700; }
.itin-day-content { background: white; padding: 24px 28px; border-radius: 20px; box-shadow: var(--shadow-sm); }
.itin-day h4 { font-size: 18px; margin-bottom: 8px; font-weight: 500; }
.itin-day h4 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.itin-day p { font-size: 14px; line-height: 1.65; margin: 0; }

.pricing-section { padding: 100px 0; background: white; }
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.pricing-head .section-eyebrow { justify-content: center; }
.pricing-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.pricing-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pricing-tier { background: var(--color-sand); border-radius: 24px; padding: 40px 32px; transition: all var(--transition); border: 2px solid transparent; }
.pricing-tier:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-tier.popular { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); color: white; border-color: var(--color-warm-yellow); position: relative; }
.pricing-tier.popular::before { content: 'Most popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-warm-yellow); color: var(--color-text); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.pricing-tier.popular h3 em { color: var(--color-warm-yellow); }
.pricing-tier.popular p, .pricing-tier.popular ul li { color: rgba(255,255,255,0.85); }
.pricing-tier.popular ul li::before { background: var(--color-warm-yellow); }
.pricing-tier.popular .pricing-amount { color: var(--color-warm-yellow); }
.pricing-tier.popular .pricing-tier-cta { background: var(--color-warm-yellow); color: var(--color-text); }
.pricing-tier-name { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 8px; }
.pricing-tier.popular .pricing-tier-name { color: var(--color-warm-yellow); }
.pricing-tier h3 { font-size: 24px; margin-bottom: 8px; font-weight: 500; }
.pricing-tier h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.pricing-amount { font-family: var(--font-display); font-size: 40px; color: var(--color-nubian-blue); line-height: 1; font-weight: 500; margin-bottom: 6px; font-variation-settings: "opsz" 144; }
.pricing-amount small { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); font-weight: 400; }
.pricing-tier.popular .pricing-amount small { color: rgba(255,255,255,0.7); }
.pricing-detail { font-size: 13px; color: var(--color-text-muted); margin-bottom: 24px; }
.pricing-tier.popular .pricing-detail { color: rgba(255,255,255,0.7); }
.pricing-tier ul { display: flex; flex-direction: column; gap: 10px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px dashed var(--color-border); }
.pricing-tier.popular ul { border-bottom-color: rgba(255,255,255,0.2); }
.pricing-tier ul li { display: flex; gap: 10px; align-items: start; font-size: 14px; line-height: 1.5; }
.pricing-tier ul li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 7px; }
.pricing-tier-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: var(--color-nubian-blue); color: white; font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); width: 100%; justify-content: center; }
.pricing-tier-cta:hover { background: var(--color-nubian-blue-deep); }

.faq-section { padding: 100px 0; background: var(--color-sand); }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.faq-head .section-eyebrow { justify-content: center; }
.faq-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.faq-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }

/* Final CTA — yellow .final-btn variant (used by groups, weddings) */
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--color-warm-yellow); color: var(--color-text); font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); }
.final-btn:hover { background: var(--color-warm-yellow-deep); transform: translateY(-2px); }
.final-btn.outline { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; }
.final-btn.outline:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1024px) {
  body.page-template-page-groups .hero-grid, .inc-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-groups .hero-stats { max-width: none; }
  body.page-template-page-groups .hero-visual, .inc-visual { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .inc-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-groups .hero-stats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .itin-timeline::before { left: 22px; }
  .itin-day { grid-template-columns: 44px 1fr; gap: 16px; }
  .itin-day-dot { width: 44px; height: 44px; font-size: 12px; }
}


/* ============================================================
   === weddings ===
   Verbatim from _mockup-reference/weddings.html. Hero arch uses red→
   yellow gradient (vs. groups' blue) — scoped via body class.
   ============================================================ */
body.page-template-page-weddings .hero { background: var(--color-sand); padding: 72px 0 100px; position: relative; overflow: hidden; }
body.page-template-page-weddings .hero::before { content: ''; position: absolute; top: -250px; right: -150px; width: 700px; height: 700px; background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%); opacity: 0.12; }
body.page-template-page-weddings .hero::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-weddings .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-weddings .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 540px; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); }
body.page-template-page-weddings .hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--color-nubian-red); line-height: 1; margin-bottom: 4px; font-variation-settings: "opsz" 144; font-style: italic; }
body.page-template-page-weddings .hero-stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-weddings .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-weddings .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #D64545 0%, #E8893A 50%, #F4C430 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
body.page-template-page-weddings .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px); }
body.page-template-page-weddings .hero-arch-emoji { font-size: 200px; opacity: 0.4; position: relative; z-index: 1; }
body.page-template-page-weddings .hero-arch-script { position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%); font-family: var(--font-script); color: white; font-size: 56px; font-weight: 700; z-index: 2; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
body.page-template-page-weddings .hero-badge { position: absolute; top: 32px; left: -32px; background: white; padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-weddings .hero-badge strong { font-family: var(--font-display); display: block; font-size: 17px; color: var(--color-nubian-red); margin-bottom: 2px; font-weight: 500; font-style: italic; }
body.page-template-page-weddings .hero-badge span { font-size: 12px; color: var(--color-text-muted); }

.packages-section { padding: 100px 0; background: white; }
.packages-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.packages-head .section-eyebrow { justify-content: center; }
.packages-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.packages-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.packages-head h2 { margin-bottom: 16px; }
.packages-head p { font-size: 17px; }
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.package { background: var(--color-sand); border-radius: 24px; padding: 36px 32px; transition: all var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
.package:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); transform: translateY(-6px); }
.package.featured { background: linear-gradient(160deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); color: white; border-color: transparent; }
.package.featured h3 { color: white; }
.package.featured h3 em { color: var(--color-warm-yellow); }
.package.featured .package-price { color: var(--color-warm-yellow); }
.package.featured .package-includes-item { color: rgba(255,255,255,0.85); }
.package.featured .package-includes-item strong { color: white; }
.package.featured .package-meta { color: rgba(255,255,255,0.7); }
.package.featured .package-cta { background: var(--color-warm-yellow); color: var(--color-text); }
.package.featured .package-cta:hover { background: var(--color-warm-yellow-deep); }
.package.featured::before { content: 'Most popular'; position: absolute; top: 24px; right: 24px; padding: 4px 12px; background: var(--color-warm-yellow); color: var(--color-text); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; }
.package-icon { width: 64px; height: 64px; border-radius: 16px; background: white; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 32px; }
.package.featured .package-icon { background: rgba(255,255,255,0.15); }
.package-meta { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 12px; }
.package h3 { font-size: 26px; margin-bottom: 12px; font-weight: 500; }
.package h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.package-price { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--color-nubian-red); margin-bottom: 8px; line-height: 1; font-variation-settings: "opsz" 144; }
.package-price-suffix { font-size: 14px; color: var(--color-text-muted); font-weight: 400; margin-left: 6px; }
.package-desc { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.package.featured .package-desc { color: rgba(255,255,255,0.85); }
.package-includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.package.featured .package-includes { border-top-color: rgba(255,255,255,0.15); }
.package-includes-item { display: flex; gap: 12px; align-items: start; font-size: 14px; line-height: 1.55; color: var(--color-text-muted); }
.package-includes-item svg { flex-shrink: 0; color: var(--color-nubian-green); margin-top: 2px; }
.package.featured .package-includes-item svg { color: var(--color-warm-yellow); }
.package-includes-item strong { color: var(--color-text); font-weight: 600; }
.package-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--color-nubian-red); color: white; font-weight: 600; font-size: 13px; letter-spacing: 0.04em; border-radius: 999px; transition: all var(--transition); }
.package-cta:hover { background: var(--color-nubian-red-deep); transform: translateY(-2px); }

.timeline-section { padding: 100px 0; background: var(--color-sand); }
.timeline-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.timeline-head .section-eyebrow { justify-content: center; }
.timeline-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.timeline-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.day-timeline { max-width: 880px; margin: 0 auto; position: relative; }
.day-timeline::before { content: ''; position: absolute; left: 28px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--color-warm-yellow) 0%, var(--color-nubian-red) 100%); }
.day-step { display: grid; grid-template-columns: 56px 1fr; gap: 32px; padding-bottom: 32px; align-items: start; position: relative; }
.day-step:last-child { padding-bottom: 0; }
.day-step-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--color-warm-yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--color-text); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(244, 196, 48, 0.35); }
.day-step-content { background: white; padding: 24px 28px; border-radius: 20px; box-shadow: var(--shadow-sm); margin-top: 4px; }
.day-step h4 { font-size: 18px; margin-bottom: 6px; font-weight: 500; }
.day-step h4 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.day-step p { font-size: 14px; line-height: 1.65; }

.inclusions-section { padding: 100px 0; background: white; }
.inclusions-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.inclusions-head .section-eyebrow { justify-content: center; }
.inclusions-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.inclusions-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.inclusions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inclusion-card { padding: 28px 24px; background: var(--color-sand); border-radius: 20px; transition: all var(--transition); border: 1px solid transparent; }
.inclusion-card:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); transform: translateY(-4px); }
.inclusion-card-icon { width: 56px; height: 56px; border-radius: 14px; background: white; color: var(--color-nubian-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.inclusion-card:hover .inclusion-card-icon { background: var(--color-nubian-blue); color: white; }
.inclusion-card h4 { font-size: 17px; margin-bottom: 8px; font-weight: 500; }
.inclusion-card p { font-size: 14px; line-height: 1.6; }

.testimonial-section { padding: 100px 0; background: linear-gradient(160deg, var(--color-nubian-red) 0%, var(--color-nubian-red-deep) 100%); color: white; position: relative; overflow: hidden; }
.testimonial-section::before { content: ''; position: absolute; top: -200px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
.testimonial-card { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.testimonial-card .section-eyebrow { color: var(--color-warm-yellow); justify-content: center; }
.testimonial-card .section-eyebrow::before, .testimonial-card .section-eyebrow::after { background: var(--color-warm-yellow); }
.testimonial-card .section-eyebrow::after { content: ''; width: 28px; height: 1px; }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 96px; line-height: 0.5; color: var(--color-warm-yellow); height: 32px; margin-top: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; font-style: italic; line-height: 1.4; margin: 24px 0 32px; color: white; }
.testimonial-text em,
.testimonial-text strong { color: var(--color-warm-yellow); font-style: normal; font-weight: 500; }
.testimonial-attribution { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.testimonial-attribution strong { color: white; font-weight: 600; }
.testimonial-script { font-family: var(--font-script); color: var(--color-warm-yellow); font-size: 24px; margin-top: 8px; letter-spacing: normal; text-transform: none; font-weight: 600; }

.inquire-section { padding: 100px 0; background: var(--color-sand); }
.inquire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.inquire-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.inquire-content > p { font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.inquire-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.inquire-check { display: flex; gap: 12px; align-items: start; font-size: 15px; line-height: 1.55; color: var(--color-text); }
.inquire-check svg { flex-shrink: 0; color: var(--color-nubian-green); margin-top: 2px; }
.inquire-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.inquire-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; border-radius: 999px; transition: all var(--transition); }
.inquire-btn.primary { background: var(--color-nubian-red); color: white; box-shadow: 0 4px 16px rgba(214, 69, 69, 0.25); }
.inquire-btn.primary:hover { background: var(--color-nubian-red-deep); transform: translateY(-2px); }
.inquire-btn.whatsapp { background: #25D366; color: white; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
.inquire-btn.whatsapp:hover { background: #1FB855; transform: translateY(-2px); }
.inquire-card { background: white; border-radius: 24px; padding: 40px 32px; box-shadow: var(--shadow-md); }
.inquire-card-head { padding-bottom: 20px; border-bottom: 1px solid var(--color-border); margin-bottom: 24px; }
.inquire-card-head h3 { font-size: 22px; margin-bottom: 4px; font-weight: 500; }
.inquire-card-head h3 em { font-style: italic; color: var(--color-nubian-red); font-weight: 500; }
.inquire-card-head p { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.inquire-detail { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--color-border); align-items: start; }
.inquire-detail:last-child { border-bottom: none; padding-bottom: 0; }
.inquire-detail-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--color-sand); color: var(--color-nubian-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inquire-detail-text strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--color-text); margin-bottom: 2px; }
.inquire-detail-text span { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

@media (max-width: 1024px) {
  body.page-template-page-weddings .hero-grid, .inquire-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-weddings .hero-stats { max-width: none; }
  body.page-template-page-weddings .hero-visual { max-width: 480px; margin: 0 auto; }
  .packages-grid, .inclusions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-weddings .hero-stats { grid-template-columns: 1fr; }
  .day-timeline::before { left: 22px; }
  .day-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .day-step-dot { width: 44px; height: 44px; font-size: 11px; }
}


/* ============================================================
   === press ===
   Verbatim from _mockup-reference/press.html. All press-only classes
   scoped to body.page-template-page-press to avoid collisions with
   reused class names elsewhere (e.g. .section, .quotes-section).
   ============================================================ */
body.page-template-page-press .hero { background: var(--color-sand); padding: 72px 0 100px; position: relative; overflow: hidden; }
body.page-template-page-press .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-press .hero h1 { max-width: 800px; }
body.page-template-page-press .hero-lede { font-size: 18px; line-height: 1.65; max-width: 640px; margin-bottom: 32px; }

body.page-template-page-press .hero-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 720px; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); }
body.page-template-page-press .hero-quick-item strong { font-family: var(--font-display); display: block; font-size: 20px; color: var(--color-nubian-blue); line-height: 1.1; margin-bottom: 4px; font-variation-settings: "opsz" 144; }
body.page-template-page-press .hero-quick-item span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

body.page-template-page-press .glance-section { padding: 100px 0; background: white; }
body.page-template-page-press .glance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
body.page-template-page-press .glance-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-press .glance-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-press .glance-content > p:first-of-type::first-letter { font-family: var(--font-display); font-size: 64px; font-weight: 500; float: left; line-height: 0.85; margin: 8px 12px 0 0; color: var(--color-nubian-blue); }
body.page-template-page-press .glance-quote { font-family: var(--font-script); font-size: 24px; color: var(--color-nubian-blue); border-left: 4px solid var(--color-warm-yellow); padding: 12px 0 12px 24px; margin: 24px 0; line-height: 1.3; }

body.page-template-page-press .factsheet { background: var(--color-sand); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
body.page-template-page-press .factsheet h3 { font-size: 22px; margin-bottom: 24px; font-weight: 500; }
body.page-template-page-press .factsheet h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-press .fact-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--color-border); font-size: 14px; line-height: 1.5; align-items: start; }
body.page-template-page-press .fact-row:last-child { border-bottom: none; padding-bottom: 0; }
body.page-template-page-press .fact-row:first-of-type { padding-top: 0; }
body.page-template-page-press .fact-label { color: var(--color-text-muted); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 2px; }
body.page-template-page-press .fact-value { color: var(--color-text); }
body.page-template-page-press .fact-value strong { display: block; font-family: var(--font-display); font-weight: 500; margin-bottom: 2px; }

body.page-template-page-press .section { padding: 100px 0; }
body.page-template-page-press .section.alt { background: var(--color-sand); }
body.page-template-page-press .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-press .section-head .section-eyebrow { justify-content: center; }
body.page-template-page-press .section-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-press .section-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-press .section-head h2 { margin-bottom: 16px; }
body.page-template-page-press .section-head p { font-size: 17px; }

body.page-template-page-press .coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.page-template-page-press .coverage-card { background: white; border-radius: 20px; padding: 32px; transition: all var(--transition); border: 1px solid transparent; display: flex; flex-direction: column; gap: 16px; }
body.page-template-page-press .coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-press .coverage-publication { font-family: var(--font-display); font-size: 19px; color: var(--color-nubian-blue); font-weight: 500; font-style: italic; line-height: 1.2; }
body.page-template-page-press .coverage-date { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-press .coverage-card h4 { font-size: 17px; line-height: 1.35; margin: 0; font-weight: 500; }
body.page-template-page-press .coverage-card p { font-size: 14px; line-height: 1.6; margin: 0; flex: 1; color: var(--color-text-muted); }
body.page-template-page-press .coverage-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-nubian-red); font-weight: 600; align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
body.page-template-page-press .coverage-link:hover { border-bottom-color: var(--color-nubian-red); }

body.page-template-page-press .assets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.page-template-page-press .asset-card { background: white; border-radius: 20px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-press .asset-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-press .asset-preview { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
body.page-template-page-press .asset-preview::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
body.page-template-page-press .asset-preview.logo-bg { background: var(--color-sand); }
body.page-template-page-press .asset-preview.photo-bg { background: linear-gradient(160deg, #1B4F8C, #2BB3B3); }
body.page-template-page-press .asset-preview.fact-bg { background: linear-gradient(160deg, #E8893A, #D64545); }
body.page-template-page-press .asset-preview-icon { font-size: 80px; opacity: 0.5; position: relative; z-index: 1; }
body.page-template-page-press .asset-preview-logo { width: 96px; height: 96px; position: relative; z-index: 1; }
body.page-template-page-press .asset-card-body { padding: 28px; }
body.page-template-page-press .asset-card-format { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); font-weight: 600; margin-bottom: 8px; }
body.page-template-page-press .asset-card h4 { font-size: 19px; margin-bottom: 8px; font-weight: 500; }
body.page-template-page-press .asset-card-files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--color-border); }
body.page-template-page-press .asset-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--color-sand); color: var(--color-text); border-radius: 999px; font-size: 12px; font-weight: 600; transition: all var(--transition); }
body.page-template-page-press .asset-tag:hover { background: var(--color-nubian-blue); color: white; }
body.page-template-page-press .asset-tag svg { width: 12px; height: 12px; }

body.page-template-page-press .quotes-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-press .quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
body.page-template-page-press .quote-card { background: white; padding: 32px; border-radius: 20px; transition: all var(--transition); }
body.page-template-page-press .quote-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
body.page-template-page-press .quote-mark { font-family: var(--font-display); font-size: 56px; line-height: 0.5; color: var(--color-warm-yellow); height: 24px; }
body.page-template-page-press .quote-text { font-family: var(--font-display); font-size: 17px; line-height: 1.6; font-style: italic; color: var(--color-text); margin-bottom: 16px; font-weight: 400; }
body.page-template-page-press .quote-attribution { font-size: 13px; color: var(--color-text-muted); padding-top: 16px; border-top: 1px solid var(--color-border); }
body.page-template-page-press .quote-attribution strong { display: block; color: var(--color-text); font-weight: 600; margin-bottom: 2px; font-family: var(--font-display); font-size: 15px; }

body.page-template-page-press .contact-section { padding: 100px 0; background: white; }
body.page-template-page-press .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
body.page-template-page-press .contact-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-press .contact-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-press .contact-card { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); color: white; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; max-width: none; margin: 0; text-align: left; }
body.page-template-page-press .contact-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-press .contact-card > * { position: relative; }
body.page-template-page-press .contact-card h3 { color: white; font-size: 24px; margin-bottom: 24px; font-weight: 500; }
body.page-template-page-press .contact-card h3 em { color: var(--color-warm-yellow); font-style: italic; font-weight: 500; }
body.page-template-page-press .contact-detail { display: flex; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
body.page-template-page-press .contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
body.page-template-page-press .contact-detail:first-of-type { padding-top: 0; }
body.page-template-page-press .contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-warm-yellow); }
body.page-template-page-press .contact-detail-text strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 500; color: white; margin-bottom: 2px; }
body.page-template-page-press .contact-detail-text a, body.page-template-page-press .contact-detail-text span { font-size: 14px; color: rgba(255,255,255,0.85); }
body.page-template-page-press .contact-detail-text a:hover { color: var(--color-warm-yellow); }

@media (max-width: 1024px) {
  body.page-template-page-press .glance-grid, body.page-template-page-press .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-press .factsheet { position: static; }
  body.page-template-page-press .hero-quick { grid-template-columns: repeat(2, 1fr); max-width: none; }
  body.page-template-page-press .coverage-grid, body.page-template-page-press .assets-grid, body.page-template-page-press .quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-press .hero-quick { grid-template-columns: 1fr; }
  body.page-template-page-press .factsheet { padding: 28px; }
  body.page-template-page-press .fact-row { grid-template-columns: 1fr; gap: 4px; }
}


/* ============================================================
   === destination guides ===
   Shared skeleton for the 5 destination-guide pages (heissa-island,
   aswan-guide, nubian-culture, best-time-to-visit, how-to-reach-us).
   Each page assigns its template; layout is repeater-driven prose
   sections + an optional sticky TOC.
   ============================================================ */
.dest-hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; text-align: center; }
.dest-hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
.dest-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 24px; justify-content: center; }
.dest-hero-eyebrow::before, .dest-hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.dest-hero h1 { margin: 0 auto 16px; font-weight: 400; max-width: 820px; }
.dest-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.dest-hero-tagline { font-family: var(--font-script); font-size: clamp(1.75rem, 2.8vw, 2.25rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
.dest-hero-lede { font-size: 18px; line-height: 1.6; max-width: 720px; margin: 0 auto; }
.dest-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 720px; margin: 32px auto 0; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); }
.dest-hero-stat { display: flex; flex-direction: column; align-items: center; }
.dest-hero-stat strong { font-family: var(--font-display); font-size: 24px; color: var(--color-nubian-blue); font-weight: 500; line-height: 1; margin-bottom: 4px; font-variation-settings: "opsz" 144; }
.dest-hero-stat span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; text-align: center; }

.dest-toc { background: white; position: sticky; top: 80px; z-index: 50; padding: 20px 0; border-bottom: 1px solid var(--color-border); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.dest-toc-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.dest-toc-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
.dest-toc-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

.dest-content { padding: 80px 0; background: white; }
.dest-section { padding: 0 0 80px; max-width: 880px; margin: 0 auto; scroll-margin-top: 140px; }
.dest-section:last-child { padding-bottom: 0; }
.dest-section.alt { background: var(--color-sand); padding: 60px; border-radius: 24px; max-width: 100%; }
.dest-section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
.dest-section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.dest-section h2 { margin-bottom: 24px; font-weight: 400; }
.dest-section h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.dest-section .dest-emoji { display: block; font-size: 80px; opacity: 0.6; margin-bottom: 16px; line-height: 1; }
.dest-section-body { font-size: 17px; line-height: 1.75; color: var(--color-text); }
.dest-section-body p { margin-bottom: 18px; color: inherit; }
.dest-section-body h3 { margin-top: 32px; margin-bottom: 14px; font-weight: 500; font-size: 22px; }
.dest-section-body h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.dest-section-body blockquote { margin: 28px 0; padding: 16px 0 16px 24px; border-left: 4px solid var(--color-warm-yellow); font-family: var(--font-display); font-size: 22px; line-height: 1.4; font-style: italic; color: var(--color-nubian-blue); }
.dest-section-body blockquote p { font-family: inherit; font-size: inherit; color: inherit; margin: 0; }
.dest-section-body ul, .dest-section-body ol { margin: 18px 0; padding-left: 0; }
.dest-section-body ul li { padding-left: 24px; position: relative; margin-bottom: 10px; line-height: 1.65; }
.dest-section-body ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--color-warm-yellow); border-radius: 50%; }
.dest-section-body ol { counter-reset: item; }
.dest-section-body ol li { counter-increment: item; padding-left: 28px; position: relative; margin-bottom: 10px; }
.dest-section-body ol li::before { content: counter(item); position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 600; color: var(--color-nubian-blue); }
.dest-section-body a { color: var(--color-nubian-blue); border-bottom: 1px solid currentColor; }
.dest-section-body strong { color: var(--color-text); font-weight: 600; }

@media (max-width: 1024px) {
  .dest-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .dest-section.alt { padding: 32px; }
}
@media (max-width: 640px) {
  .dest-hero { padding: 48px 0 64px; }
  .dest-hero-stats { grid-template-columns: 1fr; }
  .dest-section.alt { padding: 24px; }
}


/* ============================================================
   === how-to-reach-us (bespoke) ===
   Verbatim from _mockup-reference/how-to-reach-us.html.
   .faq-section / .faq-item* / .final-cta / .final-btn already exist
   from FAQ + groups. Hero classes scoped under body.page-template-page-
   how-to-reach-us to avoid front-page collisions.
   ============================================================ */
body.page-template-page-how-to-reach-us .hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; }
body.page-template-page-how-to-reach-us .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-how-to-reach-us .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-how-to-reach-us .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-how-to-reach-us .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(180deg, #87CEEB 0%, #2BB3B3 50%, #1B4F8C 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
body.page-template-page-how-to-reach-us .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px); }
.travel-icons { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: space-around; padding: 12% 0; z-index: 2; }
.travel-icon { font-size: 64px; opacity: 0.85; }
.travel-icon-line { width: 4px; height: 32px; background: rgba(244,196,48,0.6); border-radius: 2px; }
body.page-template-page-how-to-reach-us .hero-badge { position: absolute; bottom: 32px; left: -32px; background: white; padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-how-to-reach-us .hero-badge strong { font-family: var(--font-display); display: block; font-size: 18px; color: var(--color-nubian-blue); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-how-to-reach-us .hero-badge span { font-size: 12px; color: var(--color-text-muted); }

.toc-section { background: white; padding: 32px 0; border-bottom: 1px solid var(--color-border); position: sticky; top: 80px; z-index: 50; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.toc-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.toc-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
.toc-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

.options-section { padding: 100px 0; background: white; }
.options-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.options-head .section-eyebrow { justify-content: center; }
.options-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.options-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.options-head h2 { margin-bottom: 16px; }
.options-head p { font-size: 17px; }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.option-card { background: var(--color-sand); border-radius: 24px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
.option-card:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); transform: translateY(-6px); }
.option-card-head { padding: 32px 32px 24px; display: flex; align-items: center; gap: 16px; }
.option-card-icon { width: 56px; height: 56px; border-radius: 16px; background: white; display: flex; align-items: center; justify-content: center; color: var(--color-nubian-blue); flex-shrink: 0; }
.option-card-head h3 { font-size: 22px; font-weight: 500; margin: 0; }
.option-card-head h3 em { font-size: 14px; color: var(--color-text-muted); font-weight: 500; font-style: normal; display: block; margin-top: 2px; letter-spacing: 0.08em; text-transform: uppercase; }
.option-card-body { padding: 0 32px 32px; }
.option-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.option-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.option-card-tag.fast { background: rgba(74, 139, 44, 0.15); color: var(--color-nubian-green); }
.option-card-tag.slow { background: rgba(244, 196, 48, 0.18); color: var(--color-warm-yellow-deep); }
.option-card-tag.cost { background: rgba(27, 79, 140, 0.1); color: var(--color-nubian-blue); }
.option-card p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.option-card-list { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.option-card-list-item { display: flex; gap: 10px; align-items: start; font-size: 13px; line-height: 1.5; color: var(--color-text-muted); }
.option-card-list-item::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 6px; }
.option-card-list-item strong { color: var(--color-text); font-weight: 600; }

.journey-section { padding: 100px 0; background: var(--color-sand); }
.journey-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.journey-head .section-eyebrow { justify-content: center; }
.journey-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
.journey-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.journey-timeline { max-width: 880px; margin: 0 auto; position: relative; }
.journey-timeline::before { content: ''; position: absolute; left: 28px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--color-warm-yellow) 0%, var(--color-nubian-red) 100%); }
.journey-step { display: grid; grid-template-columns: 56px 1fr; gap: 32px; padding-bottom: 40px; align-items: start; position: relative; }
.journey-step:last-child { padding-bottom: 0; }
.journey-step-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--color-warm-yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--color-text); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(244, 196, 48, 0.4); }
.journey-step-content { background: white; padding: 28px 32px; border-radius: 20px; box-shadow: var(--shadow-sm); margin-top: 4px; }
.journey-step-time { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 6px; }
.journey-step h4 { font-size: 19px; margin-bottom: 8px; font-weight: 500; }
.journey-step p { font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.journey-step p:last-child { margin-bottom: 0; }
.journey-step strong { color: var(--color-text); font-weight: 600; }

.pickup-section { padding: 100px 0; background: white; }
.pickup-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.pickup-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.pickup-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.pickup-prices { background: var(--color-sand); border-radius: 24px; padding: 32px; margin: 24px 0; }
.pickup-prices h4 { font-size: 17px; margin-bottom: 16px; font-weight: 500; }
.pickup-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--color-border); font-size: 15px; gap: 12px; }
.pickup-row:last-child { border-bottom: none; padding-bottom: 0; }
.pickup-row:first-of-type { padding-top: 0; }
.pickup-row-label { color: var(--color-text); font-weight: 500; }
.pickup-row-value { font-family: var(--font-display); color: var(--color-nubian-blue); font-weight: 500; white-space: nowrap; }
.pickup-row-value.included { color: var(--color-nubian-green); }
.pickup-visual { aspect-ratio: 4/5; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #1B4F8C, #14406F); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.pickup-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
.pickup-visual-emoji { font-size: 180px; opacity: 0.5; position: relative; }

@media (max-width: 1024px) {
  body.page-template-page-how-to-reach-us .hero-grid, .pickup-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-how-to-reach-us .hero-visual, .pickup-visual { max-width: 480px; margin: 0 auto; }
  .options-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .toc-list { gap: 6px; }
  .toc-link { padding: 6px 12px; font-size: 12px; }
  .journey-timeline::before { left: 22px; }
  .journey-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .journey-step-dot { width: 44px; height: 44px; font-size: 18px; }
  .journey-step-content { padding: 20px; }
}

/* ============================================================
   HEISSA ISLAND (bespoke) — verbatim port of
   _mockup-reference/heissa-island.html. Scoped to
   body.page-template-page-heissa-island so .facts / .story-section /
   .see-card-N / .final-btn etc. don't collide with other templates.
   ============================================================ */

/* Hero — split grid + island arch */
body.page-template-page-heissa-island .hero {
  background: var(--color-sand);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
body.page-template-page-heissa-island .hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.18;
}
body.page-template-page-heissa-island .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
body.page-template-page-heissa-island .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 24px;
}
body.page-template-page-heissa-island .hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
body.page-template-page-heissa-island .hero h1 { margin-bottom: 16px; font-weight: 400; }
body.page-template-page-heissa-island .hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-heissa-island .hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  color: var(--color-nubian-red);
  margin-bottom: 24px;
  line-height: 1.2;
}
body.page-template-page-heissa-island .hero-lede {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
body.page-template-page-heissa-island .hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 480px;
}
body.page-template-page-heissa-island .hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-template-page-heissa-island .hero-meta-item svg { width: 20px; height: 20px; color: var(--color-nubian-blue); margin-bottom: 8px; }
body.page-template-page-heissa-island .hero-meta-item strong { font-family: var(--font-display); font-size: 16px; color: var(--color-text); line-height: 1.1; }
body.page-template-page-heissa-island .hero-meta-item span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

body.page-template-page-heissa-island .hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
body.page-template-page-heissa-island .hero-arch {
  width: 100%; height: 100%;
  border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px;
  background: linear-gradient(180deg, #87CEEB 0%, #2BB3B3 40%, #1B4F8C 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
body.page-template-page-heissa-island .hero-arch::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px);
}
body.page-template-page-heissa-island .hero-arch-island {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  width: 60%; height: 32%;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
body.page-template-page-heissa-island .hero-arch-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  z-index: 2;
  opacity: 0.7;
}
body.page-template-page-heissa-island .hero-arch-sun {
  position: absolute;
  top: 12%; right: 18%;
  width: 64px; height: 64px;
  background: var(--color-warm-yellow);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(244, 196, 48, 0.6);
}
body.page-template-page-heissa-island .hero-arch-feluccas {
  position: absolute;
  bottom: 20%; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 32px;
  opacity: 0.8;
}
body.page-template-page-heissa-island .hero-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
body.page-template-page-heissa-island .hero-badge strong {
  font-family: var(--font-display);
  display: block;
  font-size: 18px;
  color: var(--color-nubian-blue);
  margin-bottom: 2px;
  font-weight: 500;
}
body.page-template-page-heissa-island .hero-badge span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Quick facts ribbon */
body.page-template-page-heissa-island .facts {
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
body.page-template-page-heissa-island .facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
body.page-template-page-heissa-island .fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
body.page-template-page-heissa-island .fact:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: var(--color-border);
}
body.page-template-page-heissa-island .fact-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-nubian-blue);
  line-height: 1;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
body.page-template-page-heissa-island .fact-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; max-width: 200px; }

/* Story chapters */
body.page-template-page-heissa-island .story-section {
  padding: 100px 0;
  background: white;
}
body.page-template-page-heissa-island .story-section.alt { background: var(--color-sand); }
body.page-template-page-heissa-island .story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
body.page-template-page-heissa-island .story-grid.flipped { direction: rtl; }
body.page-template-page-heissa-island .story-grid.flipped > * { direction: ltr; }

body.page-template-page-heissa-island .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
}
body.page-template-page-heissa-island .section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}

body.page-template-page-heissa-island .story-content h2 { margin-bottom: 24px; }
body.page-template-page-heissa-island .story-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-heissa-island .story-content > p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}
body.page-template-page-heissa-island .story-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--color-nubian-blue);
}
body.page-template-page-heissa-island .story-quote {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--color-nubian-blue);
  border-left: 4px solid var(--color-warm-yellow);
  padding: 12px 0 12px 24px;
  margin: 24px 0;
  line-height: 1.3;
}

body.page-template-page-heissa-island .story-visual {
  position: relative;
  aspect-ratio: 4/5;
}
body.page-template-page-heissa-island .story-arch {
  width: 100%; height: 100%;
  border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
body.page-template-page-heissa-island .story-arch::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px);
}
body.page-template-page-heissa-island .story-1 .story-arch { background: linear-gradient(160deg, #2BB3B3 0%, #1B4F8C 100%); }
body.page-template-page-heissa-island .story-2 .story-arch { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
body.page-template-page-heissa-island .story-3 .story-arch { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
body.page-template-page-heissa-island .story-arch-emoji { font-size: 180px; opacity: 0.4; position: relative; z-index: 1; }
body.page-template-page-heissa-island .story-badge {
  position: absolute;
  background: white;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  max-width: 220px;
}
body.page-template-page-heissa-island .story-badge strong {
  font-family: var(--font-display);
  display: block;
  font-size: 17px;
  color: var(--color-nubian-blue);
  margin-bottom: 2px;
  font-weight: 500;
}
body.page-template-page-heissa-island .story-badge span {
  font-size: 12px;
  color: var(--color-text-muted);
}
body.page-template-page-heissa-island .story-1 .story-badge { bottom: 24px; right: -24px; }
body.page-template-page-heissa-island .story-2 .story-badge { top: 24px; left: -24px; }
body.page-template-page-heissa-island .story-3 .story-badge { bottom: 24px; right: -24px; }

/* Things to see — 6 gradient cards */
body.page-template-page-heissa-island .see-section {
  padding: 100px 0;
  background: var(--color-sand);
}
body.page-template-page-heissa-island .see-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
body.page-template-page-heissa-island .see-head .section-eyebrow { justify-content: center; }
body.page-template-page-heissa-island .see-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
body.page-template-page-heissa-island .see-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-heissa-island .see-head h2 { margin-bottom: 16px; }
body.page-template-page-heissa-island .see-head p { font-size: 17px; }

body.page-template-page-heissa-island .see-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.page-template-page-heissa-island .see-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition);
}
body.page-template-page-heissa-island .see-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-warm-yellow);
}
body.page-template-page-heissa-island .see-card-image {
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: 0.5;
  position: relative;
  overflow: hidden;
}
body.page-template-page-heissa-island .see-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px);
}
body.page-template-page-heissa-island .see-card-1 .see-card-image { background: linear-gradient(160deg, #1B4F8C, #14406F); }
body.page-template-page-heissa-island .see-card-2 .see-card-image { background: linear-gradient(160deg, #E8893A, #D64545); }
body.page-template-page-heissa-island .see-card-3 .see-card-image { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
body.page-template-page-heissa-island .see-card-4 .see-card-image { background: linear-gradient(160deg, #F4C430, #E8893A); }
body.page-template-page-heissa-island .see-card-5 .see-card-image { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
body.page-template-page-heissa-island .see-card-6 .see-card-image { background: linear-gradient(160deg, #D64545, #B53737); }
body.page-template-page-heissa-island .see-card-body { padding: 28px 24px; }
body.page-template-page-heissa-island .see-card-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-nubian-red);
  font-weight: 600;
  margin-bottom: 8px;
}
body.page-template-page-heissa-island .see-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
body.page-template-page-heissa-island .see-card p { font-size: 14px; line-height: 1.6; }

/* How to visit */
body.page-template-page-heissa-island .visit-section {
  padding: 100px 0;
  background: white;
}
body.page-template-page-heissa-island .visit-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
body.page-template-page-heissa-island .visit-head .section-eyebrow { justify-content: center; }
body.page-template-page-heissa-island .visit-head .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-nubian-red);
}
body.page-template-page-heissa-island .visit-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }

body.page-template-page-heissa-island .visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.page-template-page-heissa-island .visit-card {
  background: var(--color-sand);
  padding: 32px;
  border-radius: 24px;
  position: relative;
  transition: all var(--transition);
}
body.page-template-page-heissa-island .visit-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
body.page-template-page-heissa-island .visit-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-nubian-red);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
body.page-template-page-heissa-island .visit-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
body.page-template-page-heissa-island .visit-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
body.page-template-page-heissa-island .visit-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-nubian-blue);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
body.page-template-page-heissa-island .visit-card a:hover { border-color: var(--color-nubian-blue); }

/* Final CTA */
body.page-template-page-heissa-island .final-cta { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-heissa-island .final-cta-inner {
  background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-template-page-heissa-island .final-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%);
  opacity: 0.18;
}
body.page-template-page-heissa-island .final-cta-inner > * { position: relative; }
body.page-template-page-heissa-island .final-cta .section-eyebrow {
  color: var(--color-warm-yellow);
  justify-content: center;
}
body.page-template-page-heissa-island .final-cta .section-eyebrow::before,
body.page-template-page-heissa-island .final-cta .section-eyebrow::after {
  background: var(--color-warm-yellow);
}
body.page-template-page-heissa-island .final-cta .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
}
body.page-template-page-heissa-island .final-cta h2 {
  color: white;
  margin: 16px auto 20px;
  max-width: 700px;
}
body.page-template-page-heissa-island .final-cta h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-heissa-island .final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
}
body.page-template-page-heissa-island .final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-template-page-heissa-island .final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--color-warm-yellow);
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: all var(--transition);
}
body.page-template-page-heissa-island .final-btn:hover {
  background: var(--color-warm-yellow-deep);
  transform: translateY(-2px);
}
body.page-template-page-heissa-island .final-btn.outline {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}
body.page-template-page-heissa-island .final-btn.outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

/* Heissa Island — responsive */
@media (max-width: 1024px) {
  body.page-template-page-heissa-island .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-heissa-island .hero-meta { max-width: none; }
  body.page-template-page-heissa-island .hero-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-heissa-island .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  body.page-template-page-heissa-island .fact:nth-child(2)::after { display: none; }
  body.page-template-page-heissa-island .story-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-heissa-island .story-grid.flipped { direction: ltr; }
  body.page-template-page-heissa-island .story-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-heissa-island .story-1 .story-badge,
  body.page-template-page-heissa-island .story-2 .story-badge,
  body.page-template-page-heissa-island .story-3 .story-badge { right: 16px; left: auto; bottom: 16px; top: auto; }
  body.page-template-page-heissa-island .see-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-template-page-heissa-island .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-heissa-island .hero { padding: 48px 0 64px; }
  body.page-template-page-heissa-island .hero-meta { grid-template-columns: 1fr; }
  body.page-template-page-heissa-island .facts-grid { grid-template-columns: 1fr; }
  body.page-template-page-heissa-island .fact::after { display: none !important; }
  body.page-template-page-heissa-island .story-section { padding: 64px 0; }
  body.page-template-page-heissa-island .see-grid { grid-template-columns: 1fr; }
  body.page-template-page-heissa-island .final-cta-inner { padding: 48px 32px; }
}

/* ============================================================
   ASWAN GUIDE (bespoke) — verbatim port of
   _mockup-reference/aswan-guide.html. Scoped to
   body.page-template-page-aswan-guide. Notable bespoke pieces:
   sandstone-orange hero arch, sticky compare-card aside, sticky TOC,
   6 sight-cards with multi-tag chips (must / time / distance), 6-tip
   2-col grid with 14-radius white-square icons, stay-options.
   ============================================================ */
body.page-template-page-aswan-guide .hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; }
body.page-template-page-aswan-guide .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-aswan-guide .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-aswan-guide .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 24px; }
body.page-template-page-aswan-guide .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-aswan-guide .hero h1 { margin-bottom: 16px; font-weight: 400; }
body.page-template-page-aswan-guide .hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-aswan-guide .hero-tagline { font-family: var(--font-script); font-size: clamp(1.75rem, 2.8vw, 2.25rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
body.page-template-page-aswan-guide .hero-lede { font-size: 18px; line-height: 1.65; margin-bottom: 32px; max-width: 540px; }
body.page-template-page-aswan-guide .hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); max-width: 520px; }
body.page-template-page-aswan-guide .hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
body.page-template-page-aswan-guide .hero-meta-item svg { width: 20px; height: 20px; color: var(--color-nubian-blue); margin-bottom: 8px; }
body.page-template-page-aswan-guide .hero-meta-item strong { font-family: var(--font-display); font-size: 16px; color: var(--color-text); display: block; line-height: 1.1; margin-bottom: 2px; }
body.page-template-page-aswan-guide .hero-meta-item span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-aswan-guide .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-aswan-guide .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #E8893A 0%, #D64545 50%, #B53737 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
body.page-template-page-aswan-guide .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px); }
body.page-template-page-aswan-guide .hero-arch-emoji { font-size: 200px; opacity: 0.5; position: relative; z-index: 1; }
body.page-template-page-aswan-guide .hero-badge { position: absolute; bottom: 32px; left: -32px; background: var(--color-warm-yellow); padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-aswan-guide .hero-badge strong { font-family: var(--font-display); display: block; font-size: 18px; color: var(--color-text); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-aswan-guide .hero-badge span { font-size: 12px; color: var(--color-text); font-weight: 600; }

/* Sticky TOC bar */
body.page-template-page-aswan-guide .toc-section { background: white; padding: 32px 0; border-bottom: 1px solid var(--color-border); position: sticky; top: 80px; z-index: 50; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
body.page-template-page-aswan-guide .toc-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
body.page-template-page-aswan-guide .toc-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
body.page-template-page-aswan-guide .toc-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

/* Intro + compare-card */
body.page-template-page-aswan-guide .intro-section { padding: 100px 0; background: white; }
body.page-template-page-aswan-guide .intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
body.page-template-page-aswan-guide .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
body.page-template-page-aswan-guide .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-aswan-guide .intro-content h2 { margin-bottom: 24px; }
body.page-template-page-aswan-guide .intro-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-aswan-guide .intro-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-aswan-guide .intro-content > p:first-of-type::first-letter { font-family: var(--font-display); font-size: 64px; font-weight: 500; float: left; line-height: 0.85; margin: 8px 12px 0 0; color: var(--color-nubian-blue); }
body.page-template-page-aswan-guide .intro-quote { font-family: var(--font-script); font-size: 26px; color: var(--color-nubian-blue); border-left: 4px solid var(--color-warm-yellow); padding: 14px 0 14px 24px; margin: 28px 0; line-height: 1.3; }

body.page-template-page-aswan-guide .compare-card { background: var(--color-sand); border-radius: 24px; padding: 40px 32px; position: sticky; top: 180px; }
body.page-template-page-aswan-guide .compare-card h3 { font-size: 22px; margin-bottom: 24px; font-weight: 500; }
body.page-template-page-aswan-guide .compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--color-border); }
body.page-template-page-aswan-guide .compare-row:last-child { border-bottom: none; padding-bottom: 0; }
body.page-template-page-aswan-guide .compare-row:first-of-type { padding-top: 0; }
body.page-template-page-aswan-guide .compare-col-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 4px; }
body.page-template-page-aswan-guide .compare-col-value { font-family: var(--font-display); font-size: 15px; color: var(--color-text); font-weight: 500; line-height: 1.3; }
body.page-template-page-aswan-guide .compare-col-value.highlight { color: var(--color-nubian-blue); }

/* Top sights */
body.page-template-page-aswan-guide .sights-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-aswan-guide .sights-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-aswan-guide .sights-head .section-eyebrow { justify-content: center; }
body.page-template-page-aswan-guide .sights-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-aswan-guide .sights-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-aswan-guide .sights-head h2 { margin-bottom: 16px; }
body.page-template-page-aswan-guide .sights-head p { font-size: 17px; }
body.page-template-page-aswan-guide .sights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.page-template-page-aswan-guide .sight-card { background: white; border-radius: 24px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-aswan-guide .sight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-aswan-guide .sight-card-image { aspect-ratio: 5/3; position: relative; display: flex; align-items: center; justify-content: center; font-size: 80px; opacity: 0.5; overflow: hidden; }
body.page-template-page-aswan-guide .sight-card-image::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.06) 16px, rgba(255,255,255,0.06) 17px); }
body.page-template-page-aswan-guide .sight-card.s1 .sight-card-image { background: linear-gradient(160deg, #E8893A, #D64545); }
body.page-template-page-aswan-guide .sight-card.s2 .sight-card-image { background: linear-gradient(160deg, #1B4F8C, #14406F); }
body.page-template-page-aswan-guide .sight-card.s3 .sight-card-image { background: linear-gradient(160deg, #4A8B2C, #2BB3B3); }
body.page-template-page-aswan-guide .sight-card.s4 .sight-card-image { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
body.page-template-page-aswan-guide .sight-card.s5 .sight-card-image { background: linear-gradient(160deg, #F4C430, #E8893A); }
body.page-template-page-aswan-guide .sight-card.s6 .sight-card-image { background: linear-gradient(160deg, #D64545, #B53737); }
body.page-template-page-aswan-guide .sight-card-body { padding: 28px; }
body.page-template-page-aswan-guide .sight-card-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
body.page-template-page-aswan-guide .sight-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
body.page-template-page-aswan-guide .sight-card-tag.must { background: rgba(214, 69, 69, 0.15); color: var(--color-nubian-red); }
body.page-template-page-aswan-guide .sight-card-tag.time { background: var(--color-sand); color: var(--color-text-muted); }
body.page-template-page-aswan-guide .sight-card-tag.distance { background: rgba(27, 79, 140, 0.1); color: var(--color-nubian-blue); }
body.page-template-page-aswan-guide .sight-card h4 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
body.page-template-page-aswan-guide .sight-card p { font-size: 15px; line-height: 1.6; }

/* Practical tips */
body.page-template-page-aswan-guide .tips-section { padding: 100px 0; background: white; }
body.page-template-page-aswan-guide .tips-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-aswan-guide .tips-head .section-eyebrow { justify-content: center; }
body.page-template-page-aswan-guide .tips-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-aswan-guide .tips-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-aswan-guide .tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
body.page-template-page-aswan-guide .tip { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px; background: var(--color-sand); border-radius: 20px; align-items: start; transition: all var(--transition); }
body.page-template-page-aswan-guide .tip:hover { background: white; box-shadow: var(--shadow-md); }
body.page-template-page-aswan-guide .tip-icon { width: 56px; height: 56px; border-radius: 14px; background: white; display: flex; align-items: center; justify-content: center; color: var(--color-nubian-blue); flex-shrink: 0; }
body.page-template-page-aswan-guide .tip-text h4 { font-size: 18px; margin-bottom: 6px; font-weight: 500; }
body.page-template-page-aswan-guide .tip-text p { font-size: 14px; line-height: 1.6; }

/* Where to stay */
body.page-template-page-aswan-guide .stay-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-aswan-guide .stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
body.page-template-page-aswan-guide .stay-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-aswan-guide .stay-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-aswan-guide .stay-options { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
body.page-template-page-aswan-guide .stay-option { padding: 20px 24px; background: white; border-radius: 16px; border: 1px solid var(--color-border); display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; transition: all var(--transition); }
body.page-template-page-aswan-guide .stay-option:hover { border-color: var(--color-warm-yellow); transform: translateX(8px); }
body.page-template-page-aswan-guide .stay-option-num { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--color-nubian-red); font-variation-settings: "opsz" 144; }
body.page-template-page-aswan-guide .stay-option-text strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--color-text); font-weight: 500; margin-bottom: 2px; }
body.page-template-page-aswan-guide .stay-option-text span { font-size: 14px; color: var(--color-text-muted); }
body.page-template-page-aswan-guide .stay-option-link { color: var(--color-nubian-blue); }
body.page-template-page-aswan-guide .stay-option-note { font-size: 13px; color: var(--color-text-muted); }
body.page-template-page-aswan-guide .stay-visual { aspect-ratio: 4/5; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
body.page-template-page-aswan-guide .stay-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
body.page-template-page-aswan-guide .stay-visual-emoji { font-size: 180px; opacity: 0.5; position: relative; }

/* Final CTA — same blue gradient block as heissa-island */
body.page-template-page-aswan-guide .final-cta { padding: 100px 0; background: white; }
body.page-template-page-aswan-guide .final-cta-inner { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
body.page-template-page-aswan-guide .final-cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-aswan-guide .final-cta-inner > * { position: relative; }
body.page-template-page-aswan-guide .final-cta .section-eyebrow { color: var(--color-warm-yellow); justify-content: center; }
body.page-template-page-aswan-guide .final-cta .section-eyebrow::before,
body.page-template-page-aswan-guide .final-cta .section-eyebrow::after { background: var(--color-warm-yellow); }
body.page-template-page-aswan-guide .final-cta .section-eyebrow::after { content: ''; width: 28px; height: 1px; }
body.page-template-page-aswan-guide .final-cta h2 { color: white; margin: 16px auto 20px; max-width: 700px; }
body.page-template-page-aswan-guide .final-cta h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-aswan-guide .final-cta p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
body.page-template-page-aswan-guide .final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-template-page-aswan-guide .final-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--color-warm-yellow); color: var(--color-text); font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); }
body.page-template-page-aswan-guide .final-btn:hover { background: var(--color-warm-yellow-deep); transform: translateY(-2px); }
body.page-template-page-aswan-guide .final-btn.outline { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; }
body.page-template-page-aswan-guide .final-btn.outline:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* Aswan guide — responsive */
@media (max-width: 1024px) {
  body.page-template-page-aswan-guide .toc-section { top: 76px; }
  body.page-template-page-aswan-guide .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-aswan-guide .hero-meta { max-width: none; }
  body.page-template-page-aswan-guide .hero-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-aswan-guide .intro-grid,
  body.page-template-page-aswan-guide .stay-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-aswan-guide .compare-card { position: static; }
  body.page-template-page-aswan-guide .stay-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-aswan-guide .sights-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-template-page-aswan-guide .tips-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-aswan-guide .hero { padding: 48px 0 64px; }
  body.page-template-page-aswan-guide .hero-meta { grid-template-columns: 1fr; }
  body.page-template-page-aswan-guide .toc-list { gap: 6px; }
  body.page-template-page-aswan-guide .toc-link { padding: 6px 12px; font-size: 12px; }
  body.page-template-page-aswan-guide .sights-grid { grid-template-columns: 1fr; }
  body.page-template-page-aswan-guide .stay-option { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  body.page-template-page-aswan-guide .final-cta-inner { padding: 48px 32px; }
}

/* ============================================================
   NUBIAN CULTURE (bespoke) — verbatim port of
   _mockup-reference/nubian-culture.html. Scoped to
   body.page-template-page-nubian-culture. Notable bespoke pieces:
   blue mythic hero arch with gold pattern inset, sticky 5-link TOC,
   3 chapter slots (.chapter-1/-2/-4 gradients) interleaved with a
   blue-bg .lang-section (8 phrase tiles), .duo-section (2 cards
   with 3 list items each), .food-section (6 dish tiles).
   ============================================================ */
body.page-template-page-nubian-culture .hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; }
body.page-template-page-nubian-culture .hero::before { content: ''; position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-nubian-culture .hero::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-nubian-red) 0%, transparent 70%); opacity: 0.08; }
body.page-template-page-nubian-culture .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-nubian-culture .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 24px; }
body.page-template-page-nubian-culture .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-nubian-culture .hero h1 { margin-bottom: 16px; font-weight: 400; }
body.page-template-page-nubian-culture .hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-nubian-culture .hero-tagline { font-family: var(--font-script); font-size: clamp(1.75rem, 2.8vw, 2.25rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
body.page-template-page-nubian-culture .hero-lede { font-size: 18px; line-height: 1.65; margin-bottom: 32px; max-width: 540px; }
body.page-template-page-nubian-culture .hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; background: white; border-radius: 16px; box-shadow: var(--shadow-md); max-width: 520px; }
body.page-template-page-nubian-culture .hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
body.page-template-page-nubian-culture .hero-meta-item svg { width: 20px; height: 20px; color: var(--color-nubian-blue); margin-bottom: 8px; }
body.page-template-page-nubian-culture .hero-meta-item strong { font-family: var(--font-display); font-size: 16px; color: var(--color-text); display: block; line-height: 1.1; margin-bottom: 2px; }
body.page-template-page-nubian-culture .hero-meta-item span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-nubian-culture .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-nubian-culture .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(160deg, #1B4F8C 0%, #2BB3B3 50%, #14406F 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
body.page-template-page-nubian-culture .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px); }
body.page-template-page-nubian-culture .hero-arch-emoji { font-size: 200px; opacity: 0.5; position: relative; z-index: 1; }
body.page-template-page-nubian-culture .hero-arch-pattern { position: absolute; inset: 8% 12%; border-radius: 50% 50% 12px 12px / 35% 35% 12px 12px; border: 3px solid rgba(244,196,48,0.6); opacity: 0.7; }
body.page-template-page-nubian-culture .hero-badge { position: absolute; bottom: 32px; left: -32px; background: white; padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-nubian-culture .hero-badge strong { font-family: var(--font-display); display: block; font-size: 18px; color: var(--color-nubian-blue); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-nubian-culture .hero-badge span { font-size: 12px; color: var(--color-text-muted); }

/* Sticky TOC */
body.page-template-page-nubian-culture .toc-section { background: white; padding: 32px 0; border-bottom: 1px solid var(--color-border); position: sticky; top: 80px; z-index: 50; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
body.page-template-page-nubian-culture .toc-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
body.page-template-page-nubian-culture .toc-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
body.page-template-page-nubian-culture .toc-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

/* Chapter shared shell */
body.page-template-page-nubian-culture .section { padding: 100px 0; }
body.page-template-page-nubian-culture .section.alt { background: var(--color-sand); }
body.page-template-page-nubian-culture .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
body.page-template-page-nubian-culture .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-nubian-culture .chapter-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
body.page-template-page-nubian-culture .chapter-grid.flipped { direction: rtl; }
body.page-template-page-nubian-culture .chapter-grid.flipped > * { direction: ltr; }
body.page-template-page-nubian-culture .chapter-content h2 { margin-bottom: 24px; }
body.page-template-page-nubian-culture .chapter-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-nubian-culture .chapter-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-nubian-culture .chapter-content > p:first-of-type::first-letter { font-family: var(--font-display); font-size: 64px; font-weight: 500; float: left; line-height: 0.85; margin: 8px 12px 0 0; color: var(--color-nubian-blue); }
body.page-template-page-nubian-culture .chapter-quote { font-family: var(--font-script); font-size: 24px; color: var(--color-nubian-blue); border-left: 4px solid var(--color-warm-yellow); padding: 12px 0 12px 24px; margin: 24px 0; line-height: 1.3; }
body.page-template-page-nubian-culture .chapter-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-nubian-culture .chapter-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
body.page-template-page-nubian-culture .chapter-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.05) 16px, rgba(255,255,255,0.05) 17px); }
body.page-template-page-nubian-culture .chapter-arch-emoji { font-size: 180px; opacity: 0.4; position: relative; z-index: 1; }
body.page-template-page-nubian-culture .chapter-1 .chapter-arch { background: linear-gradient(160deg, #E8893A 0%, #D64545 100%); }
body.page-template-page-nubian-culture .chapter-2 .chapter-arch { background: linear-gradient(160deg, #1B4F8C 0%, #14406F 100%); }
body.page-template-page-nubian-culture .chapter-3 .chapter-arch { background: linear-gradient(160deg, #4A8B2C 0%, #2BB3B3 100%); }
body.page-template-page-nubian-culture .chapter-4 .chapter-arch { background: linear-gradient(160deg, #F4C430 0%, #E8893A 100%); }
body.page-template-page-nubian-culture .chapter-badge { position: absolute; background: white; padding: 14px 22px; border-radius: 14px; box-shadow: var(--shadow-md); z-index: 2; max-width: 220px; }
body.page-template-page-nubian-culture .chapter-badge strong { font-family: var(--font-display); display: block; font-size: 17px; color: var(--color-nubian-blue); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-nubian-culture .chapter-badge span { font-size: 12px; color: var(--color-text-muted); }
body.page-template-page-nubian-culture .chapter-1 .chapter-badge { bottom: 24px; right: -24px; }
body.page-template-page-nubian-culture .chapter-2 .chapter-badge { top: 24px; left: -24px; }
body.page-template-page-nubian-culture .chapter-3 .chapter-badge { bottom: 24px; right: -24px; }
body.page-template-page-nubian-culture .chapter-4 .chapter-badge { top: 24px; left: -24px; }

/* Language section — blue full-bleed with phrase tiles */
body.page-template-page-nubian-culture .lang-section { padding: 100px 0; background: var(--color-nubian-blue); color: white; position: relative; overflow: hidden; }
body.page-template-page-nubian-culture .lang-section::before { content: ''; position: absolute; top: -200px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-nubian-culture .lang-head { text-align: center; max-width: 720px; margin: 0 auto 64px; position: relative; }
body.page-template-page-nubian-culture .lang-head .section-eyebrow { color: var(--color-warm-yellow); justify-content: center; }
body.page-template-page-nubian-culture .lang-head .section-eyebrow::before,
body.page-template-page-nubian-culture .lang-head .section-eyebrow::after { background: var(--color-warm-yellow); }
body.page-template-page-nubian-culture .lang-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; }
body.page-template-page-nubian-culture .lang-head h2 { color: white; margin-bottom: 16px; }
body.page-template-page-nubian-culture .lang-head h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-nubian-culture .lang-head p { color: rgba(255,255,255,0.85); font-size: 17px; }
body.page-template-page-nubian-culture .phrases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto 48px; position: relative; }
body.page-template-page-nubian-culture .phrase { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 24px 20px; border-radius: 16px; backdrop-filter: blur(8px); text-align: center; transition: all var(--transition); }
body.page-template-page-nubian-culture .phrase:hover { background: rgba(255,255,255,0.12); border-color: var(--color-warm-yellow); transform: translateY(-4px); }
body.page-template-page-nubian-culture .phrase-nubian { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--color-warm-yellow); margin-bottom: 6px; font-style: italic; }
body.page-template-page-nubian-culture .phrase-meaning { font-size: 13px; color: white; font-weight: 600; margin-bottom: 4px; }
body.page-template-page-nubian-culture .phrase-pronounce { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); font-weight: 500; }
body.page-template-page-nubian-culture .lang-footnote { text-align: center; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; padding: 24px; background: rgba(0,0,0,0.15); border-radius: 16px; position: relative; }
body.page-template-page-nubian-culture .lang-footnote strong { color: white; font-weight: 600; }

/* Music + Architecture duo */
body.page-template-page-nubian-culture .duo-section { padding: 100px 0; background: white; }
body.page-template-page-nubian-culture .duo-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-nubian-culture .duo-head .section-eyebrow { justify-content: center; }
body.page-template-page-nubian-culture .duo-head h2 { margin-bottom: 16px; }
body.page-template-page-nubian-culture .duo-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-nubian-culture .duo-head p { font-size: 17px; color: var(--color-text-muted); }
body.page-template-page-nubian-culture .duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
body.page-template-page-nubian-culture .duo-card { background: var(--color-sand); border-radius: 24px; overflow: hidden; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-nubian-culture .duo-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); transform: translateY(-4px); }
body.page-template-page-nubian-culture .duo-card-image { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 100px; opacity: 0.5; position: relative; overflow: hidden; }
body.page-template-page-nubian-culture .duo-card-image::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.06) 16px, rgba(255,255,255,0.06) 17px); }
body.page-template-page-nubian-culture .duo-card-1 .duo-card-image { background: linear-gradient(160deg, #2BB3B3, #1B4F8C); }
body.page-template-page-nubian-culture .duo-card-2 .duo-card-image { background: linear-gradient(160deg, #E8893A, #D64545); }
body.page-template-page-nubian-culture .duo-card-body { padding: 36px 32px; }
body.page-template-page-nubian-culture .duo-card-cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-nubian-red); font-weight: 600; margin-bottom: 12px; }
body.page-template-page-nubian-culture .duo-card h3 { font-size: 28px; margin-bottom: 16px; font-weight: 500; }
body.page-template-page-nubian-culture .duo-card h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-nubian-culture .duo-card > p { font-size: 15px; line-height: 1.7; margin-bottom: 16px; color: var(--color-text-muted); }
body.page-template-page-nubian-culture .duo-card-list { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--color-border); }
body.page-template-page-nubian-culture .duo-card-list-item { display: flex; gap: 12px; align-items: start; font-size: 14px; line-height: 1.5; color: var(--color-text-muted); }
body.page-template-page-nubian-culture .duo-card-list-item::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 7px; }
body.page-template-page-nubian-culture .duo-card-list-item strong { color: var(--color-text); font-weight: 600; display: block; margin-bottom: 2px; }

/* Food */
body.page-template-page-nubian-culture .food-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-nubian-culture .food-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
body.page-template-page-nubian-culture .food-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-nubian-culture .food-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-nubian-culture .food-dishes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.page-template-page-nubian-culture .food-dish { background: white; padding: 24px 20px; border-radius: 16px; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-nubian-culture .food-dish:hover { box-shadow: var(--shadow-sm); border-color: var(--color-warm-yellow); transform: translateY(-2px); }
body.page-template-page-nubian-culture .food-dish-emoji { font-size: 36px; margin-bottom: 12px; }
body.page-template-page-nubian-culture .food-dish-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--color-text); margin-bottom: 6px; font-style: italic; }
body.page-template-page-nubian-culture .food-dish-name em { color: var(--color-nubian-red); font-style: normal; font-weight: 600; }
body.page-template-page-nubian-culture .food-dish p { font-size: 13px; line-height: 1.5; color: var(--color-text-muted); margin: 0; }
body.page-template-page-nubian-culture .food-footnote { text-align: center; margin-top: 48px; font-size: 15px; color: var(--color-text-muted); }
body.page-template-page-nubian-culture .food-footnote a { color: var(--color-nubian-blue); font-weight: 600; border-bottom: 1px solid currentColor; }

/* Final CTA */
body.page-template-page-nubian-culture .final-cta { padding: 100px 0; background: white; }
body.page-template-page-nubian-culture .final-cta-inner { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
body.page-template-page-nubian-culture .final-cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-nubian-culture .final-cta-inner > * { position: relative; }
body.page-template-page-nubian-culture .final-cta .section-eyebrow { color: var(--color-warm-yellow); justify-content: center; }
body.page-template-page-nubian-culture .final-cta .section-eyebrow::before,
body.page-template-page-nubian-culture .final-cta .section-eyebrow::after { background: var(--color-warm-yellow); }
body.page-template-page-nubian-culture .final-cta .section-eyebrow::after { content: ''; width: 28px; height: 1px; }
body.page-template-page-nubian-culture .final-cta h2 { color: white; margin: 16px auto 20px; max-width: 700px; }
body.page-template-page-nubian-culture .final-cta h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-nubian-culture .final-cta p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
body.page-template-page-nubian-culture .final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-template-page-nubian-culture .final-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--color-warm-yellow); color: var(--color-text); font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); }
body.page-template-page-nubian-culture .final-btn:hover { background: var(--color-warm-yellow-deep); transform: translateY(-2px); }
body.page-template-page-nubian-culture .final-btn.outline { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; }
body.page-template-page-nubian-culture .final-btn.outline:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* Nubian Culture — responsive */
@media (max-width: 1024px) {
  body.page-template-page-nubian-culture .toc-section { top: 76px; }
  body.page-template-page-nubian-culture .hero-grid,
  body.page-template-page-nubian-culture .chapter-grid,
  body.page-template-page-nubian-culture .food-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-nubian-culture .chapter-grid.flipped { direction: ltr; }
  body.page-template-page-nubian-culture .hero-meta { max-width: none; }
  body.page-template-page-nubian-culture .hero-visual,
  body.page-template-page-nubian-culture .chapter-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-nubian-culture .chapter-1 .chapter-badge,
  body.page-template-page-nubian-culture .chapter-2 .chapter-badge,
  body.page-template-page-nubian-culture .chapter-3 .chapter-badge,
  body.page-template-page-nubian-culture .chapter-4 .chapter-badge { right: 16px; left: auto; bottom: 16px; top: auto; }
  body.page-template-page-nubian-culture .phrases-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-template-page-nubian-culture .duo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-nubian-culture .hero { padding: 48px 0 64px; }
  body.page-template-page-nubian-culture .hero-meta { grid-template-columns: 1fr; }
  body.page-template-page-nubian-culture .toc-list { gap: 6px; }
  body.page-template-page-nubian-culture .toc-link { padding: 6px 12px; font-size: 12px; }
  body.page-template-page-nubian-culture .section { padding: 64px 0; }
  body.page-template-page-nubian-culture .phrases-grid { grid-template-columns: 1fr 1fr; }
  body.page-template-page-nubian-culture .food-dishes { grid-template-columns: 1fr; }
  body.page-template-page-nubian-culture .final-cta-inner { padding: 48px 32px; }
}

/* ============================================================
   BEST TIME TO VISIT (bespoke) — verbatim port of
   _mockup-reference/best-time-to-visit.html. Scoped to
   body.page-template-page-best-time-to-visit. Notable bespoke pieces:
   sky→yellow→orange sunset arch with white sun + emoji bottom-anchored,
   2-tile hero-tldr with green/red border-left, sticky 5-link TOC,
   12-card .months-grid with peak/shoulder/low tinting, 3-card seasons
   with green/yellow/red color chips, 12-bar temp chart, events 2-col
   with date badge, 2-card packing list.
   ============================================================ */
body.page-template-page-best-time-to-visit .hero { background: var(--color-sand); padding: 72px 0 96px; position: relative; overflow: hidden; }
body.page-template-page-best-time-to-visit .hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-best-time-to-visit .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
body.page-template-page-best-time-to-visit .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 24px; }
body.page-template-page-best-time-to-visit .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .hero h1 { margin-bottom: 16px; font-weight: 400; }
body.page-template-page-best-time-to-visit .hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .hero-tagline { font-family: var(--font-script); font-size: clamp(1.75rem, 2.8vw, 2.25rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
body.page-template-page-best-time-to-visit .hero-lede { font-size: 18px; line-height: 1.65; max-width: 540px; margin-bottom: 32px; }
body.page-template-page-best-time-to-visit .hero-tldr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 540px; }
body.page-template-page-best-time-to-visit .hero-tldr-item { background: white; padding: 20px 24px; border-radius: 16px; box-shadow: var(--shadow-sm); }
body.page-template-page-best-time-to-visit .hero-tldr-item.best { border-left: 4px solid var(--color-nubian-green); }
body.page-template-page-best-time-to-visit .hero-tldr-item.avoid { border-left: 4px solid var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .hero-tldr-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 6px; }
body.page-template-page-best-time-to-visit .hero-tldr-value { font-family: var(--font-display); font-size: 17px; color: var(--color-text); font-weight: 500; line-height: 1.2; }
body.page-template-page-best-time-to-visit .hero-visual { position: relative; aspect-ratio: 4/5; }
body.page-template-page-best-time-to-visit .hero-arch { width: 100%; height: 100%; border-radius: 50% 50% 16px 16px / 35% 35% 16px 16px; background: linear-gradient(180deg, #87CEEB 0%, #F4C430 50%, #E8893A 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
body.page-template-page-best-time-to-visit .hero-arch::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.06) 14px, rgba(255,255,255,0.06) 15px); }
body.page-template-page-best-time-to-visit .hero-sun { position: absolute; top: 18%; left: 50%; transform: translateX(-50%); width: 120px; height: 120px; background: white; border-radius: 50%; box-shadow: 0 0 80px rgba(255, 255, 255, 0.7); }
body.page-template-page-best-time-to-visit .hero-arch-emoji { font-size: 100px; opacity: 0.5; position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%); z-index: 2; }
body.page-template-page-best-time-to-visit .hero-badge { position: absolute; bottom: 32px; left: -32px; background: white; padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-md); z-index: 3; }
body.page-template-page-best-time-to-visit .hero-badge strong { font-family: var(--font-display); display: block; font-size: 18px; color: var(--color-nubian-blue); margin-bottom: 2px; font-weight: 500; }
body.page-template-page-best-time-to-visit .hero-badge span { font-size: 12px; color: var(--color-text-muted); }

/* Sticky TOC */
body.page-template-page-best-time-to-visit .toc-section { background: white; padding: 32px 0; border-bottom: 1px solid var(--color-border); position: sticky; top: 80px; z-index: 50; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
body.page-template-page-best-time-to-visit .toc-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
body.page-template-page-best-time-to-visit .toc-link { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-text); transition: all var(--transition); }
body.page-template-page-best-time-to-visit .toc-link:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); }

/* Section eyebrow & shared head */
body.page-template-page-best-time-to-visit .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
body.page-template-page-best-time-to-visit .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }

/* Months grid */
body.page-template-page-best-time-to-visit .months-section { padding: 100px 0; background: white; }
body.page-template-page-best-time-to-visit .months-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-best-time-to-visit .months-head .section-eyebrow { justify-content: center; }
body.page-template-page-best-time-to-visit .months-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .months-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .months-head h2 { margin-bottom: 16px; }
body.page-template-page-best-time-to-visit .months-head p { font-size: 17px; }
body.page-template-page-best-time-to-visit .months-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
body.page-template-page-best-time-to-visit .month-card { background: var(--color-sand); border-radius: 16px; padding: 24px 20px; transition: all var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
body.page-template-page-best-time-to-visit .month-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); background: white; }
body.page-template-page-best-time-to-visit .month-card.peak { background: linear-gradient(160deg, rgba(74, 139, 44, 0.12), rgba(43, 179, 179, 0.06)); border-color: rgba(74, 139, 44, 0.3); }
body.page-template-page-best-time-to-visit .month-card.peak:hover { background: white; }
body.page-template-page-best-time-to-visit .month-card.shoulder { background: linear-gradient(160deg, rgba(244, 196, 48, 0.12), rgba(232, 137, 58, 0.06)); border-color: rgba(244, 196, 48, 0.3); }
body.page-template-page-best-time-to-visit .month-card.shoulder:hover { background: white; }
body.page-template-page-best-time-to-visit .month-card.low { background: linear-gradient(160deg, rgba(214, 69, 69, 0.08), rgba(232, 137, 58, 0.04)); border-color: rgba(214, 69, 69, 0.2); }
body.page-template-page-best-time-to-visit .month-card.low:hover { background: white; }
body.page-template-page-best-time-to-visit .month-card-tier { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; position: absolute; top: 16px; right: 16px; }
body.page-template-page-best-time-to-visit .month-card.peak .month-card-tier { background: var(--color-nubian-green); color: white; }
body.page-template-page-best-time-to-visit .month-card.shoulder .month-card-tier { background: var(--color-warm-yellow); color: var(--color-text); }
body.page-template-page-best-time-to-visit .month-card.low .month-card-tier { background: var(--color-nubian-red); color: white; }
body.page-template-page-best-time-to-visit .month-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--color-text); margin-bottom: 4px; font-style: italic; }
body.page-template-page-best-time-to-visit .month-card-temp { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--color-nubian-blue); margin-bottom: 12px; line-height: 1; font-variation-settings: "opsz" 144; }
body.page-template-page-best-time-to-visit .month-card-temp small { font-family: var(--font-body); font-size: 12px; color: var(--color-text-muted); font-weight: 400; margin-left: 4px; }
body.page-template-page-best-time-to-visit .month-card-note { font-size: 13px; line-height: 1.5; color: var(--color-text-muted); }

/* Seasons */
body.page-template-page-best-time-to-visit .seasons-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-best-time-to-visit .seasons-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-best-time-to-visit .seasons-head .section-eyebrow { justify-content: center; }
body.page-template-page-best-time-to-visit .seasons-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .seasons-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .seasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.page-template-page-best-time-to-visit .season-card { background: white; border-radius: 24px; padding: 36px 32px; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-best-time-to-visit .season-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-best-time-to-visit .season-card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: white; }
body.page-template-page-best-time-to-visit .season-card.peak .season-card-icon { background: var(--color-nubian-green); }
body.page-template-page-best-time-to-visit .season-card.shoulder .season-card-icon { background: var(--color-warm-yellow); color: var(--color-text); }
body.page-template-page-best-time-to-visit .season-card.low .season-card-icon { background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .season-card-tier { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 8px; }
body.page-template-page-best-time-to-visit .season-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 500; }
body.page-template-page-best-time-to-visit .season-card h3 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .season-card-months { font-family: var(--font-script); font-size: 22px; color: var(--color-nubian-red); margin-bottom: 20px; line-height: 1; }
body.page-template-page-best-time-to-visit .season-card > p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
body.page-template-page-best-time-to-visit .season-card-data { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 16px; border-top: 1px solid var(--color-border); }
body.page-template-page-best-time-to-visit .season-data-item { display: flex; flex-direction: column; gap: 4px; }
body.page-template-page-best-time-to-visit .season-data-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-best-time-to-visit .season-data-value { font-family: var(--font-display); font-size: 16px; color: var(--color-text); font-weight: 500; }
body.page-template-page-best-time-to-visit .season-data-value.green { color: var(--color-nubian-green); }
body.page-template-page-best-time-to-visit .season-data-value.yellow { color: var(--color-warm-yellow-deep); }
body.page-template-page-best-time-to-visit .season-data-value.red { color: var(--color-nubian-red); }

/* Weather + temp chart */
body.page-template-page-best-time-to-visit .weather-section { padding: 100px 0; background: white; }
body.page-template-page-best-time-to-visit .weather-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
body.page-template-page-best-time-to-visit .weather-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .weather-content > p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
body.page-template-page-best-time-to-visit .weather-quote { font-family: var(--font-script); font-size: 24px; color: var(--color-nubian-blue); border-left: 4px solid var(--color-warm-yellow); padding: 12px 0 12px 24px; margin: 24px 0; line-height: 1.3; }
body.page-template-page-best-time-to-visit .temp-chart { background: var(--color-sand); border-radius: 24px; padding: 32px; }
body.page-template-page-best-time-to-visit .temp-chart-title { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 24px; text-align: center; }
body.page-template-page-best-time-to-visit .temp-bars { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; align-items: flex-end; height: 200px; margin-bottom: 16px; }
body.page-template-page-best-time-to-visit .temp-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
body.page-template-page-best-time-to-visit .temp-bar { width: 100%; border-radius: 6px 6px 0 0; min-height: 30px; position: relative; transition: all var(--transition); }
body.page-template-page-best-time-to-visit .temp-bar:hover { opacity: 0.85; }
body.page-template-page-best-time-to-visit .temp-bar-value { font-family: var(--font-display); font-size: 12px; color: var(--color-text); font-weight: 600; position: absolute; top: -22px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
body.page-template-page-best-time-to-visit .temp-bar.cool { background: linear-gradient(180deg, #2BB3B3, #1B4F8C); }
body.page-template-page-best-time-to-visit .temp-bar.mild { background: linear-gradient(180deg, #4A8B2C, #2BB3B3); }
body.page-template-page-best-time-to-visit .temp-bar.warm { background: linear-gradient(180deg, #F4C430, #E8893A); }
body.page-template-page-best-time-to-visit .temp-bar.hot { background: linear-gradient(180deg, #E8893A, #D64545); }
body.page-template-page-best-time-to-visit .temp-bar-month { font-size: 11px; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.04em; }
body.page-template-page-best-time-to-visit .temp-chart-legend { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--color-border); }
body.page-template-page-best-time-to-visit .temp-chart-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--color-text-muted); }
body.page-template-page-best-time-to-visit .temp-chart-legend-dot { width: 12px; height: 12px; border-radius: 3px; }
body.page-template-page-best-time-to-visit .temp-chart-legend-dot.cool { background: linear-gradient(180deg, #2BB3B3, #1B4F8C); }
body.page-template-page-best-time-to-visit .temp-chart-legend-dot.mild { background: linear-gradient(180deg, #4A8B2C, #2BB3B3); }
body.page-template-page-best-time-to-visit .temp-chart-legend-dot.warm { background: linear-gradient(180deg, #F4C430, #E8893A); }
body.page-template-page-best-time-to-visit .temp-chart-legend-dot.hot { background: linear-gradient(180deg, #E8893A, #D64545); }

/* Events */
body.page-template-page-best-time-to-visit .events-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-best-time-to-visit .events-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-best-time-to-visit .events-head .section-eyebrow { justify-content: center; }
body.page-template-page-best-time-to-visit .events-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .events-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
body.page-template-page-best-time-to-visit .event { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 28px; background: white; border-radius: 20px; align-items: start; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-best-time-to-visit .event:hover { box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); transform: translateY(-2px); }
body.page-template-page-best-time-to-visit .event-date { background: var(--color-nubian-blue); color: white; padding: 16px 8px; border-radius: 12px; text-align: center; flex-shrink: 0; }
body.page-template-page-best-time-to-visit .event-date-month { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-bottom: 4px; }
body.page-template-page-best-time-to-visit .event-date-day { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1; font-variation-settings: "opsz" 144; }
body.page-template-page-best-time-to-visit .event-text h4 { font-size: 18px; margin-bottom: 6px; font-weight: 500; }
body.page-template-page-best-time-to-visit .event-text p { font-size: 14px; line-height: 1.6; margin: 0; }

/* Packing */
body.page-template-page-best-time-to-visit .packing-section { padding: 100px 0; background: white; }
body.page-template-page-best-time-to-visit .packing-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-best-time-to-visit .packing-head .section-eyebrow { justify-content: center; }
body.page-template-page-best-time-to-visit .packing-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-best-time-to-visit .packing-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-best-time-to-visit .packing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
body.page-template-page-best-time-to-visit .packing-card { background: var(--color-sand); border-radius: 20px; padding: 32px; }
body.page-template-page-best-time-to-visit .packing-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
body.page-template-page-best-time-to-visit .packing-card-icon { width: 48px; height: 48px; border-radius: 12px; background: white; color: var(--color-nubian-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
body.page-template-page-best-time-to-visit .packing-card-head h4 { font-size: 19px; font-weight: 500; margin: 0; }
body.page-template-page-best-time-to-visit .packing-card-head h4 small { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-top: 2px; }
body.page-template-page-best-time-to-visit .packing-list { display: flex; flex-direction: column; gap: 10px; }
body.page-template-page-best-time-to-visit .packing-list-item { display: flex; gap: 12px; align-items: start; font-size: 14px; line-height: 1.5; color: var(--color-text); }
body.page-template-page-best-time-to-visit .packing-list-item::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; background: var(--color-warm-yellow); border-radius: 50%; margin-top: 7px; }

/* Final CTA */
body.page-template-page-best-time-to-visit .final-cta { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-best-time-to-visit .final-cta-inner { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
body.page-template-page-best-time-to-visit .final-cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-best-time-to-visit .final-cta-inner > * { position: relative; }
body.page-template-page-best-time-to-visit .final-cta .section-eyebrow { color: var(--color-warm-yellow); justify-content: center; }
body.page-template-page-best-time-to-visit .final-cta .section-eyebrow::before,
body.page-template-page-best-time-to-visit .final-cta .section-eyebrow::after { background: var(--color-warm-yellow); }
body.page-template-page-best-time-to-visit .final-cta .section-eyebrow::after { content: ''; width: 28px; height: 1px; }
body.page-template-page-best-time-to-visit .final-cta h2 { color: white; margin: 16px auto 20px; max-width: 700px; }
body.page-template-page-best-time-to-visit .final-cta h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-best-time-to-visit .final-cta p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
body.page-template-page-best-time-to-visit .final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-template-page-best-time-to-visit .final-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--color-warm-yellow); color: var(--color-text); font-weight: 600; font-size: 14px; border-radius: 999px; transition: all var(--transition); }
body.page-template-page-best-time-to-visit .final-btn:hover { background: var(--color-warm-yellow-deep); transform: translateY(-2px); }
body.page-template-page-best-time-to-visit .final-btn.outline { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; }
body.page-template-page-best-time-to-visit .final-btn.outline:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* Best time — responsive */
@media (max-width: 1024px) {
  body.page-template-page-best-time-to-visit .toc-section { top: 76px; }
  body.page-template-page-best-time-to-visit .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-best-time-to-visit .hero-tldr { max-width: none; }
  body.page-template-page-best-time-to-visit .hero-visual { max-width: 480px; margin: 0 auto; }
  body.page-template-page-best-time-to-visit .months-grid { grid-template-columns: repeat(3, 1fr); }
  body.page-template-page-best-time-to-visit .seasons-grid { grid-template-columns: 1fr; }
  body.page-template-page-best-time-to-visit .weather-grid { grid-template-columns: 1fr; gap: 48px; }
  body.page-template-page-best-time-to-visit .events-grid,
  body.page-template-page-best-time-to-visit .packing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-template-page-best-time-to-visit .hero { padding: 48px 0 64px; }
  body.page-template-page-best-time-to-visit .hero-tldr { grid-template-columns: 1fr; }
  body.page-template-page-best-time-to-visit .toc-list { gap: 6px; }
  body.page-template-page-best-time-to-visit .toc-link { padding: 6px 12px; font-size: 12px; }
  body.page-template-page-best-time-to-visit .months-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-template-page-best-time-to-visit .temp-bars { height: 160px; gap: 2px; }
  body.page-template-page-best-time-to-visit .temp-bar-month { font-size: 9px; }
  body.page-template-page-best-time-to-visit .temp-bar-value { font-size: 10px; }
  body.page-template-page-best-time-to-visit .final-cta-inner { padding: 48px 32px; }
}

/* ============================================================
   LEGAL PAGES (shared) — verbatim port of
   _mockup-reference/{cancellation,policies,privacy,terms}.html.
   All 4 share the same legal-hero + .doc + numbered-h2 shell.
   Per-page bespoke modules (.tier-card / .doc-toc sidebar /
   .data-table / .contract-meta) are appended after the shared block.
   Scoped via comma-joined body classes.
   ============================================================ */
body.page-template-page-cancellation .legal-hero,
body.page-template-page-policies .legal-hero,
body.page-template-page-privacy .legal-hero,
body.page-template-page-terms .legal-hero { background: var(--color-sand); padding: 56px 0 64px; position: relative; overflow: hidden; }
body.page-template-page-cancellation .legal-hero::before,
body.page-template-page-policies .legal-hero::before,
body.page-template-page-privacy .legal-hero::before,
body.page-template-page-terms .legal-hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-cancellation .legal-hero-eyebrow,
body.page-template-page-policies .legal-hero-eyebrow,
body.page-template-page-privacy .legal-hero-eyebrow,
body.page-template-page-terms .legal-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; position: relative; }
body.page-template-page-cancellation .legal-hero-eyebrow::before,
body.page-template-page-policies .legal-hero-eyebrow::before,
body.page-template-page-privacy .legal-hero-eyebrow::before,
body.page-template-page-terms .legal-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-cancellation .legal-hero h1,
body.page-template-page-policies .legal-hero h1,
body.page-template-page-privacy .legal-hero h1,
body.page-template-page-terms .legal-hero h1 { margin-bottom: 16px; font-weight: 400; max-width: 720px; position: relative; }
body.page-template-page-cancellation .legal-hero h1 em,
body.page-template-page-policies .legal-hero h1 em,
body.page-template-page-privacy .legal-hero h1 em,
body.page-template-page-terms .legal-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-cancellation .legal-hero-lede,
body.page-template-page-policies .legal-hero-lede,
body.page-template-page-privacy .legal-hero-lede,
body.page-template-page-terms .legal-hero-lede { font-size: 18px; max-width: 640px; position: relative; }
body.page-template-page-cancellation .legal-hero-meta,
body.page-template-page-policies .legal-hero-meta,
body.page-template-page-privacy .legal-hero-meta,
body.page-template-page-terms .legal-hero-meta { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; position: relative; }
body.page-template-page-cancellation .legal-hero-meta-item,
body.page-template-page-policies .legal-hero-meta-item,
body.page-template-page-privacy .legal-hero-meta-item,
body.page-template-page-terms .legal-hero-meta-item { font-size: 14px; color: var(--color-text-muted); display: flex; align-items: center; gap: 8px; }
body.page-template-page-cancellation .legal-hero-meta-item svg,
body.page-template-page-policies .legal-hero-meta-item svg,
body.page-template-page-privacy .legal-hero-meta-item svg,
body.page-template-page-terms .legal-hero-meta-item svg { width: 16px; height: 16px; color: var(--color-nubian-blue); flex-shrink: 0; }
body.page-template-page-cancellation .legal-hero-meta-item strong,
body.page-template-page-policies .legal-hero-meta-item strong,
body.page-template-page-privacy .legal-hero-meta-item strong,
body.page-template-page-terms .legal-hero-meta-item strong { color: var(--color-text); font-weight: 600; }

/* Doc layout & content */
body.page-template-page-cancellation .doc,
body.page-template-page-privacy .doc,
body.page-template-page-terms .doc { padding: 64px 0 100px; }
body.page-template-page-cancellation .doc-content,
body.page-template-page-privacy .doc-content,
body.page-template-page-terms .doc-content { max-width: 880px; margin: 0 auto; }

body.page-template-page-policies .doc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 64px; padding: 64px 0 100px; align-items: start; }
body.page-template-page-policies .doc-sidebar { position: sticky; top: 100px; }
body.page-template-page-policies .doc-toc { background: var(--color-sand); border-radius: 20px; padding: 28px 24px; }
body.page-template-page-policies .doc-toc-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 700; margin-bottom: 16px; }
body.page-template-page-policies .doc-toc-list { display: flex; flex-direction: column; gap: 10px; }
body.page-template-page-policies .doc-toc-list a { font-size: 14px; color: var(--color-text); padding: 6px 0 6px 12px; border-left: 2px solid transparent; margin-left: -14px; transition: all var(--transition); font-weight: 500; }
body.page-template-page-policies .doc-toc-list a:hover { color: var(--color-nubian-blue); border-left-color: var(--color-warm-yellow); }

body.page-template-page-cancellation .doc-content > p,
body.page-template-page-policies .doc-content > p,
body.page-template-page-privacy .doc-content > p,
body.page-template-page-terms .doc-content > p { font-size: 17px; line-height: 1.75; }
body.page-template-page-cancellation .doc-content ul,
body.page-template-page-cancellation .doc-content ol,
body.page-template-page-policies .doc-content ul,
body.page-template-page-policies .doc-content ol,
body.page-template-page-privacy .doc-content ul,
body.page-template-page-privacy .doc-content ol,
body.page-template-page-terms .doc-content ul,
body.page-template-page-terms .doc-content ol { margin: 16px 0; padding-left: 24px; }
body.page-template-page-cancellation .doc-content ul li,
body.page-template-page-cancellation .doc-content ol li,
body.page-template-page-policies .doc-content ul li,
body.page-template-page-policies .doc-content ol li,
body.page-template-page-privacy .doc-content ul li,
body.page-template-page-privacy .doc-content ol li,
body.page-template-page-terms .doc-content ul li,
body.page-template-page-terms .doc-content ol li { margin-bottom: 12px; padding-left: 8px; line-height: 1.65; }
body.page-template-page-cancellation .doc-content ul li,
body.page-template-page-policies .doc-content ul li,
body.page-template-page-privacy .doc-content ul li,
body.page-template-page-terms .doc-content ul li { list-style: none; position: relative; }
body.page-template-page-cancellation .doc-content ul li::before,
body.page-template-page-policies .doc-content ul li::before,
body.page-template-page-privacy .doc-content ul li::before,
body.page-template-page-terms .doc-content ul li::before { content: ''; position: absolute; left: -16px; top: 11px; width: 6px; height: 6px; background: var(--color-warm-yellow); border-radius: 50%; }
body.page-template-page-cancellation .doc-content ol,
body.page-template-page-policies .doc-content ol,
body.page-template-page-privacy .doc-content ol,
body.page-template-page-terms .doc-content ol { list-style: decimal; }
body.page-template-page-cancellation .doc-content strong,
body.page-template-page-policies .doc-content strong,
body.page-template-page-privacy .doc-content strong,
body.page-template-page-terms .doc-content strong { color: var(--color-text); font-weight: 600; }

body.page-template-page-cancellation .doc-content h2,
body.page-template-page-policies .doc-content h2,
body.page-template-page-privacy .doc-content h2,
body.page-template-page-terms .doc-content h2 { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
body.page-template-page-cancellation .doc-content h2 em,
body.page-template-page-policies .doc-content h2 em,
body.page-template-page-privacy .doc-content h2 em,
body.page-template-page-terms .doc-content h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-cancellation .doc-content h2 .num,
body.page-template-page-policies .doc-content h2 .num,
body.page-template-page-privacy .doc-content h2 .num,
body.page-template-page-terms .doc-content h2 .num { font-family: var(--font-display); font-size: 14px; color: var(--color-nubian-red); font-weight: 600; padding: 5px 11px; background: rgba(214, 69, 69, 0.08); border-radius: 999px; letter-spacing: 0.08em; }

/* Callouts */
body.page-template-page-cancellation .doc-callout,
body.page-template-page-policies .doc-callout,
body.page-template-page-privacy .doc-callout,
body.page-template-page-terms .doc-callout { background: var(--color-sand); border-left: 4px solid var(--color-warm-yellow); padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; }
body.page-template-page-cancellation .doc-callout strong,
body.page-template-page-policies .doc-callout strong,
body.page-template-page-privacy .doc-callout strong,
body.page-template-page-terms .doc-callout strong { color: var(--color-nubian-blue); }
body.page-template-page-cancellation .doc-callout p,
body.page-template-page-policies .doc-callout p,
body.page-template-page-privacy .doc-callout p,
body.page-template-page-terms .doc-callout p { margin-bottom: 0; font-size: 15px; line-height: 1.65; }
body.page-template-page-cancellation .doc-callout.script,
body.page-template-page-policies .doc-callout.script,
body.page-template-page-privacy .doc-callout.script,
body.page-template-page-terms .doc-callout.script { font-family: var(--font-script); font-size: 22px; color: var(--color-nubian-blue); border-left-color: var(--color-nubian-red); line-height: 1.4; }
body.page-template-page-cancellation .doc-callout.warning,
body.page-template-page-policies .doc-callout.warning,
body.page-template-page-privacy .doc-callout.warning,
body.page-template-page-terms .doc-callout.warning { border-left-color: var(--color-nubian-red); background: rgba(214, 69, 69, 0.04); }

/* Footer meta strip */
body.page-template-page-cancellation .doc-meta-footer,
body.page-template-page-policies .doc-meta-footer,
body.page-template-page-privacy .doc-meta-footer,
body.page-template-page-terms .doc-meta-footer { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--color-text-muted); }
body.page-template-page-cancellation .doc-meta-footer a,
body.page-template-page-policies .doc-meta-footer a,
body.page-template-page-privacy .doc-meta-footer a,
body.page-template-page-terms .doc-meta-footer a { font-weight: 600; }

/* Cancellation tier cards */
body.page-template-page-cancellation .tiers-section { margin: 32px 0 48px; }
body.page-template-page-cancellation .tier-card { background: white; border-radius: 16px; padding: 28px 32px; margin-bottom: 16px; display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; border: 1px solid var(--color-border); transition: all var(--transition); }
body.page-template-page-cancellation .tier-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
body.page-template-page-cancellation .tier-card.green { border-left: 6px solid var(--color-nubian-green); background: linear-gradient(90deg, rgba(74,139,44,0.05), white 30%); }
body.page-template-page-cancellation .tier-card.yellow { border-left: 6px solid var(--color-warm-yellow); background: linear-gradient(90deg, rgba(244,196,48,0.06), white 30%); }
body.page-template-page-cancellation .tier-card.red { border-left: 6px solid var(--color-nubian-red); background: linear-gradient(90deg, rgba(214,69,69,0.05), white 30%); }
body.page-template-page-cancellation .tier-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
body.page-template-page-cancellation .tier-card.green .tier-icon { background: var(--color-nubian-green); }
body.page-template-page-cancellation .tier-card.yellow .tier-icon { background: var(--color-warm-yellow); color: var(--color-text); }
body.page-template-page-cancellation .tier-card.red .tier-icon { background: var(--color-nubian-red); }
body.page-template-page-cancellation .tier-text strong { font-family: var(--font-display); display: block; font-size: 20px; color: var(--color-text); font-weight: 500; margin-bottom: 4px; }
body.page-template-page-cancellation .tier-text span { font-size: 14px; color: var(--color-text-muted); }
body.page-template-page-cancellation .tier-charge { font-family: var(--font-display); font-size: 24px; font-weight: 500; font-variation-settings: "opsz" 144; }
body.page-template-page-cancellation .tier-card.green .tier-charge { color: var(--color-nubian-green); }
body.page-template-page-cancellation .tier-card.yellow .tier-charge { color: var(--color-warm-yellow-deep); }
body.page-template-page-cancellation .tier-card.red .tier-charge { color: var(--color-nubian-red); }

/* Privacy data table */
body.page-template-page-privacy .data-table { background: white; border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; margin: 24px 0; }
body.page-template-page-privacy .data-table-row { display: grid; grid-template-columns: 1.2fr 2fr; padding: 20px 24px; border-bottom: 1px solid var(--color-border); align-items: start; gap: 16px; }
body.page-template-page-privacy .data-table-row:last-child { border-bottom: none; }
body.page-template-page-privacy .data-table-row:hover { background: var(--color-sand); }
body.page-template-page-privacy .data-table-label { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--color-text); }
body.page-template-page-privacy .data-table-value { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* Terms contract-meta strip */
body.page-template-page-terms .contract-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; padding: 28px; background: var(--color-sand); border-radius: 16px; }
body.page-template-page-terms .contract-meta-item { display: flex; flex-direction: column; gap: 4px; }
body.page-template-page-terms .contract-meta-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
body.page-template-page-terms .contract-meta-value { font-family: var(--font-display); font-size: 15px; color: var(--color-text); font-weight: 500; line-height: 1.3; }

/* Legal — responsive */
@media (max-width: 1024px) {
  body.page-template-page-policies .doc-layout { grid-template-columns: 1fr; gap: 32px; }
  body.page-template-page-policies .doc-sidebar { position: static; }
  body.page-template-page-privacy .data-table-row { grid-template-columns: 1fr; gap: 8px; }
  body.page-template-page-terms .contract-meta { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 640px) {
  body.page-template-page-cancellation .legal-hero,
  body.page-template-page-policies .legal-hero,
  body.page-template-page-privacy .legal-hero,
  body.page-template-page-terms .legal-hero { padding: 40px 0 48px; }
  body.page-template-page-cancellation .tier-card { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  body.page-template-page-cancellation .tier-icon { margin: 0 auto; }
}

/* ============================================================
   UTILITY CHROME (shared by thank-you + 404)
   Verbatim port of the minimal header + footer-mini in
   _mockup-reference/thank-you.html and _mockup-reference/404.html.
   The .header.header-utility selector overrides the standard sticky
   chrome with a flat white header (logo + single CTA) on those pages.
   ============================================================ */
body.page-template-page-thank-you,
body.error404 { min-height: 100vh; display: flex; flex-direction: column; }
body.page-template-page-thank-you .header.header-utility,
body.error404 .header.header-utility { position: static; background: white; border-bottom: 1px solid var(--color-border); backdrop-filter: none; box-shadow: none; }

body.page-template-page-thank-you .footer-mini,
body.error404 .footer-mini { background: var(--color-text); color: rgba(255,255,255,0.6); padding: 32px 0; text-align: center; font-size: 13px; }
body.page-template-page-thank-you .footer-mini-links,
body.error404 .footer-mini-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
body.page-template-page-thank-you .footer-mini-links a,
body.error404 .footer-mini-links a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color var(--transition); }
body.page-template-page-thank-you .footer-mini-links a:hover,
body.error404 .footer-mini-links a:hover { color: var(--color-warm-yellow); }
body.page-template-page-thank-you .footer-mini-copyright,
body.error404 .footer-mini-copyright { color: rgba(255,255,255,0.4); }

@media (max-width: 640px) {
  body.page-template-page-thank-you .footer-mini-links,
  body.error404 .footer-mini-links { gap: 16px; }
}

/* ============================================================
   THANK YOU — verbatim port of _mockup-reference/thank-you.html.
   Centered card with green check, eyebrow, headline, info-box,
   action buttons, and a 3-tile suggestion grid.
   ============================================================ */
body.page-template-page-thank-you .ty-main { flex: 1; background: var(--color-sand); position: relative; overflow: hidden; display: flex; align-items: center; padding: 80px 0; }
body.page-template-page-thank-you .ty-main::before { content: ''; position: absolute; top: -300px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 60%); opacity: 0.18; }
body.page-template-page-thank-you .ty-main::after { content: ''; position: absolute; bottom: -200px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-nubian-blue) 0%, transparent 70%); opacity: 0.06; }

body.page-template-page-thank-you .ty-card { background: white; max-width: 720px; margin: 0 auto; padding: 64px; border-radius: 32px; box-shadow: var(--shadow-lg); text-align: center; position: relative; z-index: 2; }
body.page-template-page-thank-you .ty-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 6px; width: 240px; background: linear-gradient(90deg, var(--color-nubian-blue), var(--color-warm-yellow), var(--color-nubian-red)); border-radius: 0 0 8px 8px; }

body.page-template-page-thank-you .ty-check { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--color-nubian-green) 0%, #6BA838 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; box-shadow: 0 12px 32px rgba(74, 139, 44, 0.35); animation: hartie-ty-check-pulse 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }
@keyframes hartie-ty-check-pulse {
  0%   { transform: scale(0);    opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
body.page-template-page-thank-you .ty-check svg { color: white; width: 48px; height: 48px; }

body.page-template-page-thank-you .ty-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; justify-content: center; }
body.page-template-page-thank-you .ty-eyebrow::before,
body.page-template-page-thank-you .ty-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }

body.page-template-page-thank-you .ty-headline { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; font-weight: 400; }
body.page-template-page-thank-you .ty-headline em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-thank-you .ty-tagline { font-family: var(--font-script); font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
body.page-template-page-thank-you .ty-lede { font-size: 17px; line-height: 1.65; color: var(--color-text-muted); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

body.page-template-page-thank-you .ty-info-box { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px 28px; background: var(--color-sand); border-radius: 16px; margin-bottom: 40px; text-align: left; flex-wrap: wrap; }
body.page-template-page-thank-you .ty-info-box-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--color-warm-yellow); display: flex; align-items: center; justify-content: center; color: var(--color-text); flex-shrink: 0; }
body.page-template-page-thank-you .ty-info-box-text strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--color-text); line-height: 1.2; margin-bottom: 2px; }
body.page-template-page-thank-you .ty-info-box-text span { font-size: 14px; color: var(--color-text-muted); }

body.page-template-page-thank-you .ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
body.page-template-page-thank-you .ty-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; border-radius: 999px; transition: all var(--transition); }
body.page-template-page-thank-you .ty-btn.whatsapp { background: #25D366; color: white; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
body.page-template-page-thank-you .ty-btn.whatsapp:hover { background: #1FB855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
body.page-template-page-thank-you .ty-btn.secondary { background: white; color: var(--color-text); border: 1px solid var(--color-border); }
body.page-template-page-thank-you .ty-btn.secondary:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); transform: translateY(-2px); }

body.page-template-page-thank-you .ty-suggestions { padding-top: 32px; border-top: 1px solid var(--color-border); }
body.page-template-page-thank-you .ty-suggestions-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 16px; }
body.page-template-page-thank-you .ty-suggestions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
body.page-template-page-thank-you .ty-suggestion { padding: 16px 12px; background: var(--color-sand); border-radius: 12px; font-size: 13px; font-weight: 600; color: var(--color-nubian-blue); transition: all var(--transition); text-align: center; }
body.page-template-page-thank-you .ty-suggestion:hover { background: var(--color-nubian-blue); color: white; transform: translateY(-2px); }
body.page-template-page-thank-you .ty-suggestion-icon { display: block; margin: 0 auto 8px; color: var(--color-nubian-blue); }
body.page-template-page-thank-you .ty-suggestion:hover .ty-suggestion-icon { color: white; }

@media (max-width: 640px) {
  body.page-template-page-thank-you .ty-main { padding: 48px 0; }
  body.page-template-page-thank-you .ty-card { padding: 40px 28px; border-radius: 24px; }
  body.page-template-page-thank-you .ty-check { width: 72px; height: 72px; }
  body.page-template-page-thank-you .ty-check svg { width: 36px; height: 36px; }
  body.page-template-page-thank-you .ty-info-box { flex-direction: column; text-align: center; }
  body.page-template-page-thank-you .ty-suggestions-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   404 — verbatim port of _mockup-reference/404.html. Two-column
   error layout: text + actions left, animated SVG illustration right
   (sun + dunes + camel + palm tree). No schema; content lives in
   404.php directly.
   ============================================================ */
body.error404 .error-main { flex: 1; background: var(--color-sand); position: relative; overflow: hidden; display: flex; align-items: center; padding: 80px 0; }
body.error404 .error-main::before { content: ''; position: absolute; top: -300px; right: -150px; width: 700px; height: 700px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 60%); opacity: 0.18; }
body.error404 .error-main::after { content: ''; position: absolute; bottom: -300px; left: -150px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-nubian-blue) 0%, transparent 60%); opacity: 0.06; }
body.error404 .error-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; position: relative; }

body.error404 .error-content { position: relative; z-index: 2; }
body.error404 .error-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 24px; }
body.error404 .error-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.error404 .error-num { font-family: var(--font-display); font-size: clamp(8rem, 18vw, 14rem); font-weight: 400; line-height: 0.85; letter-spacing: -0.06em; color: var(--color-nubian-blue); margin-bottom: 24px; font-variation-settings: "opsz" 144; font-style: italic; }
body.error404 .error-num span { color: var(--color-warm-yellow); font-style: normal; }
body.error404 .error-headline { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 400; margin-bottom: 16px; line-height: 1.15; }
body.error404 .error-headline em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.error404 .error-tagline { font-family: var(--font-script); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--color-nubian-red); margin-bottom: 24px; line-height: 1.2; }
body.error404 .error-lede { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); margin-bottom: 40px; max-width: 480px; }

body.error404 .error-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
body.error404 .error-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; border-radius: 999px; transition: all var(--transition); }
body.error404 .error-btn.primary { background: var(--color-nubian-red); color: white; box-shadow: 0 4px 16px rgba(214, 69, 69, 0.25); }
body.error404 .error-btn.primary:hover { background: var(--color-nubian-red-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(214, 69, 69, 0.35); }
body.error404 .error-btn.secondary { background: white; color: var(--color-text); border: 1px solid var(--color-border); }
body.error404 .error-btn.secondary:hover { border-color: var(--color-nubian-blue); color: var(--color-nubian-blue); transform: translateY(-2px); }

body.error404 .error-quicklinks { padding-top: 24px; border-top: 1px solid var(--color-border); }
body.error404 .error-quicklinks-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; margin-bottom: 12px; }
body.error404 .error-quicklinks-list { display: flex; flex-wrap: wrap; gap: 8px 24px; }
body.error404 .error-quicklink { font-size: 14px; color: var(--color-nubian-blue); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
body.error404 .error-quicklink:hover { border-bottom-color: var(--color-nubian-blue); }

/* Illustration */
body.error404 .error-illustration { position: relative; height: 480px; }
body.error404 .dunes { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; border-radius: 50% 50% 0 0 / 30% 30% 0 0; background: linear-gradient(180deg, #F4C430 0%, #E8893A 100%); box-shadow: var(--shadow-lg); }
body.error404 .dunes-back { position: absolute; bottom: 0; left: -10%; right: -10%; height: 50%; border-radius: 50% 50% 0 0 / 30% 30% 0 0; background: linear-gradient(180deg, #E8893A 0%, #D64545 100%); opacity: 0.6; transform: translateX(20%); }
body.error404 .sun { position: absolute; top: 8%; right: 12%; width: 120px; height: 120px; border-radius: 50%; background: var(--color-warm-yellow); box-shadow: 0 0 80px rgba(244, 196, 48, 0.7); animation: hartie-404-sun-pulse 4s ease-in-out infinite; }
@keyframes hartie-404-sun-pulse {
  0%, 100% { box-shadow: 0 0 80px rgba(244, 196, 48, 0.7); }
  50%      { box-shadow: 0 0 120px rgba(244, 196, 48, 0.9); }
}
body.error404 .sun::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: var(--color-warm-yellow); opacity: 0.3; z-index: -1; }

body.error404 .camel { position: absolute; bottom: 35%; left: 8%; width: 200px; z-index: 2; animation: hartie-404-camel-walk 6s ease-in-out infinite; }
@keyframes hartie-404-camel-walk {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
body.error404 .camel-tracks { position: absolute; bottom: 28%; left: 0; width: 100%; height: 8px; z-index: 1; }
body.error404 .camel-track { position: absolute; width: 12px; height: 6px; background: var(--color-nubian-blue); border-radius: 50%; opacity: 0.3; }
body.error404 .palm-tree { position: absolute; bottom: 35%; right: 5%; width: 80px; z-index: 2; }
body.error404 .cloud { position: absolute; width: 80px; height: 32px; background: white; border-radius: 999px; opacity: 0.6; }
body.error404 .cloud-1 { top: 15%; left: 20%; }
body.error404 .cloud-2 { top: 25%; left: 50%; width: 60px; height: 24px; opacity: 0.4; }

@media (max-width: 1024px) {
  body.error404 .error-grid { grid-template-columns: 1fr; gap: 48px; }
  body.error404 .error-illustration { height: 400px; max-width: 600px; margin: 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  body.error404 .error-main { padding: 48px 0; }
  body.error404 .error-illustration { height: 300px; }
  body.error404 .camel { width: 140px; }
  body.error404 .palm-tree { width: 60px; }
  body.error404 .sun { width: 80px; height: 80px; }
}

/* ============================================================
   SITEMAP — verbatim port of _mockup-reference/sitemap.html.
   Hero with 4 stats + 6-block grid (Core / Discover / Special /
   Rooms wide / Experiences wide / Legal). Hard-coded content.
   Hero/main classes are .sitemap-hero/.sitemap-main to avoid
   colliding with other templates' .hero/.main.
   ============================================================ */
body.page-template-page-sitemap .sitemap-hero { background: var(--color-sand); padding: 64px 0 80px; position: relative; overflow: hidden; }
body.page-template-page-sitemap .sitemap-hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-sitemap .sitemap-hero .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; position: relative; }
body.page-template-page-sitemap .sitemap-hero .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-sitemap .sitemap-hero h1 { margin-bottom: 16px; font-weight: 400; max-width: 800px; position: relative; }
body.page-template-page-sitemap .sitemap-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-sitemap .sitemap-hero p { font-size: 18px; color: var(--color-text-muted); max-width: 640px; line-height: 1.6; position: relative; }
body.page-template-page-sitemap .hero-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; position: relative; }
body.page-template-page-sitemap .hero-stat strong { font-family: var(--font-display); font-size: 28px; color: var(--color-nubian-blue); display: block; line-height: 1; margin-bottom: 4px; font-variation-settings: "opsz" 144; }
body.page-template-page-sitemap .hero-stat span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

body.page-template-page-sitemap .sitemap-main { padding: 80px 0; }
body.page-template-page-sitemap .main-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
body.page-template-page-sitemap .section-block { background: var(--color-sand); border-radius: 24px; padding: 32px; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-sitemap .section-block:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-sitemap .section-block.wide { grid-column: span 3; }
body.page-template-page-sitemap .section-block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
body.page-template-page-sitemap .section-block-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; font-family: var(--font-display); font-weight: 600; font-size: 18px; font-variation-settings: "opsz" 144; }
body.page-template-page-sitemap .section-block.core .section-block-icon     { background: var(--color-nubian-blue); }
body.page-template-page-sitemap .section-block.rooms .section-block-icon    { background: var(--color-nubian-red); }
body.page-template-page-sitemap .section-block.exp .section-block-icon      { background: var(--color-nubian-green); }
body.page-template-page-sitemap .section-block.dest .section-block-icon     { background: var(--color-nubian-turq); }
body.page-template-page-sitemap .section-block.legal .section-block-icon    { background: var(--color-text); }
body.page-template-page-sitemap .section-block.optional .section-block-icon { background: var(--color-warm-yellow); color: var(--color-text); }
body.page-template-page-sitemap .section-block-head h2 { font-size: 22px; margin: 0; font-weight: 500; }
body.page-template-page-sitemap .section-block-head h2 em { color: var(--color-nubian-blue); font-style: italic; font-weight: 500; }
body.page-template-page-sitemap .section-block-head small { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; display: block; margin-top: 2px; }

body.page-template-page-sitemap .page-list { display: flex; flex-direction: column; gap: 4px; }
body.page-template-page-sitemap .page-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: 10px; font-size: 15px; color: var(--color-text); transition: all var(--transition); gap: 12px; }
body.page-template-page-sitemap .page-link:hover { background: white; color: var(--color-nubian-blue); transform: translateX(4px); }
body.page-template-page-sitemap .section-block:hover .page-link:hover { background: var(--color-sand); }
body.page-template-page-sitemap .page-link-icon { color: var(--color-text-muted); transition: all var(--transition); flex-shrink: 0; }
body.page-template-page-sitemap .page-link:hover .page-link-icon { color: var(--color-nubian-red); transform: translateX(2px); }
body.page-template-page-sitemap .page-link-meta { font-size: 11px; color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.04em; }
body.page-template-page-sitemap .page-link-name { display: flex; flex-direction: column; gap: 2px; }
body.page-template-page-sitemap .page-link-name strong { font-weight: 500; line-height: 1.2; }
body.page-template-page-sitemap .page-link-name small { font-size: 12px; color: var(--color-text-muted); font-style: italic; line-height: 1.2; }

body.page-template-page-sitemap .rooms-grid,
body.page-template-page-sitemap .exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

@media (max-width: 1024px) {
  body.page-template-page-sitemap .main-grid { grid-template-columns: 1fr 1fr; }
  body.page-template-page-sitemap .section-block.wide { grid-column: span 2; }
  body.page-template-page-sitemap .rooms-grid,
  body.page-template-page-sitemap .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body.page-template-page-sitemap .main-grid { grid-template-columns: 1fr; }
  body.page-template-page-sitemap .section-block.wide { grid-column: span 1; }
  body.page-template-page-sitemap .rooms-grid,
  body.page-template-page-sitemap .exp-grid { grid-template-columns: 1fr; }
  body.page-template-page-sitemap .hero-stats { gap: 24px; }
}

/* ============================================================
   BOOK — verbatim port of _mockup-reference/book.html.
   Hero + 4-item trust ribbon + Beds24 widget container with fallback
   form + 6-card "Why book direct" + 2-card cancellation/payment
   policy grid + dark-blue help section.
   ============================================================ */
body.page-template-page-book .book-hero { background: var(--color-sand); padding: 64px 0 0; position: relative; overflow: hidden; }
body.page-template-page-book .book-hero::before { content: ''; position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.15; }
body.page-template-page-book .book-hero-head { max-width: 720px; margin-bottom: 48px; position: relative; }
body.page-template-page-book .book-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; }
body.page-template-page-book .book-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-book .book-hero h1 { margin-bottom: 16px; font-weight: 400; }
body.page-template-page-book .book-hero h1 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-book .book-hero-tagline { font-family: var(--font-script); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--color-nubian-red); line-height: 1.2; }

/* Trust ribbon */
body.page-template-page-book .trust-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: white; border-radius: 16px 16px 0 0; padding: 20px 32px; position: relative; z-index: 2; border: 1px solid var(--color-border); border-bottom: none; max-width: 1100px; margin: 0 auto; }
body.page-template-page-book .trust-item { display: flex; align-items: center; gap: 12px; position: relative; padding: 0 16px; }
body.page-template-page-book .trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 32px; background: var(--color-border); }
body.page-template-page-book .trust-item svg { width: 22px; height: 22px; color: var(--color-nubian-green); flex-shrink: 0; }
body.page-template-page-book .trust-item-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--color-text); line-height: 1.2; }
body.page-template-page-book .trust-item-text span { font-size: 12px; color: var(--color-text-muted); }

/* Widget */
body.page-template-page-book .widget-section { padding: 0 0 80px; background: var(--color-sand); }
body.page-template-page-book .widget-frame { background: white; border-radius: 0 0 24px 24px; padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); border-top: none; max-width: 1100px; margin: 0 auto; position: relative; }
body.page-template-page-book .widget-fallback-form { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto; gap: 8px; align-items: end; margin-bottom: 32px; }
body.page-template-page-book .widget-field { padding: 14px 18px; border: 1px solid var(--color-border); border-radius: 12px; transition: all var(--transition); }
body.page-template-page-book .widget-field:focus-within { border-color: var(--color-nubian-blue); }
body.page-template-page-book .widget-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px; }
body.page-template-page-book .widget-field input,
body.page-template-page-book .widget-field select { width: 100%; border: none; background: transparent; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--color-text); outline: none; }
body.page-template-page-book .widget-submit { height: 100%; padding: 0 28px; background: var(--color-nubian-red); color: white; border-radius: 12px; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; transition: all var(--transition); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
body.page-template-page-book .widget-submit:hover { background: var(--color-nubian-red-deep); }
body.page-template-page-book .beds24-placeholder { background: var(--color-sand); border: 2px dashed var(--color-border); border-radius: 16px; padding: 64px 32px; text-align: center; position: relative; }
body.page-template-page-book .beds24-placeholder-icon { width: 64px; height: 64px; margin: 0 auto 24px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-nubian-blue); }
body.page-template-page-book .beds24-placeholder h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
body.page-template-page-book .beds24-placeholder p { font-size: 15px; max-width: 480px; margin: 0 auto 24px; line-height: 1.6; }
body.page-template-page-book .beds24-placeholder-code { display: inline-block; font-family: ui-monospace, 'SF Mono', monospace; font-size: 13px; background: white; border: 1px solid var(--color-border); border-radius: 8px; padding: 8px 14px; color: var(--color-text-muted); }
body.page-template-page-book .beds24-placeholder-code strong { color: var(--color-nubian-blue); }
/* "Replace with: data-beds24-propid…" is an admin-only hint. Public
 * visitors should not see it. inc/beds24-integration.php adds the
 * beds24-admin-view body class only when current_user_can('manage_options'). */
body.beds24-unconfigured:not(.beds24-admin-view) .beds24-placeholder-code { display: none; }
/* Once hydrated by inc/beds24-integration.php, the placeholder content
 * is replaced with the iframe; collapse the dashed-border frame so the
 * iframe sits clean. */
body.page-template-page-book .beds24-placeholder.beds24-hydrated {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}
body.page-template-page-book .beds24-placeholder.beds24-hydrated > :not(iframe) { display: none; }

/* Why direct */
body.page-template-page-book .why-direct-section { padding: 100px 0; background: white; }
body.page-template-page-book .why-direct-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-book .why-direct-head .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; justify-content: center; }
body.page-template-page-book .why-direct-head .section-eyebrow::before,
body.page-template-page-book .why-direct-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-book .why-direct-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-book .why-direct-head h2 { margin-bottom: 16px; }
body.page-template-page-book .why-direct-head p { font-size: 17px; }
body.page-template-page-book .why-direct-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
body.page-template-page-book .why-direct { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 32px; background: var(--color-sand); border-radius: 20px; align-items: start; transition: all var(--transition); border: 1px solid transparent; }
body.page-template-page-book .why-direct:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--color-warm-yellow); }
body.page-template-page-book .why-direct-icon { width: 64px; height: 64px; border-radius: 16px; background: white; display: flex; align-items: center; justify-content: center; color: var(--color-nubian-blue); flex-shrink: 0; }
body.page-template-page-book .why-direct-text h4 { font-size: 19px; margin-bottom: 8px; font-weight: 500; }
body.page-template-page-book .why-direct-text p { font-size: 15px; line-height: 1.6; }

/* Policies */
body.page-template-page-book .policies-section { padding: 100px 0; background: var(--color-sand); }
body.page-template-page-book .policies-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
body.page-template-page-book .policies-head .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-nubian-red); margin-bottom: 16px; justify-content: center; }
body.page-template-page-book .policies-head .section-eyebrow::before,
body.page-template-page-book .policies-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--color-nubian-red); }
body.page-template-page-book .policies-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
body.page-template-page-book .policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
body.page-template-page-book .policy-card { background: white; border-radius: 24px; padding: 40px; border: 1px solid var(--color-border); }
body.page-template-page-book .policy-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
body.page-template-page-book .policy-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-warm-yellow); display: flex; align-items: center; justify-content: center; color: var(--color-text); flex-shrink: 0; }
body.page-template-page-book .policy-card-head h3 { font-size: 22px; font-weight: 500; margin: 0; }
body.page-template-page-book .policy-rows { display: flex; flex-direction: column; gap: 16px; }
body.page-template-page-book .policy-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--color-border); align-items: start; }
body.page-template-page-book .policy-row:last-child { border-bottom: none; padding-bottom: 0; }
body.page-template-page-book .policy-row-label { font-size: 14px; color: var(--color-text-muted); font-weight: 500; }
body.page-template-page-book .policy-row-value { font-family: var(--font-display); font-size: 15px; color: var(--color-text); font-weight: 500; text-align: right; }
body.page-template-page-book .policy-row-value.green  { color: var(--color-nubian-green); }
body.page-template-page-book .policy-row-value.yellow { color: var(--color-warm-yellow-deep); }
body.page-template-page-book .policy-row-value.red    { color: var(--color-nubian-red); }
body.page-template-page-book .policy-note { background: var(--color-sand); border-left: 3px solid var(--color-warm-yellow); padding: 16px 20px; border-radius: 0 12px 12px 0; margin-top: 24px; font-size: 14px; line-height: 1.6; color: var(--color-text); }
body.page-template-page-book .policy-note p { font-size: 14px; line-height: 1.6; margin: 0; }
body.page-template-page-book .policy-note strong { color: var(--color-nubian-blue); }

/* Help section */
body.page-template-page-book .help-section { padding: 100px 0; background: white; }
body.page-template-page-book .help-inner { background: linear-gradient(135deg, var(--color-nubian-blue) 0%, var(--color-nubian-blue-deep) 100%); border-radius: 32px; padding: 64px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
body.page-template-page-book .help-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--color-warm-yellow) 0%, transparent 70%); opacity: 0.18; }
body.page-template-page-book .help-text { position: relative; z-index: 1; }
body.page-template-page-book .help-text .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-warm-yellow); margin-bottom: 16px; justify-content: flex-start; }
body.page-template-page-book .help-text .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-warm-yellow); }
body.page-template-page-book .help-text h2 { color: white; margin-bottom: 16px; }
body.page-template-page-book .help-text h2 em { color: var(--color-warm-yellow); font-style: italic; }
body.page-template-page-book .help-text p { color: rgba(255,255,255,0.85); font-size: 17px; }
body.page-template-page-book .help-actions { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
body.page-template-page-book .help-action { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; color: white; font-weight: 600; font-size: 15px; transition: all var(--transition); backdrop-filter: blur(8px); }
body.page-template-page-book .help-action:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateX(8px); }
body.page-template-page-book .help-action-icon { width: 44px; height: 44px; background: var(--color-warm-yellow); color: var(--color-text); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
body.page-template-page-book .help-action-text strong { display: block; font-size: 16px; }
body.page-template-page-book .help-action-text span { font-size: 13px; opacity: 0.8; font-weight: 400; }

@media (max-width: 1024px) {
  body.page-template-page-book .trust-ribbon { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  body.page-template-page-book .trust-item:nth-child(2)::after { display: none; }
  body.page-template-page-book .widget-fallback-form { grid-template-columns: 1fr 1fr; }
  body.page-template-page-book .widget-submit { grid-column: 1 / -1; padding: 16px; justify-content: center; }
  body.page-template-page-book .why-direct-grid { grid-template-columns: 1fr; }
  body.page-template-page-book .policy-grid { grid-template-columns: 1fr; }
  body.page-template-page-book .help-inner { grid-template-columns: 1fr; padding: 48px 32px; }
}
@media (max-width: 640px) {
  body.page-template-page-book .book-hero { padding: 48px 0 0; }
  body.page-template-page-book .widget-frame { padding: 32px 24px; }
  body.page-template-page-book .trust-ribbon { grid-template-columns: 1fr; padding: 16px 24px; }
  body.page-template-page-book .trust-item::after { display: none !important; }
  body.page-template-page-book .widget-fallback-form { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 11 — A11Y & MOTION
   ============================================================
   Site-wide :focus-visible ring so keyboard users always see a
   2px yellow ring (matched against the brand). Mouse users still
   see no ring on click (because :focus-visible is keyboard-only).

   prefers-reduced-motion gates every theme animation: hero arch
   pulses, camel walks, sun glows, scroll reveals, and any transform
   that moves more than 2px on hover. Respects the user's OS-level
   "reduce motion" setting.
   ============================================================ */

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-warm-yellow);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn-cta:focus-visible,
.final-btn:focus-visible,
.error-btn:focus-visible,
.ty-btn:focus-visible,
.booking-submit-large:focus-visible,
.form-submit:focus-visible,
.newsletter-submit:focus-visible {
  outline-offset: 4px;
}
.skip-link:focus-visible { outline: 2px solid var(--color-warm-yellow); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Halt the looping decorative animations explicitly so they don't
     spin once and stick on a transformed end-state. */
  body.error404 .sun,
  body.error404 .camel,
  body.page-template-page-thank-you .ty-check {
    animation: none !important;
  }
  /* Snap any hover-translate transforms back to neutral. */
  .btn-cta:hover, .final-btn:hover, .ty-btn:hover, .error-btn:hover,
  .room-card:hover, .similar-card:hover, .related-card:hover,
  .why-direct:hover, .stay-option:hover, .tier-card:hover {
    transform: none !important;
  }
}


/* ============================================================
   Photo overlays on Room + Experience cards (front-page)
   ============================================================
   Cards default to the colored mockup design. When a room or
   experience has a hero image assigned (via Tools → Heissa Artie
   images, or per-post in admin), the photo layers on top of the
   colored panel and a gradient at the bottom keeps the room number
   / emoji legible. Falls back to the colored panel when no image.
   ============================================================ */

.room-card-photo,
.experience-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Make the .experience-card::before dark-gradient render ABOVE the
   photo so the white card content stays readable on bright photos. */
.experience-card.has-photo::before {
  z-index: 1;
}

.room-card.has-photo .room-card-image {
  position: relative;
  overflow: hidden;
}
.room-card.has-photo .room-card-image-bg {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,17,15,0) 35%, rgba(20,17,15,0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px 16px;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.room-card.has-photo .room-card-badge {
  z-index: 3;
}

.experience-card.has-photo {
  position: relative;
  overflow: hidden;
}
.experience-card.has-photo .experience-card-bg {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,17,15,0) 0%, rgba(20,17,15,0.65) 100%);
  font-size: 0; /* hide the emoji when photo present */
}
.experience-card.has-photo .experience-card-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.experience-card.has-photo .experience-card-content h3,
.experience-card.has-photo .experience-card-content .experience-card-tag,
.experience-card.has-photo .experience-card-content .experience-card-meta {
  color: #fff;
}


/* ============================================================
   Page hero photo banner — universal
   ============================================================
   Rendered by hartie_render_page_hero_photo() at the end of
   header.php. Sits between the site header and the page's own
   hero section. Photo cover, ~480px tall on desktop, with a
   subtle bottom gradient so the page content beneath has a
   clean transition. Skipped on the front page, single rooms /
   experiences, and small utility / legal pages.
   ============================================================ */
.page-hero-photo-band {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 480px);
  overflow: hidden;
  background: var(--color-sand);
}
.page-hero-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,17,15,0) 60%, rgba(250,246,238,0.7) 100%);
}
@media (max-width: 640px) {
  .page-hero-photo-band {
    height: clamp(220px, 56vw, 320px);
  }
}


/* ============================================================
   Gallery tile photo overlay
   ============================================================ */
.tile.has-photo {
  position: relative;
  overflow: hidden;
}
.tile.has-photo .tile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.tile.has-photo .tile-caption {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,17,15,0) 30%, rgba(20,17,15,0.7) 100%);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.tile.has-photo .tile-caption-cat,
.tile.has-photo .tile-caption-title {
  color: #fff;
}
.tile.has-photo .tile-badge {
  z-index: 3;
  position: relative;
}


/* ============================================================
   Arch photos — replace colored gradients + emoji
   ============================================================
   When a real photo is set on a hero / chapter / dining arch
   element, the photo fills the arch shape (border-radius
   automatically clips because parent has overflow:hidden) and
   the colored gradient + ::after emoji + ::before pattern are
   suppressed. Empty arch field falls back to the original
   verbatim-mockup colored design.
   ============================================================ */

/* Front-page hero arches */
.hero-arch.has-photo {
  background: none;
}
.hero-arch.has-photo::after,
.hero-arch.has-photo::before {
  display: none;
}
.hero-arch.has-photo .hero-arch-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About chapter visual arch */
.chapter-visual-arch.has-photo {
  background: none !important;
}
.chapter-visual-arch.has-photo::before,
.chapter-visual-arch.has-photo::after {
  display: none;
}
.chapter-visual-arch.has-photo .chapter-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dining hero arch */
.dining-hero-arch.has-photo {
  background: none !important;
}
.dining-hero-arch.has-photo::before,
.dining-hero-arch.has-photo::after {
  display: none;
}
.dining-hero-arch.has-photo .dining-hero-arch-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   Universal arch photo (.arch-photo)
   ============================================================
   When a page template injects <img class="arch-photo"> inside
   any arch container (.hero-arch, .chapter-arch, .stay-visual,
   .pickup-visual, etc.) the image fills the arch shape via the
   container's existing border-radius + overflow:hidden, layered
   above any pseudo-element patterns.
   ============================================================ */
.arch-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  display: block;
}


/* ============================================================
   Front-page Story — floating signature card above the image
   ============================================================ */
.story-visual { position: relative; }
.story-signature.story-signature-floating {
  position: absolute;
  top: -28px;
  left: 24px;
  z-index: 1111;
  margin: 0;
  padding: 14px 20px;
  background: #fff;
  border-radius: 999px;
  border-top: none;
  box-shadow: 0 12px 32px rgba(20, 17, 15, 0.18);
  gap: 12px;
}
.story-signature.story-signature-floating .avatar {
  width: 44px;
  height: 44px;
  font-size: 14px;
}
.story-signature.story-signature-floating .story-signature-text strong {
  font-size: 15px;
}
.story-signature.story-signature-floating .story-signature-text span {
  font-size: 12px;
  color: var(--color-text-muted);
}
@media (max-width: 640px) {
  .story-signature.story-signature-floating {
    top: -20px;
    left: 12px;
    padding: 10px 14px;
  }
}

/* ============================================================
   Front-page Location — Google Maps iframe
   ============================================================ */
.location-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ============================================================
   Room cards on home — clickable image + clickable title
   ============================================================ */
.room-card-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform var(--transition);
}
.room-card-image-link:hover .room-card-image {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.room-card-image-link:focus-visible {
  outline: 3px solid var(--color-warm-yellow);
  outline-offset: 4px;
  border-radius: 12px;
}

.room-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.room-card-title-link:hover,
.room-card-title-link:focus-visible {
  color: var(--color-nubian-blue);
  text-decoration: none;
}


/* ============================================================
   Room cards — view-type model (configs inline + brand-CTA button)
   ============================================================ */
.room-card-configs {
  list-style: none;
  margin: 8px 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.room-card-configs li {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-nubian-blue);
  line-height: 1.2;
  position: relative;
}
.room-card-configs li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  top: 0;
  color: var(--color-text-muted);
  font-weight: 400;
}

.room-card .room-card-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
.room-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-nubian-red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(214, 69, 69, 0.25);
}
.room-card-readmore::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}
.room-card-readmore:hover,
.room-card-readmore:focus-visible {
  background: var(--color-nubian-red-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 69, 69, 0.35);
  text-decoration: none;
}


/* ============================================================
   Section head — title + "See all" link share a row
   ============================================================
   Used by the homepage Rooms and Experiences sections so the
   "See all 9 rooms" / "See all 9 experiences" link sits on the
   same horizontal row as the section title (instead of below
   the lede paragraph). Lede continues on its own line below.
   ============================================================ */
.section-head-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head-title-row .section-title {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.section-head-title-row .section-link {
  flex: 0 0 auto;
  white-space: nowrap;
}
.section-head .section-head-left .section-lede {
  margin-top: 24px;
}
@media (max-width: 640px) {
  .section-head-title-row {
    gap: 16px;
  }
  .section-head-title-row .section-link {
    font-size: 13px;
  }
}


/* ============================================================
   Single-room hero — view-type configurations row
   ============================================================
   Replaces the single-room "Bed type / Sleeps X / Amenities"
   quick-stats trio with a list of supported configurations
   (Single / Double / Quadruple) when the room uses the
   view-type model. Same visual style as the home/archive cards.
   ============================================================ */
.room-hero-configs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-sand);
}
.room-hero-configs-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.room-hero-configs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.room-hero-configs-list li {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-nubian-blue);
  position: relative;
}
.room-hero-configs-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  top: 0;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ============================================================
 * INQUIRY FORM SECTION (groups / weddings / press)
 * Single-column form block appended at the bottom of inquiry
 * pages. Reuses existing .contact-form / .form-row / .form-field
 * styles for the form itself.
 * ============================================================ */
.inquiry-form-section {
  padding: 100px 0;
  background: var(--color-sand);
}
.inquiry-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.inquiry-form-head {
  text-align: center;
  margin-bottom: 40px;
}
.inquiry-form-head .section-eyebrow { margin-bottom: 16px; display: inline-block; }
.inquiry-form-head h2 { margin-bottom: 16px; }
.inquiry-form-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.inquiry-form-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}
.inquiry-form-section .contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(27, 79, 140, 0.08);
}
@media (max-width: 700px) {
  .inquiry-form-section { padding: 60px 0; }
  .inquiry-form-section .contact-form { padding: 24px; }
}

/* Inline error banner shown when a handler redirects back with
 * ?hartie_err=<code>. Sits above the form fields. */
.form-error {
  background: rgba(214, 69, 69, 0.08);
  border: 1px solid rgba(214, 69, 69, 0.25);
  color: var(--color-nubian-red);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================
 * TEAM SECTION (page-about.php "Meet the family")
 * Queries hartie_team CPT, hides itself when CPT is empty.
 * Mirrors the spacing scale used by .awards-section.
 * ============================================================ */
.team-section {
  padding: 100px 0;
  background: white;
}
.team-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.team-head .section-eyebrow { margin-bottom: 16px; display: inline-block; }
.team-head h2 { margin-bottom: 16px; }
.team-head h2 em { font-style: italic; color: var(--color-nubian-blue); font-weight: 500; }
.team-head .team-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
}
.team-card-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #2BB3B3, #1B4F8C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-card-initials {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.05em;
}
.team-card-name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-card-role {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--color-nubian-red);
  margin-bottom: 16px;
}
.team-card-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.team-card-bio p { margin: 0 0 10px; }
.team-card-bio p:last-child { margin: 0; }
.team-card-languages {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
}
.team-card-languages-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  display: block;
  color: var(--color-nubian-blue);
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .team-section { padding: 60px 0; }
  .team-grid { gap: 32px; }
  .team-card-photo { width: 130px; height: 130px; }
}

/* ============================================================
 * Bug 2 — Single-room / single-experience lightbox.
 * Mounted on /rooms/{slug}/ and /experiences/{slug}/ via the
 * template-parts/components/lightbox.php partial. JS in main.js.
 * ============================================================ */
.hartie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
}
.hartie-lightbox[hidden] { display: none; }
.hartie-lightbox.is-open { opacity: 1; }

body.lightbox-open { overflow: hidden; }

.hartie-lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;       /* figure isn't clickable — only the image inside is */
}
.hartie-lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: auto;
}
.hartie-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  max-width: 80vw;
  margin: 0;
  pointer-events: auto;
}

.hartie-lightbox-close,
.hartie-lightbox-prev,
.hartie-lightbox-next {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  padding: 0;
}
.hartie-lightbox-close { top: 20px; right: 20px; }
.hartie-lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.hartie-lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.hartie-lightbox-close:hover,
.hartie-lightbox-close:focus-visible,
.hartie-lightbox-prev:hover,
.hartie-lightbox-prev:focus-visible,
.hartie-lightbox-next:hover,
.hartie-lightbox-next:focus-visible {
  background: var(--color-nubian-red);
  border-color: var(--color-nubian-red);
  outline: none;
}
.hartie-lightbox-prev:hover,
.hartie-lightbox-prev:focus-visible { transform: translateY(-50%) scale(1.08); }
.hartie-lightbox-next:hover,
.hartie-lightbox-next:focus-visible { transform: translateY(-50%) scale(1.08); }

.hartie-lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .hartie-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .hartie-lightbox-prev,
  .hartie-lightbox-next  { width: 40px; height: 40px; }
  .hartie-lightbox-prev  { left: 8px; }
  .hartie-lightbox-next  { right: 8px; }
  .hartie-lightbox-counter { bottom: 12px; font-size: 12px; }
}
