/* =============================================================
   thelangers.com — Lifestyle Site CSS
   Extends the base style.css (crypto section remains as-is).
   Adam West design system v1.0 — 2026-05-02
   Implementation: Mort
   ============================================================= */

/* ----- Lifestyle Section Tokens ----- */
:root {
  /* Section accent colors */
  --accent-wellington: #E8704A;
  --accent-medfield:   #C47A2E;
  --accent-hull:       #2B6B8F;
  --accent-sports:     #007A4D;
  --accent-food:       #B87333;
  --accent-photos:     #8B6B4E;
  --accent-crypto:     #C5A55A; /* same as brass, for consistency */

  /* Team-specific sports accents */
  --accent-patriots:   #012169;
  --accent-redsox:     #BD3039;

  /* Default section accent (overridden per body class) */
  --section-accent: var(--brass-gold);
}

/* Per-section body class switches the accent token */
.section-wellington  { --section-accent: var(--accent-wellington); }
.section-medfield    { --section-accent: var(--accent-medfield); }
.section-hull        { --section-accent: var(--accent-hull); }
.section-sports      { --section-accent: var(--accent-sports); }
.section-food        { --section-accent: var(--accent-food); }
.section-photos      { --section-accent: var(--accent-photos); }
.section-crypto      { --section-accent: var(--accent-crypto); }
.section-home        { --section-accent: var(--brass-gold); }

/* =============================================================
   PAGE BACKGROUND IMAGE — atmospheric texture (4-7% opacity)
   Uses ::before on a wrapper so body text is unaffected.
   ============================================================= */

.page-bg {
  position: relative;
}

.page-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.page-bg > * {
  position: relative;
  z-index: 1;
}

/* Section-specific background images */
.section-wellington.page-bg::before {
  background-image: url('/assets/images/thelangers-wellington-bg-02-upscaled.png');
}
.section-medfield.page-bg::before {
  background-image: url('/assets/images/thelangers-medfield-bg-04-upscaled.png');
}
.section-hull.page-bg::before {
  background-image: url('/assets/images/thelangers-hull-bg-05-upscaled.png');
}
.section-sports.page-bg::before {
  background-image: url('/assets/images/thelangers-sports-parquet-bg-07-upscaled.png');
  opacity: 0.06;
}
.section-food.page-bg::before {
  background-image: url('/assets/images/thelangers-food-fitness-bg-09-upscaled.png');
}
.section-photos.page-bg::before {
  background-image: url('/assets/images/thelangers-photos-journals-bg-10-upscaled.png');
  opacity: 0.04;
}

/* =============================================================
   GLOBAL LIFESTYLE NAV
   Replaces the old site-header + site-nav-bar system.
   Height 72px desktop, 56px mobile.
   Transparent on homepage, filled on all other pages.
   ============================================================= */

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: transparent;
  z-index: 200;
  transition: background-color 0.25s ease;
}

/* The Brass Gold bottom border fades in with the background */
.global-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--brass-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.global-nav.nav-filled {
  background-color: var(--ink-white);
}

.global-nav.nav-filled::after {
  opacity: 1;
}

/* Non-homepage pages get nav-filled by default (no JS scroll needed) */
.nav-always-filled .global-nav {
  background-color: var(--ink-white);
}
.nav-always-filled .global-nav::after {
  opacity: 1;
}

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

/* Wordmark */
.site-wordmark-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-wordmark-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--deep-charcoal);
  line-height: 1;
}

/* On transparent nav (homepage hero), wordmark goes white */
.global-nav:not(.nav-filled) .site-wordmark-text {
  color: var(--ink-white);
}

.site-wordmark-accent {
  width: 20px;
  height: 4px;
  background: var(--brass-gold);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.site-wordmark-wrap:hover .site-wordmark-accent {
  width: 40px;
}

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-mid);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links > li > a:hover {
  color: var(--deep-charcoal);
}

.nav-links > li > a.active {
  color: var(--deep-charcoal);
  border-bottom-color: var(--brass-gold);
}

/* On transparent nav (homepage), links go light */
.global-nav:not(.nav-filled) .nav-links > li > a {
  color: rgba(250,250,248,0.85);
}
.global-nav:not(.nav-filled) .nav-links > li > a:hover {
  color: var(--ink-white);
}
.global-nav:not(.nav-filled) .nav-links > li > a.active {
  color: var(--ink-white);
  border-bottom-color: var(--brass-gold);
}

