/* ============================================
   LONDON FOR LESS — styles.css
   Clean editorial light design system
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --navy:       #0D2233;
  --sky:        #4BA3C3;
  --sky-pale:   #B8D8E8;
  --sky-light:  #EEF6FB;
  --white:      #FFFFFF;
  --off-white:  #F5F8FA;
  --mid:        #D6E8F2;
  --text:       #1A2E3B;
  --muted:      #6B8A9A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-editorial: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3rem;
  --space-xl:  5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 64px;
  --section-pad: 80px;
  --section-pad-sm: 56px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography Scale ─── */
.t-display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.t-editorial {
  font-family: var(--font-editorial);
  line-height: 1.15;
}

.t-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.t-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── Live Ticker ─── */
.ticker-bar {
  height: 40px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.ticker-live {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-live-dot {
  width: 6px;
  height: 6px;
  background: #E8453C;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ticker-track {
  flex: 1;
  overflow: hidden;
}
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
}
.ticker-inner:hover {
  animation-play-state: paused;
}
.ticker-inner span {
  padding: 0 32px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mid);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.nav-scrolled {
  background: var(--white) !important;
  border-bottom: 1px solid var(--mid);
  box-shadow: none;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sky);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  transition: filter var(--transition), transform var(--transition);
}

.nav-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile overlay nav */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color var(--transition);
  border-bottom: 1px solid var(--mid);
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}

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

.nav-mobile-overlay a:hover { color: var(--sky); }

/* ─── Category Strip ─── */
.category-strip {
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  position: sticky;
  top: var(--nav-height);
  z-index: 99;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  min-width: max-content;
}
.cat-tab {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.cat-tab:hover { color: var(--navy); }
.cat-tab.active {
  color: var(--navy);
  border-bottom-color: var(--sky);
}

/* ─── Hero Base ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--sky-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--sky-light);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.18;
}

/* ─── Section Containers ─── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: var(--section-pad-sm) 0;
}

/* Fine rule divider */
.rule {
  width: 100%;
  height: 1px;
  background: var(--mid);
  margin: 2.5rem 0;
}

.rule-gold {
  background: var(--sky-pale);
}

/* ─── Layout utility grids ─── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.grid-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-pad-sm) 0;
  border-bottom: 1px solid var(--mid);
}

.grid-editorial.flipped > :first-child { order: 2; }
.grid-editorial.flipped > :last-child  { order: 1; }

/* Section label */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sky);
}

/* ─── Badges ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badge-free    { background: var(--sky-pale); color: var(--sky); border: 1px solid var(--mid); }
.badge-food    { background: #fbe8e4; color: #C0533A; border: 1px solid #f0c9be; }
.badge-popup   { background: var(--sky-pale); color: var(--navy); border: 1px solid var(--mid); }
.badge-discount{ background: #e8f5e9; color: #2E7D52; border: 1px solid #c8e6c9; }
.badge-drinks  { background: var(--sky-pale); color: var(--sky); border: 1px solid var(--mid); }
.badge-entertainment { background: var(--sky-pale); color: var(--navy); border: 1px solid var(--mid); }

.badge-bbc {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 0.65rem;
  padding: 0.4rem 0.9rem;
}

/* ─── Deal Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.deal-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), opacity 0.25s ease, transform 0.25s ease;
}

.deal-card:hover {
  border-color: var(--sky);
}

.deal-card.hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  display: none;
}

.deal-card-visual {
  height: 200px;
  background: var(--sky-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-card-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.deal-card-body {
  padding: 1.4rem 1.4rem 1.25rem;
  position: relative;
  z-index: 2;
}

.deal-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.deal-card-title {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.deal-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.deal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--mid);
}

.deal-savings {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sky);
  letter-spacing: 0.04em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-radius: 4px;
}

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

.btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.btn-ghost {
  color: var(--sky);
  border: 1px solid var(--sky);
  border-radius: 4px;
}

.btn-ghost:hover {
  background: var(--sky-light);
  border-color: var(--sky);
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--sky-pale);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: var(--space-md) 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-lg) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: var(--mid);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat-bbc-logo {
  height: clamp(1.8rem, 3.5vw, 3rem);
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ─── Filter Tabs ─── */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.25rem var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.filter-btn {
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--mid);
  background: transparent;
  border-radius: 4px;
  transition: all var(--transition);
}

.filter-btn:hover {
  color: var(--navy);
  border-color: var(--sky);
}

.filter-btn.active {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  font-weight: 600;
}

/* ─── Horizontal Scroll Strip ─── */
.scroll-strip-wrap {
  position: relative;
}

.scroll-strip-wrap::before,
.scroll-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: var(--space-sm);
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.scroll-strip-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.scroll-strip-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.scroll-strip {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  gap: 1rem;
  padding: 0 var(--space-md) var(--space-sm);
  cursor: grab;
}

.scroll-strip::-webkit-scrollbar { display: none; }
.scroll-strip:active { cursor: grabbing; }

.scroll-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 1.4rem;
  position: relative;
  transition: border-color var(--transition);
}

