/* ============================================================
   Manhattan Experiences Template - styles.css
   Premium Pass upgrade: bento layouts, glassmorphism badges,
   scroll-triggered reveals, hover zoom, animated CTAs
   Named CSS classes throughout - no raw utility inline classes
   CSS variables at top for brand swap
   ============================================================ */

/* ---- BRAND TOKENS (swap these per brand) ---- */
:root {
  --color-primary: #222222;
  --color-secondary: #555555;
  --color-accent: #c8a96e;
  --color-accent-hover: #b8943a;
  --color-bg: #ffffff;
  --color-surface: #f8f8f8;
  --color-border: #E7E7E7;
  --color-text: #222222;
  --color-text-muted: #777777;
  --color-white: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
  --font-display: "Open Sans", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 14px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-modal: 0 16px 48px rgba(0, 0, 0, 0.18);
  --transition-fast: 0.18s ease;
  --transition-std: 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-pad-y: 72px;
}

/* ---- RESET & BASE ---- */
*, *::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: 15px;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- SHARED LAYOUT ---- */
.header-container,
.section-container,
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   data-reveal + optional data-reveal-stagger="1..6"
   Elements are only hidden AFTER js-ready body class is set.
   This ensures no-JS, bots, and static screenshot tools see content.
   ============================================================ */
body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-ready [data-reveal-stagger="1"] { transition-delay: 0.08s; }
body.js-ready [data-reveal-stagger="2"] { transition-delay: 0.16s; }
body.js-ready [data-reveal-stagger="3"] { transition-delay: 0.24s; }
body.js-ready [data-reveal-stagger="4"] { transition-delay: 0.32s; }
body.js-ready [data-reveal-stagger="5"] { transition-delay: 0.40s; }
body.js-ready [data-reveal-stagger="6"] { transition-delay: 0.48s; }

/* ============================================================
   SECTION KICKER (eyebrow caps)
   ============================================================ */
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Top utility bar */
.header-top-bar {
  border-bottom: 1px solid var(--color-border);
  padding: 7px 0;
  font-size: 12px;
  overflow: hidden;
}

.header-top-bar .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.header-top-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  min-width: 0;
}

.header-top-nav a {
  color: var(--color-text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-top-nav a:hover {
  color: var(--color-accent);
}

.header-social {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.header-social a {
  color: var(--color-text-muted);
  font-size: 14px;
}

.header-social a:hover {
  color: var(--color-accent);
}

/* Main header row */
.header-main {
  padding: 14px 0;
  position: relative;
}

.header-main .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo a {
  display: block;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* Primary nav */
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px;
  gap: 2px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO SLIDER — fixed 600px -> 75vh
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a2f1e 40%, #2c2418 70%, #111111 100%);
}

.slider-track {
  display: flex;
  height: 75vh;
  min-height: 480px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  height: 75vh;
  min-height: 480px;
  background-size: cover;
  background-position: center center;
  background-color: #2a2218;
  position: relative;
}

/* Ken Burns on active slide */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-image: inherit;
  transition: transform 8s ease-out;
}

.slide.active::before {
  transform: scale(1.06);
}

.slide-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: var(--color-white);
  max-width: 680px;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeInUp 0.7s ease both;
}

.slide-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.85;
  margin-bottom: 0.85rem;
  color: var(--color-accent);
}

.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.slide-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.slide-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), border-color var(--transition-fast), gap var(--transition-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slide-cta-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-white);
  color: var(--color-white);
  gap: 0.75rem;
}

.slide-cta-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.slide-cta-btn:hover .slide-cta-arrow {
  transform: translateX(4px);
}

/* Slider nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition-fast);
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.content-section {
  padding: var(--section-pad-y) 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-border);
  display: inline-block;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
}

.section-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast), gap var(--transition-fast);
}

.section-view-all:hover {
  border-color: var(--color-primary);
  gap: 0.6rem;
  color: var(--color-primary);
}

/* Post category badge */
.post-category,
.card-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.post-category:hover,
.card-category:hover {
  color: var(--color-accent-hover);
}