/* Dropdown menus */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-white);
  border: 1px solid var(--cool-stone);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  z-index: 300;
  list-style: none;
}

.nav-links > li:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 8px 16px;
  white-space: nowrap;
  transition: background-color 0.1s, color 0.1s;
}

.nav-dropdown li a:hover {
  background-color: var(--paper-shadow);
  color: var(--deep-charcoal);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-charcoal);
  transition: background 0.15s;
}

.global-nav:not(.nav-filled) .nav-hamburger span {
  background: var(--ink-white);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--ink-white);
  border-left: 1px solid var(--cool-stone);
  z-index: 400;
  padding: 24px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-close {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 16px;
}

.nav-drawer-close button {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--slate-mid);
  cursor: pointer;
}

.nav-drawer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-charcoal);
  padding: 0 20px 24px;
  display: block;
  border-bottom: 1.5px solid var(--brass-gold);
  margin-bottom: 8px;
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer > ul > li > a {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 12px 20px;
  transition: color 0.1s;
}

.nav-drawer > ul > li > a:hover {
  color: var(--deep-charcoal);
}

.nav-drawer-sub {
  list-style: none;
  padding-left: 16px;
  border-left: 2px solid var(--paper-shadow);
  margin: 0 20px 4px 36px;
  display: none;
}

.nav-drawer-sub.open {
  display: block;
}

.nav-drawer-sub li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.1s;
}

.nav-drawer-sub li a:hover {
  color: var(--deep-charcoal);
}

.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,20,24,0.4);
  z-index: 390;
}

.nav-drawer-overlay.open {
  display: block;
}

/* Body offset when nav is fixed */
.nav-offset {
  padding-top: 72px;
}

/* =============================================================
   EDITORIAL HERO (v2)
   Full-width image. Two-column text row below: featured + secondary.
   ============================================================= */

.editorial-hero {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 40px 0;
}

.editorial-hero__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.editorial-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-hero__text-row {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 40px;
  padding: 32px 0 40px;
  border-bottom: 1px solid #9AA2AD;
}

.editorial-hero__category {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-accent, #C5A55A);
  margin-bottom: 10px;
  display: block;
}

.editorial-hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #111418;
  margin-bottom: 16px;
}

.editorial-hero__headline a {
  color: inherit;
  text-decoration: none;
}

.editorial-hero__headline a:hover {
  text-decoration: underline;
  text-decoration-color: #C5A55A;
  text-underline-offset: 3px;
}

.editorial-hero__lede {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #111418;
  margin-bottom: 16px;
}

.editorial-hero__meta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8125rem;
  color: #4A5260;
  margin-bottom: 16px;
}

.editorial-hero__read-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #111418;
  text-decoration: underline;
  text-decoration-color: #C5A55A;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.editorial-hero__read-link:hover {
  text-decoration-thickness: 2px;
}

/* Secondary teaser (right column, desktop only) */
.editorial-hero__secondary-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 16px;
}

.editorial-hero__secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-hero__secondary-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: #111418;
  margin-bottom: 10px;
}

.editorial-hero__secondary-headline a {
  color: inherit;
  text-decoration: none;
}

.editorial-hero__secondary-headline a:hover {
  text-decoration: underline;
  text-decoration-color: #C5A55A;
  text-underline-offset: 3px;
}

/* =============================================================
   CONTENT STREAM (v2)
   Pattern A: image + text side by side (large).
   Pattern B: two-column pair (compact).
   ============================================================= */

.content-stream {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Pattern A */
.stream-item--a {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #9AA2AD;
}

.stream-item--a.reverse {
  grid-template-columns: 40fr 60fr;
}

.stream-item--a.reverse .stream-item__image {
  order: 2;
}

.stream-item--a.reverse .stream-item__text {
  order: 1;
}

.stream-item__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.stream-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.stream-item--a:hover .stream-item__image img {
  transform: scale(1.02);
}

.stream-item__category {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-accent, #C5A55A);
  margin-bottom: 10px;
  display: block;
}

.stream-item__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #111418;
  margin-bottom: 12px;
}