.scroll-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--sky);
  border-radius: 4px 0 0 4px;
  transition: height var(--transition-slow);
}

.scroll-card:hover {
  border-color: var(--sky);
}

.scroll-card:hover::before { height: 100%; }

.scroll-card-date {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.scroll-card-title {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

/* ─── Alternating Editorial Blocks ─── */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--mid);
}

.editorial-block.reverse { direction: rtl; }
.editorial-block.reverse > * { direction: ltr; }

.editorial-visual {
  aspect-ratio: 4/3;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mid);
  border-radius: 8px;
}

.editorial-visual svg {
  width: 85%;
  height: 85%;
  opacity: 0.75;
}

.editorial-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

.editorial-visual svg {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
}

.editorial-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.editorial-category::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--sky);
}

.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.editorial-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ─── Pull Quote ─── */
.pull-quote {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--sky);
  background: var(--sky-light);
  border-radius: 0 4px 4px 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-editorial);
  font-size: 5rem;
  color: var(--sky);
  opacity: 0.3;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

/* ─── Newsletter Section ─── */
.newsletter-section {
  background: var(--off-white);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  text-align: center;
  padding: var(--section-pad) var(--space-md);
  position: relative;
  overflow: hidden;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: var(--space-sm) auto 0;
}

.newsletter-input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--mid);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 4px 0 0 4px;
}

.newsletter-input:focus { border-color: var(--sky); }
.newsletter-input::placeholder { color: var(--muted); opacity: 0.6; }

.newsletter-submit {
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 0 4px 4px 0;
  transition: filter var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover { filter: brightness(0.92); }

/* ─── Instagram / Social Teaser ─── */
.social-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.social-tile {
  aspect-ratio: 1;
  background: var(--off-white);
  border: 1px solid var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color var(--transition);
}

.social-tile:hover {
  border-color: var(--sky);
}

.social-tile svg { width: 52%; height: 52%; opacity: 1; transition: transform var(--transition); }
.social-tile:hover svg { transform: scale(1.05); }

/* Branded social tiles */
.social-tile[style*="background:linear-gradient"] svg,
.social-tile[style*="background:#010101"] svg,
.social-tile[style*="background:#1877F2"] svg { opacity: 1 !important; width: 52%; height: 52%; }

/* ─── Media / BBC Block ─── */
.media-block {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--sky-light);
  border: 1px solid var(--mid);
  border-radius: 8px;
}

.media-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.media-text h3 {
  font-family: var(--font-editorial);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.media-text p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Social Links (Contact/About) ─── */
.social-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--mid);
  background: var(--off-white);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  border-radius: 0;
  margin-bottom: 4px;
  border: 1px solid var(--mid);
  border-radius: 8px;
}

.social-row:last-child { border-bottom: 1px solid var(--mid); }
.social-row:hover { border-color: var(--sky); }

.social-row-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mid);
  border-radius: 4px;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
  background: var(--white);
}

.social-row:hover .social-row-icon {
  border-color: var(--sky);
  background: var(--sky-light);
}

.social-row-icon svg { width: 18px; height: 18px; color: var(--navy); }

.social-row-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color var(--transition);
}

.social-row:hover .social-row-name { color: var(--sky); }

.social-row-handle {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-lg);
  background: var(--sky-light);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--mid);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sky);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
}

.page-hero-landmark {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  opacity: 0.05;
  z-index: 0;
}

/* ─── Contact Form ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-input, .form-textarea {
  background: var(--white);
  border: 1px solid var(--mid);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--sky);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.5; }

.form-textarea { resize: vertical; min-height: 120px; }

/* ─── Calendar ─── */
.calendar-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.calendar-caption {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.calendar-grid::-webkit-scrollbar { display: none; }
.cal-day {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 12px 8px;
  min-width: 110px;
  scroll-snap-align: start;
  transition: border-color 0.2s;
}
.cal-day.today {
  background: var(--sky-pale);
  border-color: var(--sky);
  border-top: 3px solid var(--sky);
}
.cal-day.weekend {
  background: var(--off-white);
}
.cal-day-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cal-day.today .cal-day-name { color: var(--sky); }
.cal-day-date {
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--navy);
  margin-bottom: 8px;
}
.cal-event {
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
  line-height: 1.4;
  display: block;
}
.cal-event.food { background: #C0533A; }
.cal-event.popup { background: var(--sky); }
.cal-event.free { background: #2E7D52; }
.calendar-footer {
  text-align: center;
  margin-top: var(--space-md);
}
.calendar-footer a {
  color: var(--sky);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .calendar-grid {
    grid-template-columns: repeat(7, 110px);
  }
}

/* ─── Map ─── */
.map-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
#deals-map {
  width: 100%;
  height: 480px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--mid);
}
.map-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.map-footer {
  background: var(--white);
  border: 1px solid var(--mid);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 768px) {
  #deals-map { height: 300px; }
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(75,163,195,0.1);
  position: relative;
  overflow: hidden;
}