/* Pill badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge--primary { background: var(--color-primary); color: white; }
.badge--accent { background: var(--color-accent); color: white; }

/* Post byline */
.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.post-author,
.post-author-link {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-author:hover,
.post-author-link:hover {
  color: var(--color-accent);
}

.post-date,
.post-views {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-excerpt {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-top: 10px;
}

/* ============================================================
   HORIZONTAL CAROUSEL
   ============================================================ */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  flex: 1;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-primary);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-card);
}

.carousel-arrow:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: scale(1.08);
}

/* ============================================================
   EXPERIENCE CARDS (Carousel) — hover zoom 1.05x
   ============================================================ */
.experience-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-std), box-shadow var(--transition-std);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-image-link {
  display: block;
  overflow: hidden;
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-card:hover .card-thumb {
  transform: scale(1.05);
}

.card-body {
  padding: 16px;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.card-views {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary);
}

.card-title a:hover {
  color: var(--color-accent);
}

/* ============================================================
   TABBED POSTS SECTION
   ============================================================ */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Tabbed layout: main + sidebar */
.tabbed-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Featured post in tab */
.featured-post-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
}

.featured-post-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-post:hover .featured-post-img {
  transform: scale(1.05);
}

.featured-post-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 10px;
  color: var(--color-primary);
}

.featured-post-title a:hover {
  color: var(--color-accent);
}

/* Sidebar posts */
.tabbed-sidebar {
  border-left: 1px solid var(--color-border);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition-fast);
}

.sidebar-post:first-child { padding-top: 0; }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { transform: translateX(3px); }

.sidebar-post-thumb-link {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.sidebar-post-thumb {
  width: 88px;
  height: 62px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-post:hover .sidebar-post-thumb {
  transform: scale(1.05);
}

.sidebar-post-body {
  flex: 1;
  min-width: 0;
}

.sidebar-post-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}

.sidebar-post-title a:hover {
  color: var(--color-accent);
}

/* Category grid (tab content) */
.category-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-post-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
}

.grid-post-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grid-post:hover .grid-post-img {
  transform: scale(1.05);
}

.grid-post-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin-top: 8px;
}

.grid-post-title a:hover {
  color: var(--color-accent);
}

/* ============================================================
   NEIGHBORHOODS BENTO GRID
   Asymmetric: hero card (2 rows) + 5 smaller cards
   ============================================================ */
.neighborhoods-section {
  background: var(--color-surface);
}

.neighborhood-bento {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.neighborhood-bento__card--hero {
  grid-row: 1 / 3;
}

.neighborhood-bento__card:nth-child(2) { grid-column: 2; grid-row: 1; }
.neighborhood-bento__card:nth-child(3) { grid-column: 3; grid-row: 1; }
.neighborhood-bento__card:nth-child(4) { grid-column: 2; grid-row: 2; }
.neighborhood-bento__card:nth-child(5) { grid-column: 3; grid-row: 2; }
.neighborhood-bento__card:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 3;
  max-height: 240px;
}

.neighborhood-bento__link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: white;
}

.neighborhood-bento__card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: white;
  min-height: 240px;
  background: var(--color-secondary);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neighborhood-bento__card--hero {
  min-height: 520px;
}

.neighborhood-bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.neighborhood-bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neighborhood-bento__card:hover .neighborhood-bento__img {
  transform: scale(1.06);
}

.neighborhood-bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.32) 45%, rgba(0,0,0,0.04) 100%);
}

.neighborhood-bento__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.neighborhood-bento__card--hero .neighborhood-bento__content {
  padding: 2rem;
}

.neighborhood-bento__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.neighborhood-bento__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.neighborhood-bento__card--hero .neighborhood-bento__name {
  font-size: 1.9rem;
  margin-bottom: 0.65rem;
}

.neighborhood-bento__desc {
  font-size: 0.82rem;
  opacity: 0.88;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.neighborhood-bento__card--hero .neighborhood-bento__desc {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
}

.neighborhood-bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1.5px solid rgba(255,255,255,0.38);
  padding-bottom: 1px;
  transition: border-color var(--transition-fast), gap var(--transition-fast);
}

.neighborhood-bento__card:hover .neighborhood-bento__cta {
  border-color: var(--color-accent);
  gap: 0.55rem;
}

.neighborhood-bento__arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.neighborhood-bento__card:hover .neighborhood-bento__arrow {
  transform: translateX(4px);
}

/* ============================================================
   CATEGORY FEATURED SECTION — asymmetric split
   ============================================================ */