.stream-item__headline a {
  color: inherit;
  text-decoration: none;
}

.stream-item__headline a:hover {
  text-decoration: underline;
  text-decoration-color: #C5A55A;
  text-underline-offset: 3px;
}

.stream-item__lede {
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5260;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stream-item__meta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8125rem;
  color: #4A5260;
}

/* Pattern B: two-column pair */
.stream-item--b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #9AA2AD;
}

.stream-item__pair-story {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream-item__pair-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.stream-item__pair-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.stream-item__pair-story:hover .stream-item__pair-image img {
  transform: scale(1.02);
}

.stream-item__pair-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #111418;
  margin: 0;
}

.stream-item__pair-headline a {
  color: inherit;
  text-decoration: none;
}

.stream-item__pair-headline a:hover {
  text-decoration: underline;
  text-decoration-color: #C5A55A;
  text-underline-offset: 3px;
}

/* Section break label within the stream */
.stream-section-label {
  padding: 32px 0 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A5260;
  border-top: 1px solid #C5A55A;
}

/* Per-section data attribute accent colors (homepage mixed stream) */
[data-section="sports"] .stream-item__category,
[data-section="sports"] .editorial-hero__category {
  color: #007A4D;
}
[data-section="crypto"] .stream-item__category,
[data-section="crypto"] .editorial-hero__category {
  color: #C5A55A;
}
[data-section="wellington"] .stream-item__category,
[data-section="wellington"] .editorial-hero__category {
  color: #E8704A;
}
[data-section="medfield"] .stream-item__category,
[data-section="medfield"] .editorial-hero__category {
  color: #C47A2E;
}
[data-section="hull"] .stream-item__category,
[data-section="hull"] .editorial-hero__category {
  color: #2B6B8F;
}
[data-section="food"] .stream-item__category,
[data-section="food"] .editorial-hero__category {
  color: #B87333;
}
[data-section="photos"] .stream-item__category,
[data-section="photos"] .editorial-hero__category {
  color: #8B6B4E;
}

/* =============================================================
   LIFESTYLE FOOTER (3-column)
   ============================================================= */

.lifestyle-footer {
  background: var(--ink-white);
  border-top: 1px solid var(--cool-stone);
  padding: 48px 0 24px;
}

.lifestyle-footer .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--slate-mid);
  line-height: 1.5;
}

.footer-nav-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-charcoal);
  margin-bottom: 12px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.1s;
}

.footer-nav-links a:hover {
  color: var(--deep-charcoal);
}

.footer-brothers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brothers li {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
  line-height: 1.4;
}

.footer-brothers strong {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--paper-shadow);
  padding-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--slate-mid);
}

/* =============================================================
   SECTION HEADER (all sections)
   ============================================================= */

.section-header {
  padding: 48px 0 0;
}

.section-header .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 4px accent bar replaces global brass rule within a section */
.section-accent-bar {
  width: 100%;
  height: 4px;
  background: var(--section-accent);
  margin-bottom: 24px;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.section-sublabel {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--slate-mid);
  margin-bottom: 4px;
}

.section-brother-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--section-accent);
  margin-bottom: 24px;
  display: block;
}

/* =============================================================
   SECTION SUB-NAV PILLS
   ============================================================= */

.section-subnav {
  width: 100%;
  height: 48px;
  background: var(--ink-white);
  border-top: 4px solid var(--section-accent);
  border-bottom: 1px solid var(--cool-stone);
  margin-bottom: 48px;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.section-subnav .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subnav-pills {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
  list-style: none;
}

.subnav-pills li a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 0 24px 0 0;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  transition: color 0.1s, border-color 0.1s;
  white-space: nowrap;
}

.subnav-pills li a:hover {
  color: var(--deep-charcoal);
}

.subnav-pills li a.active {
  color: var(--deep-charcoal);
  border-bottom-color: var(--section-accent);
}

.subnav-back-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.1s;
  white-space: nowrap;
}

.subnav-back-link:hover {
  color: var(--deep-charcoal);
}

/* =============================================================
   SECTION HERO PANEL (Wellington, Medfield, Hull, Food, Photos)
   Height 320px. Image at 65-75% opacity with gradient exit.
   ============================================================= */

