/* =============================================
   CAMALOTE GROUP — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Libre+Franklin:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --dark:       #1a1a1a;
  --header-bg:  #2b2b2b;
  --accent:     #8b1c1c;
  --accent-mid: #a52020;
  --text:       #2c2c2c;
  --muted:      #666;
  --border:     #ddd;
  --bg:         #f5f0e8;
  --bg-soft:    #f7f6f4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-ui:      'Libre Franklin', sans-serif;

  /* Typographic scale */
  --h1: clamp(2.8rem, 6vw, 4.5rem);   /* heroes only */
  --h2: clamp(1.5rem, 2.5vw, 1.9rem); /* page/section titles, post titles */
  --h3: clamp(1.05rem, 1.8vw, 1.3rem); /* subtitles, subheadings, section labels */
  --card-title: clamp(1.1rem, 2vw, 1.4rem); /* press grid & featured card titles */

  --max-w: 1100px;
  --content-w: 760px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

/* ---- Page progress bar ---- */
.page-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.page-progress.running {
  opacity: 1;
}
.page-progress.complete {
  width: 100% !important;
  opacity: 0;
  transition: width 0.15s ease, opacity 0.4s ease 0.15s;
}

img { max-width: 100%; height: auto; display: block; }
.pgc-thumb,
.card-thumb { height: 100%; max-width: none; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: #fff;
  padding: 0.5rem 1rem; z-index: 9999;
  font-family: var(--font-ui); font-size: 0.85rem;
}
.skip-link:focus { top: 0; }

/* =============================================
   HEADER — MASTHEAD MODE (inner pages default)
   ============================================= */
.site-header {
  background: linear-gradient(135deg, #2b2b2b 0%, #222222 60%, #2a1f1f 100%);
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.header-branding {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-branding img {
  width: 46px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* ---- Nav ---- */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

/* =============================================
   HEADER — OVERLAY MODE (homepage only)
   The homepage wraps header + hero together. The header is
   position:absolute so the hero fills full viewport height.
   A JS scroll listener adds .scrolled to darken the header once
   the hero is past.
   ============================================= */
body.home-page .hero-wrap {
  position: relative;
}
body.home-page .hero-wrap .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  z-index: 200;
}
body.home-page .hero-wrap .site-header.scrolled {
  position: fixed;
  background: linear-gradient(135deg, #2b2b2b 0%, #222222 60%, #2a1f1f 100%);
  box-shadow: 0 2px 18px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04);
}


/* =============================================
   PAGE HERO (background, press, faq — shared)
   ============================================= */
.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.42;
}
.page-hero-text {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
}
.page-hero-text h1 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin: 0;
}
.page-hero-text p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0.5rem 0 0;
}

/* =============================================
   LAYOUT WRAPPERS
   ============================================= */
.site-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
  flex: 1;
}
.layout-single {
  max-width: var(--content-w);
}

/* =============================================
   HOMEPAGE HERO SLIDES
   ============================================= */
.hero-slides {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  height: 680px;
}
/* Crossfade: all slides stacked, opacity drives the transition */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-inner {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.18) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 2rem 3rem;
  color: #fff;
}
.hero-slide-content h2 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  max-width: 580px;
}
.hero-slide-content .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  padding: 0.65rem 1.5rem;
  transition: background 0.2s, border-color 0.2s, gap 0.2s;
}
.hero-slide-content .hero-cta::after {
  content: '\2192';
  font-size: 1em;
  transition: transform 0.2s ease;
}
.hero-slide-content .hero-cta:hover::after {
  transform: translateX(4px);
}
.hero-slide-content .hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  text-decoration: none;
}

/* Per-slide background images (3 slides now) */
.hero-slide:nth-child(1) .hero-slide-bg {
  background-image: url('../images/empoweringpeople.png');
}
.hero-slide:nth-child(2) .hero-slide-bg {
  background-image: url('../images/HistoryofService.png');
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background-image: url('../images/AnswersToYourQuestions.png');
}

/* Navigation arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.65);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  font-size: 1.1rem;
  line-height: 1;
}
.hero-arrow:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  padding: 0; transition: background 0.4s;
}
.hero-dot.active { background: #fff; }

/* =============================================
   HOMEPAGE PRESS GRID
   ============================================= */