.category-featured-section {
  background: var(--color-surface);
}

.featured-split-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Large featured card (full-bleed photography) */
.featured-large-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--color-secondary);
  transition: transform var(--transition-std), box-shadow var(--transition-std);
}

.featured-large-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-modal);
}

.featured-large-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-large-card:hover .featured-large-img {
  transform: scale(1.05);
}

.featured-large-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.0) 100%);
}

.featured-large-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.featured-large-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: white;
}

.featured-large-excerpt {
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.featured-large-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color var(--transition-fast), gap var(--transition-fast);
}

.featured-large-card:hover .featured-large-cta {
  border-color: var(--color-accent);
  gap: 0.6rem;
}

.featured-large-cta-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.featured-large-card:hover .featured-large-cta-arrow {
  transform: translateX(4px);
}

/* Secondary posts stack */
.featured-secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.secondary-post {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition-fast);
}

.secondary-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.secondary-post:hover {
  transform: translateX(3px);
}

.secondary-post-image-link {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.secondary-post-thumb {
  width: 115px;
  height: 78px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.secondary-post:hover .secondary-post-thumb {
  transform: scale(1.06);
}

.secondary-post-body {
  flex: 1;
  min-width: 0;
}

.secondary-post-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}

.secondary-post-title a:hover {
  color: var(--color-accent);
}

/* ============================================================
   EVENTS PHOTO CARD GRID — glassmorphism date badges
   ============================================================ */
.events-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-photo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-modal);
}

.event-photo-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.event-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-photo-card:hover .event-photo-card__img {
  transform: scale(1.07);
}

.event-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.28) 100%);
}

/* Glassmorphism date badge */
.event-photo-card__date-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  text-align: center;
  line-height: 1;
  min-width: 44px;
}

.event-photo-card__date-month {
  display: block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 2px;
}

.event-photo-card__date-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.event-photo-card__category-tag {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background: rgba(0, 0, 0, 0.52);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.event-photo-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.event-photo-card__name {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-photo-card__location {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.event-photo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.event-photo-card:hover .event-photo-card__cta {
  gap: 0.5rem;
}

.event-photo-card__arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.event-photo-card:hover .event-photo-card__arrow {
  transform: translateX(3px);
}

.events-footer {
  margin-top: 2.5rem;
  text-align: center;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--color-primary);
  padding: 72px 0;
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: var(--color-accent);
}

.newsletter-btn {
  padding: 0.9rem 1.75rem;
  background: var(--color-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid var(--color-accent);
  border-left: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  transition: background var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ============================================================
   4-COLUMN LATEST POSTS GRID
   ============================================================ */
.posts-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.col-post-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
}

.col-post-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-post:hover .col-post-img {
  transform: scale(1.05);
}

.col-post-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin: 10px 0 6px;
}

.col-post-title a:hover {
  color: var(--color-accent);
}

.col-post-excerpt {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* ============================================================
   FEATURED ARTICLES SECTION (carousel)
   ============================================================ */
.featured-articles-section {
  background: var(--color-surface);
}

/* ============================================================
   ARTICLE CARD GRID (tabs general purpose)
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-std), box-shadow var(--transition-std);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-modal);
}

.article-card__thumb {
  overflow: hidden;
  display: block;
  width: 100%;
}

.article-card__thumb-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.article-card:hover .article-card__thumb-img {
  transform: scale(1.05);
}

.article-card__body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.55rem;
  color: var(--color-text);
}

.article-card__title a:hover {
  color: var(--color-accent);
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.tabs-footer {
  margin-top: 2rem;
  text-align: center;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: white;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-brand {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 32px;
}

.footer-logo { margin-bottom: 16px; }

.footer-logo-img { height: 40px; width: auto; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
}

.footer-bottom-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-nav a:hover {
  color: var(--color-accent);
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad-y: 56px; }

  .tabbed-layout {
    grid-template-columns: 1fr;
  }

  .tabbed-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .sidebar-post {
    flex-direction: column;
    border-bottom: none;
    padding: 0;
  }

  .sidebar-post-thumb { width: 100%; height: 120px; }

  .featured-split-layout {
    grid-template-columns: 1fr;
  }

  .featured-secondary-stack {
    flex-direction: row;
    gap: 20px;
  }

  .secondary-post {
    flex: 1;
    flex-direction: column;
    border-bottom: none;
  }

  .secondary-post-thumb { width: 100%; height: 140px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 28px;
  }

  .posts-4col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bento: collapse to 2 cols */
  .neighborhood-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .neighborhood-bento__card--hero {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 320px;
  }

  .neighborhood-bento__card:nth-child(2),
  .neighborhood-bento__card:nth-child(3),
  .neighborhood-bento__card:nth-child(4),
  .neighborhood-bento__card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .neighborhood-bento__card:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: auto;
    max-height: none;
  }

  .events-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad-y: 44px; }

  .header-top-bar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-slider { min-height: 56vh; }
  .slider-track { height: 56vh; min-height: 360px; }
  .slide { height: 56vh; min-height: 360px; }

  .slide-heading { font-size: clamp(1.6rem, 7vw, 2.5rem); }

  .tabbed-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-post {
    flex-direction: row;
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
  }

  .sidebar-post-thumb { width: 88px; height: 62px; }

  .featured-secondary-stack { flex-direction: column; }

  .secondary-post {
    flex-direction: row;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 18px;
  }

  .secondary-post-thumb { width: 100px; height: 70px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col-brand {
    grid-column: auto;
    border-right: none;
    padding-right: 0;
  }

  .posts-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-tab-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }

  /* Bento: single column */
  .neighborhood-bento { grid-template-columns: 1fr; }
  .neighborhood-bento__card--hero {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }
  .neighborhood-bento__card:nth-child(2),
  .neighborhood-bento__card:nth-child(3),
  .neighborhood-bento__card:nth-child(4),
  .neighborhood-bento__card:nth-child(5),
  .neighborhood-bento__card:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
    max-height: none;
  }
  .neighborhood-bento__card { min-height: 220px; }

  .events-photo-grid { grid-template-columns: 1fr; }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input {
    border-radius: var(--radius-pill);
  }

  .newsletter-btn {
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-pill);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .experience-card { flex: 0 0 240px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-slider { min-height: 50vh; }
  .slider-track { height: 50vh; min-height: 300px; }
  .slide { height: 50vh; min-height: 300px; }

  .posts-4col-grid { grid-template-columns: 1fr; }

  .section-container { padding: 0 14px; }
}