.section-hero-panel {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.section-hero-panel-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.section-hero-panel-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(250,250,248,0) 0%, rgba(250,250,248,1) 100%);
  z-index: 1;
}

/* =============================================================
   LIFESTYLE CARDS (2-column grid for city/food/photos sections)
   ============================================================= */

.content-section {
  padding: 0 0 80px;
}

.content-section .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.card-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured item panel — pinned entry above the grid */
.featured-item {
  background: var(--ink-white);
  border: 1px solid var(--cool-stone);
  border-left: 4px solid var(--section-accent);
  border-radius: 0 8px 8px 0;
  padding: 24px 24px 24px 20px;
  margin-bottom: 32px;
}

.featured-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-accent);
  margin-bottom: 8px;
}

.featured-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.featured-desc {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 12px;
}

.featured-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
}

.featured-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  text-decoration: underline;
  text-decoration-color: var(--section-accent);
  text-underline-offset: 2px;
}

/* Lifestyle content card */
.content-card {
  background: var(--ink-white);
  border: 1px solid var(--cool-stone);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
  text-decoration: none;
}

.content-card:hover {
  border-color: var(--section-accent);
  border-width: 2px;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--section-accent);
  background: color-mix(in srgb, var(--section-accent) 12%, transparent);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.card-headline-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
  text-decoration: none;
}

.card-desc {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate-mid);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
  margin-top: auto;
}

.card-meta-author {
  color: var(--section-accent);
  font-weight: 400;
}

/* =============================================================
   HULL FERRY INFO MODULE
   ============================================================= */

.ferry-module {
  background: color-mix(in srgb, var(--accent-hull) 8%, var(--ink-white));
  border-left: 4px solid var(--accent-hull);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.ferry-module-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-hull);
  margin-bottom: 6px;
}

.ferry-module-text {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: var(--slate-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}

.ferry-module-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  text-decoration: underline;
  text-decoration-color: var(--accent-hull);
  text-underline-offset: 2px;
}

/* =============================================================
   SPORTS SECTION — Team tabs
   ============================================================= */

.team-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--cool-stone);
  margin-bottom: 0;
}

.team-tab {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.1s, border-color 0.1s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.team-tab:hover {
  color: var(--deep-charcoal);
}

.team-tab.active {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.team-tab[data-team="celtics"].active  { border-bottom-color: #007A4D; }
.team-tab[data-team="patriots"].active { border-bottom-color: #012169; }
.team-tab[data-team="redsox"].active   { border-bottom-color: #BD3039; }
.team-tab[data-team="fantasy"].active  { border-bottom-color: var(--brass-gold); }

/* Team panels */
.team-panels {
  padding-top: 0;
}

.team-panel {
  display: none;
  padding: 40px 0;
}

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

/* Team panel gradient header strip */
.team-panel-hero {
  height: 80px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.team-panel-hero.celtics  { background: linear-gradient(to bottom, rgba(0,122,77,0.08), rgba(250,250,248,0)); }
.team-panel-hero.patriots { background: linear-gradient(to bottom, rgba(1,33,105,0.08), rgba(250,250,248,0)); }
.team-panel-hero.redsox   { background: linear-gradient(to bottom, rgba(189,48,57,0.08), rgba(250,250,248,0)); }
.team-panel-hero.fantasy  { background: linear-gradient(to bottom, rgba(197,165,90,0.08), rgba(250,250,248,0)); }

.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--deep-charcoal);
  margin-bottom: 4px;
}

.team-status {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--slate-mid);
  margin-bottom: 12px;
}

.team-rule {
  border: none;
  border-top: 1px solid var(--cool-stone);
  margin-bottom: 24px;
}

/* Fantasy Football standings table */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.standings-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-charcoal);
  padding: 10px 16px;
  background: var(--paper-shadow);
  border-bottom: 1px solid var(--cool-stone);
}

.standings-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cool-stone);
  color: var(--deep-charcoal);
}

.standings-table tbody tr:nth-child(even) td {
  background: var(--paper-shadow);
}

.espn-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  text-decoration: underline;
  text-decoration-color: var(--brass-gold);
  text-underline-offset: 2px;
}

/* =============================================================
   LOCAL CITY SELECTOR PAGE (/local/)
   ============================================================= */

.city-selector {
  padding: 48px 0 80px;
}