.home-press-section {
  max-width: 100%;
  background: #1c1410;
  padding: 0;
  margin: 0;
}
.home-press-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 0.5rem;
}
.home-press-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.home-press-header h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 400;
  color: #e8e0d4;
  line-height: 1;
}
.home-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}
.home-press-card {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.home-press-card .card-title {
  font-family: var(--font-display);
  font-size: var(--card-title);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}
.home-press-card .card-title a {
  color: #1a1612;
  text-decoration: none;
}
.home-press-card .card-title a:hover {
  color: var(--accent);
  text-decoration: none;
}
.home-press-card .card-date {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: #8a7e72;
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
}

.home-press-more {
  text-align: center;
  padding: 1.5rem 0 3.5rem;
  background: #1c1410;
}
/* Homepage main fills remaining space */
body.home-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btn-more-news {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.8);
  border: 1px solid rgba(232,224,212,0.35);
  padding: 0.7rem 2.25rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-more-news::after {
  content: '\2192';
  font-size: 1em;
  transition: transform 0.2s ease;
}
.btn-more-news:hover::after {
  transform: translateX(4px);
}
.btn-more-news:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}
/* Homepage inner wrapper padding */
.home-press-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 0.5rem;
}

/* =============================================
   PRESS LIST PAGE — GRID
   ============================================= */