/* === SUBPAGE PREMIUM COMPONENTS (ported from Sarasota template) === */

/* ============================================================
   SUBPAGE PREMIUM COMPONENTS — ported from Sarasota template
   page-hero--xl, stats-strip, what-to-do, where-to-eat,
   getting-here, photo-gallery, featured-grid, editor-pick,
   info-box, hub-icon-grid, pull-quote, article-table,
   article-callout, article-numbered-list, related-stories,
   faq-section, body-section, article-hero
   ============================================================ */

/* --- Design token additions --- */
:root {
  --color-bg-alt: #F0EDE6;
  --color-surface: #F7F9FA;
  --color-text: #1A2730;
  --color-text-muted: #5A6A76;
  --color-secondary: #1A2730;
  --color-white: #ffffff;
  --color-border: #E0E6EA;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-modal: 0 18px 48px rgba(0,0,0,0.18);
  --section-pad-y: 5rem;
  --header-h: 72px;
  --container-max: 1200px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
}

/* --- Page hero with glassmorphism --- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.page-hero--xl { height: 75vh; min-height: 560px; }
.page-hero img,
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem,4vw,2.5rem);
  padding-right: clamp(1rem,4vw,2.5rem);
}
.page-hero__glass {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 1.75rem 2.25rem;
  max-width: 640px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.page-hero__h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: #fff;
}
.page-hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.94;
}
.page-hero__breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.page-hero__breadcrumb a { color: inherit; text-decoration: none; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__breadcrumb-sep { margin: 0 0.5rem; opacity: 0.6; }

/* --- Stats strip --- */
.stats-strip {
  background: var(--color-primary, #1a2744);
  color: #fff;
  padding: 1.75rem 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2.5rem);
}
@media (max-width: 720px) { .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.stats-strip__item { padding: 0.25rem 0.5rem; }
.stats-strip__number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}
.stats-strip__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.88;
}