.footer-skyline {
  width: 100%;
  display: block;
  opacity: 0.12;
}

.footer-main {
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--sky-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
}

.footer-social-icon:hover {
  border-color: var(--sky);
  background: rgba(75,163,195,0.15);
  color: var(--white);
}

.footer-social-icon svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--sky);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
  font-size: 1.1rem;
  font-weight: bold;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

/* ─── About page specifics ─── */
.about-story {
  max-width: 680px;
}

.about-story p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-story p:first-child {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  color: var(--text);
}

/* ─── Freebies alternating ─── */
.freebies-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.freebie-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.freebie-item.hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  display: none;
}

/* ─── Category section header ─── */
.cat-header {
  padding: var(--section-pad-sm) 0 var(--space-md);
  background: var(--sky-light);
  border-bottom: 1px solid var(--mid);
}

/* ─── Hero stat divider ─── */
.hero-stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--mid);
  min-height: 3rem;
}

/* ─── Marquee ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: 0.6rem 0;
  background: var(--sky-pale);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--navy);
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-inner span em {
  color: var(--sky);
  font-style: normal;
  margin: 0 1.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Geometric accent ─── */
.geo-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

/* ─── Animated entrance ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children — supports up to 12 */
.stagger > * { opacity: 0; transform: translateY(20px); }
.stagger.visible > *:nth-child(1)  { animation: fadeUp 0.5s ease 0.00s forwards; }
.stagger.visible > *:nth-child(2)  { animation: fadeUp 0.5s ease 0.07s forwards; }
.stagger.visible > *:nth-child(3)  { animation: fadeUp 0.5s ease 0.14s forwards; }
.stagger.visible > *:nth-child(4)  { animation: fadeUp 0.5s ease 0.21s forwards; }
.stagger.visible > *:nth-child(5)  { animation: fadeUp 0.5s ease 0.28s forwards; }
.stagger.visible > *:nth-child(6)  { animation: fadeUp 0.5s ease 0.35s forwards; }
.stagger.visible > *:nth-child(7)  { animation: fadeUp 0.5s ease 0.42s forwards; }
.stagger.visible > *:nth-child(8)  { animation: fadeUp 0.5s ease 0.49s forwards; }
.stagger.visible > *:nth-child(9)  { animation: fadeUp 0.5s ease 0.56s forwards; }
.stagger.visible > *:nth-child(10) { animation: fadeUp 0.5s ease 0.63s forwards; }
.stagger.visible > *:nth-child(11) { animation: fadeUp 0.5s ease 0.70s forwards; }
.stagger.visible > *:nth-child(12) { animation: fadeUp 0.5s ease 0.77s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .grid-split { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 3rem;
    --section-pad-sm: 2.5rem;
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay { display: flex; }

  .card-grid { grid-template-columns: 1fr; }

  .editorial-block { grid-template-columns: 1fr; gap: 2rem; }
  .editorial-block.reverse { direction: ltr; }

  .grid-2col,
  .grid-split,
  .grid-editorial { grid-template-columns: 1fr; gap: 2rem; }

  .grid-editorial.flipped > :first-child { order: unset; }
  .grid-editorial.flipped > :last-child  { order: unset; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }

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

  .stats-inner { gap: var(--space-md); }
  .stat-item + .stat-item::before { display: none; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-submit {
    border-radius: 4px;
    border-right: 1px solid var(--mid);
  }
  .newsletter-submit { width: 100%; }

  .media-block { flex-direction: column; text-align: center; }

  .pull-quote { padding: var(--space-sm) var(--space-md); }

  .page-hero-landmark { opacity: 0.03; }

  .scroll-strip-wrap::before,
  .scroll-strip-wrap::after { width: 1.5rem; }

  .tiktok-slot { min-width: min(300px, 100%) !important; max-width: 100% !important; flex: 1 1 100% !important; }

  .hero-content > div[style*="display:flex"] { gap: 1.5rem; }
  .hero-content img { width: clamp(160px, 35vw, 300px) !important; }

  [style*="text-align:center"] .page-hero-eyebrow::before { display: none; }
}

@media (max-width: 480px) {
  .hero-content { padding: var(--space-sm) var(--space-sm); }
  .filter-bar { top: var(--nav-height); padding: 0.75rem var(--space-sm); }
  .deal-card-visual { height: 160px; }

  .hero-stats-row { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { display: none; }

  .social-teaser { grid-template-columns: 1fr 1fr; }

  p[style*="max-width"] { max-width: 100% !important; }

  .tiktok-slot { min-width: 100% !important; max-width: 100% !important; flex: none !important; }

  .hero-flex-main { flex-wrap: nowrap !important; align-items: center !important; }
  .hero-text-col { min-width: 0 !important; flex: 1 1 0 !important; }
  .hero-logo-col { padding-top: 0 !important; align-self: center !important; }
  .hero-logo-col img { width: clamp(80px, 24vw, 120px) !important; }
}

/* About sticky column — disable sticky on mobile */
@media (max-width: 768px) {
  .about-sticky-col { position: static !important; }
}