.city-selector .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.city-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.city-tile {
  display: block;
  text-decoration: none;
  border: 1px solid var(--cool-stone);
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color 0.15s, border-width 0.15s;
  position: relative;
  overflow: hidden;
}

.city-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
}

.city-tile-wellington::before { background: var(--accent-wellington); }
.city-tile-medfield::before   { background: var(--accent-medfield); }
.city-tile-hull::before       { background: var(--accent-hull); }

.city-tile-wellington:hover { border-color: var(--accent-wellington); border-width: 2px; }
.city-tile-medfield:hover   { border-color: var(--accent-medfield); border-width: 2px; }
.city-tile-hull:hover       { border-color: var(--accent-hull); border-width: 2px; }

.city-tile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--deep-charcoal);
  margin-bottom: 4px;
  margin-top: 4px;
}

.city-tile-owner {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.city-tile-wellington .city-tile-owner { color: var(--accent-wellington); }
.city-tile-medfield   .city-tile-owner { color: var(--accent-medfield); }
.city-tile-hull       .city-tile-owner { color: var(--accent-hull); }

.city-tile-desc {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate-mid);
  margin-bottom: 20px;
}

.city-tile-cta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-charcoal);
}

/* =============================================================
   PHOTOS + JOURNALS section specifics
   ============================================================= */

/* Photo cards get a 3px Warm Sepia border */
.section-photos .content-card.photo-card {
  border: 3px solid var(--accent-photos);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(139,107,78,0.2);
}

/* Journal card: no thumbnail, Warm Sepia author name */
.journal-card .card-meta-author {
  color: var(--accent-photos);
}

.journal-card .card-headline-lg {
  font-size: 1.125rem;
}

.journal-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--slate-mid);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

/* Author filter row */
.author-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}

.author-filter-label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
}

.author-filter a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate-mid);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: color 0.1s, border-color 0.1s;
}

.author-filter a:hover,
.author-filter a.active {
  color: var(--deep-charcoal);
  border-bottom-color: var(--accent-photos);
}

/* =============================================================
   LOAD MORE
   ============================================================= */

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

.load-more-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-mid);
  text-decoration: none;
  border: 1px solid var(--cool-stone);
  padding: 10px 24px;
  background: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.load-more-btn:hover {
  border-color: var(--section-accent);
  color: var(--deep-charcoal);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1023px) {
  .nav-inner { padding: 0 32px; }
  .city-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }

  .content-stream { padding: 0 32px; }
  .editorial-hero { padding: 32px 32px 0; }

  .stream-item--a {
    grid-template-columns: 55fr 45fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .nav-inner { padding: 0 20px; }
  .global-nav { height: 56px; }
  .nav-offset { padding-top: 56px; }

  /* Show hamburger, hide links */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  /* Section subnav sticky adjustment */
  .section-subnav { top: 56px; }

  /* Editorial hero mobile */
  .editorial-hero {
    padding: 24px 20px 0;
  }
  .editorial-hero__text-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .editorial-hero__headline {
    font-size: 1.75rem;
  }
  .editorial-hero__secondary {
    display: none;
  }

  /* Content stream mobile */
  .content-stream { padding: 0 20px; }

  .stream-item--a,
  .stream-item--a.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stream-item--a.reverse .stream-item__image,
  .stream-item--a.reverse .stream-item__text {
    order: unset;
  }

  .stream-item__headline { font-size: 1.25rem; }

  .stream-item--b {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Section header */
  .section-title { font-size: 1.75rem; }
  .section-header .container { padding: 0 20px; }
  .section-subnav .container { padding: 0 20px; }

  /* Cards */
  .card-grid-2col { grid-template-columns: 1fr; }
  .card-grid-3col { grid-template-columns: 1fr; }
  .content-section .container { padding: 0 20px; }

  /* City tiles */
  .city-tiles-grid { grid-template-columns: 1fr; }
  .city-selector .container { padding: 0 20px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .lifestyle-footer .container { padding: 0 20px; }

  /* Team tabs scroll */
  .team-tabs-bar {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .team-tabs-bar::-webkit-scrollbar { display: none; }
  .team-tab { padding: 12px 16px; font-size: 0.875rem; }

  /* Section hero panel */
  .section-hero-panel { height: 220px; }
}