.press-page-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: start;
}
.press-grid-card {
  display: flex;
  flex-direction: column;
  align-self: start;
}
/* Image containers: padding-bottom trick forces square regardless of image dimensions */
.press-grid-card .pgc-image-link,
.home-press-card .card-image-link {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 square */
  height: 0;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.press-grid-card .pgc-thumb,
.home-press-card .card-thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.press-grid-card .pgc-image-link:hover .pgc-thumb,
.home-press-card .card-image-link:hover .card-thumb {
  transform: scale(1.04);
}
.press-grid-card .pgc-title {
  font-family: var(--font-display);
  font-size: var(--card-title);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}
.press-grid-card .pgc-title a {
  color: var(--dark);
  text-decoration: none;
}
.press-grid-card .pgc-title a:hover {
  color: var(--accent);
  text-decoration: none;
}
.press-grid-card .pgc-date {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* =============================================
   CONTENT BODY TYPOGRAPHY
   ============================================= */
.content-body h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
  line-height: 1.25;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 600;
  color: var(--dark);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
.content-body p { margin-bottom: 1.1rem; color: var(--text); }
.content-body ul { margin: 0.5rem 0 1.25rem 1.5rem; }
.content-body ul li { margin-bottom: 0.3rem; }
.content-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.content-body strong { font-weight: 600; }
.content-body em { font-style: italic; }

.content-body h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
}
.content-body h1:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

/* =============================================
   POST ARTICLE
   ============================================= */
.post-header { margin-bottom: 2rem; }
.post-header .post-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
.post-header h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.post-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.post-meta .post-category { color: var(--accent); font-weight: 500; }
.post-body {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.post-body p { margin-bottom: 1.1rem; }
.post-body h3 {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.post-body strong { font-weight: 600; }
.post-body .redacted {
  background: #1a1a1a;
  color: #1a1a1a;
  border-radius: 2px;
  padding: 0 2px;
  user-select: none;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-break: break-all;
  display: inline;
}
.post-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
}
.post-footer .post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.post-footer .post-nav a { color: var(--accent); font-weight: 500; }
.post-clearance {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #c00;
  background: #fff5f5;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #8b0000;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-main + .site-footer {
  margin-top: 0;
}
.site-footer {
  background: var(--header-bg);
  color: rgba(255,255,255,0.65);
  padding: 1.5rem 2rem;
  margin-top: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner a { color: rgba(255,255,255,0.7); }
.footer-inner a:hover { color: #fff; text-decoration: none; }


/* =============================================
   PAGE LOAD STAGGER ANIMATION
   ============================================= */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elements that animate in on page load */
.anim {
  opacity: 0;
}
.page-loaded .anim {
  animation: fadeSlideDown 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-loaded .anim:nth-child(1)  { animation-delay: 0.05s; }
.page-loaded .anim:nth-child(2)  { animation-delay: 0.12s; }
.page-loaded .anim:nth-child(3)  { animation-delay: 0.19s; }
.page-loaded .anim:nth-child(4)  { animation-delay: 0.26s; }
.page-loaded .anim:nth-child(5)  { animation-delay: 0.33s; }
.page-loaded .anim:nth-child(6)  { animation-delay: 0.38s; }
.page-loaded .anim:nth-child(7)  { animation-delay: 0.43s; }
.page-loaded .anim:nth-child(8)  { animation-delay: 0.47s; }
.page-loaded .anim:nth-child(9)  { animation-delay: 0.50s; }
.page-loaded .anim:nth-child(10) { animation-delay: 0.53s; }
.page-loaded .anim:nth-child(n+11) { animation-delay: 0.55s; }



/* =============================================
   PRESS PAGE — CATEGORY FILTER
   ============================================= */
.press-section-heading {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #e8e0d4;           /* light on dark featured bg */
  margin-bottom: 2rem;
  display: block;
}
.press-section-heading--dark {
  color: var(--dark);       /* dark on light feed bg */
}
/* Feed section: heading + filter on same row, baseline-aligned */
.press-feed-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.press-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.press-filter-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.15rem;
}
.press-filter-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.press-filter-btn:hover {
  border-color: #999;
  color: var(--dark);
}
.press-filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
/* Cards hidden by filter */
.pff-card[hidden] {
  display: none;
}

/* =============================================
   PRESS PAGE — FEATURED SECTION
   ============================================= */
.press-featured-section {
  background: #1c1410;
  padding: 3.5rem 2rem 3rem;
}
.press-featured-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.press-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.pf-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0; /* prevent blowout inside grid */
}
.pf-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  /* aspect-ratio on the container, not padding-bottom, avoids cross-browser grid quirks */
  aspect-ratio: 4 / 3;
  width: 100%;
}
.pf-thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pf-image-link:hover .pf-thumb { transform: scale(1.03); }
.pf-body {
  padding: 1.25rem 0 0;
}
.pf-cat {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}
.pf-title {
  font-family: var(--font-display);
  font-size: var(--card-title);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}
.pf-title a {
  color: #e8e0d4;
  text-decoration: none;
}
.pf-title a:hover { color: #fff; text-decoration: none; }
.pf-read-more {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.pf-read-more:hover { color: #fff; text-decoration: none; }

/* =============================================
   PRESS PAGE — FULL FEED (4-across)
   ============================================= */
.press-feed-section {
  padding: 3.5rem 2rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.press-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.pff-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0;
}
.pff-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8rem;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.pff-thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pff-image-link:hover .pff-thumb { transform: scale(1.04); }
.pff-title {
  font-family: var(--font-display);
  font-size: var(--card-title);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}
.pff-title a {
  color: var(--dark);
  text-decoration: none;
}
.pff-title a:hover { color: var(--accent); text-decoration: none; }
.pff-read-more {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.pff-read-more:hover { color: var(--dark); text-decoration: none; }

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

/* --- Tablet --- */
@media (max-width: 900px) {
  .home-press-grid,
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .press-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .press-feed-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-body { grid-template-columns: 1fr; }
  .faq-nav { display: none; }

  .post-header .post-banner { height: 220px; }
}

/* --- Mobile --- */
@media (max-width: 640px) {
  /* Header: logo + nav stack cleanly */
  .site-header { padding: 0.85rem 1rem; }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  /* Nav wraps below logo on very small screens */
  .site-nav ul {
    gap: 0.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-nav a {
    font-size: 0.72rem;
    padding: 0.35rem 0.55rem;
    letter-spacing: 0.02em;
  }

  /* Hero */
  .hero-slides { height: 520px; }
  .hero-slide-inner { height: 520px; }
  .hero-slide-content {
    padding: 6rem 1.25rem 2rem;
  }
  .hero-slide-content h2 { font-size: 1.75rem; max-width: 100%; }
  .hero-arrow { width: 38px; height: 38px; font-size: 0.95rem; }
  .hero-arrow-prev { left: 0.75rem; }
  .hero-arrow-next { right: 0.75rem; }

  /* Page hero */
  .page-hero { height: 240px; }
  .page-hero-text { padding: 0 1.25rem 2rem; }
  .page-hero-text h1 { font-size: clamp(2rem, 5vw, var(--h1)); }
  .page-hero-text p { font-size: 0.68rem; }

  /* Press grids: single column */
  .home-press-grid,
  .press-grid { grid-template-columns: 1fr; }
  .press-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .press-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .press-featured-section { padding: 2.5rem 1.25rem 2rem; }
  .press-feed-section { padding: 2rem 1.25rem 3rem; }
  .pf-title { font-size: var(--card-title); }
  .home-press-section-inner { padding: 2rem 1.25rem 0.5rem; }
  .home-press-header h2 { font-size: var(--h2); }
  .home-press-card .card-title,
  .press-grid-card .pgc-title { font-size: var(--card-title); }

  /* Press & News button */
  .home-press-more { padding: 1.25rem 0 2.5rem; }

  /* Content */
  .site-main { padding: 1.75rem 1.25rem 2rem; }
  .content-body h2 { font-size: 1.2rem; }
  .layout-single { max-width: 100%; }

  /* Post pages */
  .post-header .post-banner { height: 180px; }
  .post-header h2 { font-size: 1.4rem; }
  .post-footer .post-nav { flex-direction: column; gap: 0.75rem; }

  /* FAQ */
  .faq-body { padding: 2rem 1.25rem 3rem; }
  .faq-entry h2 { font-size: var(--h2); }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* --- Very small screens --- */
@media (max-width: 380px) {
  .site-nav a { font-size: 0.65rem; padding: 0.3rem 0.4rem; }
  .hero-slide-content h2 { font-size: 1.45rem; }
}