/* --- Section headers --- */
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent, #c8a96e);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text, #1A2730);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* --- What to do numbered grid --- */
.what-to-do { padding: var(--section-pad-y) 0; }
.what-to-do .wtd-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.what-to-do__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--color-text, #1A2730);
}
.what-to-do__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  counter-reset: wtd;
  margin-top: 1.5rem;
}
@media (max-width: 720px) { .what-to-do__grid { grid-template-columns: 1fr; } }
.what-to-do__item {
  position: relative;
  padding-left: 3.2rem;
  counter-increment: wtd;
}
.what-to-do__item::before {
  content: counter(wtd);
  position: absolute;
  left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--color-accent, #c8a96e);
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-to-do__num { display: none; }
.what-to-do__title { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--color-text, #1A2730); font-weight: 700; font-family: Georgia, 'Times New Roman', serif; }
.what-to-do__text { font-size: 0.95rem; line-height: 1.6; color: var(--color-text-muted, #5A6A76); }
.what-to-do__body { }

/* --- Body section (prose) --- */
.body-section { padding: var(--section-pad-y) 0; background: var(--color-surface, #F7F9FA); }
.body-section .body-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.body-section__text { max-width: 760px; font-size: 1.05rem; line-height: 1.8; }
.body-section__text h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; color: var(--color-text, #1A2730); margin: 2rem 0 0.75rem; }
.body-section__text p { margin-bottom: 1.25rem; }

/* --- Eat / dining section --- */
.eat-section { padding: var(--section-pad-y) 0; }
.eat-section .eat-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.eat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .eat-grid { grid-template-columns: 1fr; } }
.eat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border, #E0E6EA);
}
.eat-card__name { font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; margin-bottom: 0.25rem; font-weight: 700; color: var(--color-text, #1A2730); }
.eat-card__type { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent, #c8a96e); margin-bottom: 0.6rem; }
.eat-card__desc { font-size: 0.92rem; line-height: 1.55; color: var(--color-text-muted, #5A6A76); }

/* --- Getting here --- */
.getting-here { padding: var(--section-pad-y) 0; background: var(--color-surface, #F7F9FA); }
.getting-here .gh-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.getting-here__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .getting-here__grid { grid-template-columns: 1fr; } }
.getting-here__list { font-size: 0.95rem; line-height: 1.75; list-style: none; padding: 0; }
.getting-here__list li { padding: 0.6rem 0; border-bottom: 1px solid var(--color-border, #E0E6EA); }
.getting-here__list li:last-child { border-bottom: none; }
.getting-here__map-placeholder {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(26,39,68,0.12) 0%, rgba(200,169,110,0.15) 50%, rgba(26,39,68,0.08) 100%),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 14px),
    #F7F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted, #5A6A76);
  font-size: 0.85rem;
  border: 1px solid var(--color-border, #E0E6EA);
}

/* --- Photo gallery --- */
.photo-gallery { padding: var(--section-pad-y) 0; background: var(--color-primary, #1a2744); }
.photo-gallery .pg-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); padding-bottom: 1rem; }
.photo-gallery__inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.photo-gallery__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) { .photo-gallery__row { grid-template-columns: repeat(2, 1fr); } }
.photo-gallery__thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.photo-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.photo-gallery__thumb:hover img { transform: scale(1.07); }

/* --- Featured grid (category) --- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-grid__card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
}
.featured-grid__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-grid__card:hover img { transform: scale(1.06); }
.featured-grid__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.0) 100%);
}
.featured-grid__card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
}
.featured-grid__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}
.featured-grid__card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* --- Editor picks row --- */
.editor-picks-section { padding: var(--section-pad-y) 0; background: var(--color-surface, #F7F9FA); }
.editor-picks-section .ep-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.editor-picks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .editor-picks-row { grid-template-columns: 1fr; } }
.editor-pick {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}
.editor-pick:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.14); }
.editor-pick__img { aspect-ratio: 16/10; overflow: hidden; }
.editor-pick__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.editor-pick:hover .editor-pick__img img { transform: scale(1.05); }
.editor-pick__body { padding: 1.25rem 1.5rem; }
.editor-pick__tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent, #c8a96e); }
.editor-pick__title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; font-weight: 700; margin: 0.4rem 0 0.5rem; color: var(--color-text, #1A2730); line-height: 1.3; }
.editor-pick__excerpt { font-size: 0.9rem; color: var(--color-text-muted, #5A6A76); line-height: 1.55; }

/* --- Hub icon nav grid --- */
.hub-section { padding: var(--section-pad-y) 0; }
.hub-section .hub-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.hub-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .hub-icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hub-icon-grid { grid-template-columns: 1fr; } }
.hub-icon-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--color-text, #1A2730);
  border: 1px solid var(--color-border, #E0E6EA);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hub-icon-card:hover { transform: translateY(-3px); box-shadow: 0 2px 8px rgba(0,0,0,0.08); border-color: var(--color-accent, #c8a96e); }
.hub-icon-card__title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-text, #1A2730); }
.hub-icon-card__desc { font-size: 0.9rem; color: var(--color-text-muted, #5A6A76); line-height: 1.5; }

/* --- Pull quote --- */
.pull-quote {
  border-left: 4px solid var(--color-accent, #c8a96e);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(200,169,110,0.07);
  border-radius: 0 8px 8px 0;
}
.pull-quote__text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--color-text, #1A2730);
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.pull-quote__attribution {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted, #5A6A76);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Article table --- */
.article-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--color-border, #E0E6EA);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 480px;
}
.article-table thead tr { background: var(--color-primary, #1a2744); color: #fff; }
.article-table thead th { padding: 0.875rem 1.125rem; text-align: left; font-family: Georgia, 'Times New Roman', serif; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.03em; }
.article-table tbody tr:nth-child(even) { background: var(--color-surface, #F7F9FA); }
.article-table td { padding: 0.75rem 1.125rem; border-bottom: 1px solid var(--color-border, #E0E6EA); line-height: 1.6; }
.article-table td:first-child { font-weight: 600; }
.article-table tr:last-child td { border-bottom: none; }

/* --- Article callout --- */
.article-callout {
  background: var(--color-surface, #F7F9FA);
  border: 1px solid var(--color-border, #E0E6EA);
  border-left: 4px solid var(--color-primary, #1a2744);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-callout__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #1a2744);
  margin-bottom: 0.5rem;
}
.article-callout__body { font-size: 0.9375rem; line-height: 1.7; color: var(--color-text, #1A2730); margin: 0; }

/* --- Article hero (full article pages) --- */
.article-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-primary, #1a2744);
}
.article-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}
.article-hero__glass { position: relative; z-index: 2; width: 100%; padding: 0 0 2.5rem; }
.article-hero__content { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.article-hero__eyebrow {
  display: inline-block;
  background: var(--color-accent, #c8a96e);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.article-hero__title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.9rem, 4.5vw, 3.25rem); font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 0.875rem; max-width: 820px; }
.article-hero__dek { font-size: 1.0625rem; color: rgba(255,255,255,0.87); line-height: 1.65; max-width: 640px; margin: 0 0 1.25rem; }
.article-hero__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.article-hero__meta-sep { opacity: 0.4; }
.article-hero__breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; flex-wrap: wrap; }
.article-hero__breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.article-hero__breadcrumb a:hover { color: #fff; }
.article-hero__breadcrumb-sep { opacity: 0.45; }
@media (max-width: 900px) { .article-hero { min-height: 420px; } }
@media (max-width: 640px) { .article-hero { min-height: 320px; } .article-hero__title { font-size: 1.6rem; } }

/* --- Article layout (prose + sidebar) --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem,4vw,2.5rem);
  padding-right: clamp(1rem,4vw,2.5rem);
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
.article-body { min-width: 0; }
.article-prose { max-width: 720px; font-size: 1.0625rem; line-height: 1.85; color: var(--color-text, #1A2730); }
.article-prose p { margin-bottom: 1.4rem; }
.article-prose h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--color-text, #1A2730); margin: 2.5rem 0 0.875rem; line-height: 1.25; }
.article-prose h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; color: var(--color-text, #1A2730); margin: 1.75rem 0 0.625rem; }
.article-prose ul, .article-prose ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-prose li { margin-bottom: 0.5rem; line-height: 1.75; }
.article-prose ol { list-style: decimal; }
.article-prose ul { list-style: disc; }
.article-prose a { color: var(--color-primary, #1a2744); text-decoration: underline; text-underline-offset: 3px; }
.article-prose a:hover { color: var(--color-accent, #c8a96e); }
.article-lead { font-size: 1.125rem; line-height: 1.75; color: var(--color-text, #1A2730); font-weight: 500; margin-bottom: 1.75rem; border-left: 4px solid var(--color-primary, #1a2744); padding-left: 1rem; }

/* --- Sidebar --- */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-section-title { font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; font-weight: 700; color: var(--color-text, #1A2730); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-primary, #1a2744); }
.sidebar-post { display: flex; gap: 0.875rem; align-items: flex-start; padding: 0.875rem 0; border-bottom: 1px solid var(--color-border, #E0E6EA); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post__thumb-link { flex-shrink: 0; }
.sidebar-post__thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; display: block; background: var(--color-primary, #1a2744); }
.sidebar-post__body { min-width: 0; }
.sidebar-post__title { font-size: 0.875rem; font-family: Georgia, 'Times New Roman', serif; line-height: 1.4; margin: 0; }
.sidebar-post__link { color: var(--color-text, #1A2730); text-decoration: none; }
.sidebar-post__link:hover { color: var(--color-primary, #1a2744); }

/* --- FAQ section --- */
.faq-section { background: var(--color-surface, #F7F9FA); padding: var(--section-pad-y) 0; }
.faq-section .faq-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid var(--color-border, #E0E6EA); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: Georgia, 'Times New Roman', serif; font-size: 1.0625rem; font-weight: 700; color: var(--color-text, #1A2730); margin: 0 0 0.625rem; }
.faq-answer { font-size: 0.9375rem; line-height: 1.75; color: var(--color-text, #1A2730); margin: 0; }

/* --- Related stories --- */
.related-stories-section { padding: 3.5rem 0; background: var(--color-surface, #F7F9FA); border-top: 1px solid var(--color-border, #E0E6EA); }
.related-stories-section .rs-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }
.related-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
@media (max-width: 900px) { .related-stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-stories-grid { grid-template-columns: 1fr; } }
.related-story-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; display: flex; flex-direction: column; }
.related-story-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(0,0,0,0.18); }
.related-story-card__img-wrap { overflow: hidden; height: 160px; background: var(--color-primary, #1a2744); }
.related-story-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.related-story-card:hover .related-story-card__img-wrap img { transform: scale(1.04); }
.related-story-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.related-story-card__kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary, #1a2744); margin: 0 0 0.375rem; display: block; }
.related-story-card__title { font-family: Georgia, 'Times New Roman', serif; font-size: 0.9375rem; font-weight: 700; color: var(--color-text, #1A2730); line-height: 1.4; margin: 0 0 0.5rem; flex: 1; }
.related-story-card__cta { font-size: 0.8125rem; font-weight: 700; color: var(--color-primary, #1a2744); }

/* --- Newsletter block (subpages) --- */
.newsletter-block { background: var(--color-primary, #1a2744); padding: 4rem 0; }
.newsletter-block .nl-container { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 clamp(1rem,4vw,2.5rem); }
.newsletter-block__title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.newsletter-block__sub { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1rem; }
.newsletter-block__form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.newsletter-block__input { flex: 1; padding: 0.85rem 1.25rem; border-radius: 9999px; border: none; font-size: 0.9rem; outline: none; }
.newsletter-block__btn { padding: 0.85rem 1.75rem; background: var(--color-accent, #c8a96e); color: #fff; border: none; border-radius: 9999px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; cursor: pointer; transition: opacity 0.18s ease; }
.newsletter-block__btn:hover { opacity: 0.9; }
@media (max-width: 600px) { .newsletter-block__form { flex-direction: column; } }

/* --- Subpage body --- */
.subpage-body { padding: 3rem 0 5rem; max-width: 1200px; margin: 0 auto; padding-left: clamp(1rem,4vw,2.5rem); padding-right: clamp(1rem,4vw,2.5rem); }
.subpage-intro { max-width: 720px; margin: 0 0 2.5rem; font-size: 1.0625rem; line-height: 1.8; }
.subpage-section { margin-bottom: 3rem; }
.subpage-section h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; color: var(--color-text, #1A2730); margin: 0 0 1rem; }
.subpage-section p { margin-bottom: 1.1rem; line-height: 1.8; }

@media (max-width: 640px) {
  .page-hero { height: 65vw; min-height: 260px; }
  .page-hero--xl { height: 70vw; }
}
