/* ==============================================
   RESET & CUSTOM PROPERTIES
=============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C8A96E;
  --gold-pale:  rgba(200,169,110,0.12);
  --gold-line:  rgba(200,169,110,0.22);
  --dark:       #0D0D0D;
  --mid:        #161616;
  --surface:    #1F1F1F;
  --lift:       #252525;
  --text:       #EFECEA;
  --muted:      #888780;
  --faint:      rgba(239,236,234,0.08);

  --max-w: 1260px;
  --pad-h: clamp(20px, 5vw, 56px);
  --section-v: clamp(72px, 9vw, 112px);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ==============================================
   ACCESSIBILITY
=============================================== */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--gold);
  color: #000;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ==============================================
   UTILITY
=============================================== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-h);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
}
.section-heading em { font-style: italic; color: var(--gold); }

.divider-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.text-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.text-link:hover { opacity: 0.68; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { opacity: 0.84; }
.btn-outline { background: transparent; color: var(--gold); border: 0.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold-pale); }
.btn-text {
  background: transparent;
  color: var(--text);
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(239,236,234,0.28);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.btn-text:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ==============================================
   HEADER / NAV
=============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--gold-line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta { padding: 10px 22px; font-size: 11px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.28s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 0.5px solid var(--gold-line);
  background: var(--mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px var(--pad-h);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 0.5px solid var(--faint);
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-gold {
  margin: 16px var(--pad-h) 20px;
  display: block;
  text-align: center;
}

/* ==============================================
   HERO
=============================================== */
.hero-section {
  padding-block: clamp(64px, 10vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 55vw; height: 55vw;
  max-width: 680px;
  background: radial-gradient(circle, rgba(200,169,110,0.055) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 80px);
}

.eyebrow.hero-label { margin-bottom: 22px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.2vw, 84px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.78;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Photo panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-photo {
  width: 100%;
  height: clamp(340px, 45vw, 540px);
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 0.5px solid var(--gold-line);
}

.hero-photo-badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--gold);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  margin-top: 2px;
}

/* As-seen-in strip */
.seen-strip {
  background: var(--surface);
  border: 0.5px solid var(--gold-line);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.seen-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-right: 20px;
  border-right: 0.5px solid var(--gold-line);
  white-space: nowrap;
}
.seen-logos { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.seen-logo {
  font-size: 11px;
  font-weight: 500;
  color: rgba(239,236,234,0.36);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ==============================================
   TICKER
=============================================== */
.ticker-bar {
  background: var(--mid);
  border-top: 0.5px solid var(--gold-line);
  border-bottom: 0.5px solid var(--gold-line);
  padding-block: 13px;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll-ticker 32s linear infinite;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
.tick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.tick-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==============================================
   SERVICES
=============================================== */
.services-section { padding-block: var(--section-v); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gold-line);
}

.service-card {
  background: var(--mid);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 38px);
  transition: background 0.22s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.32s ease;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { height: 100%; }

.svc-num {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.svc-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ==============================================
   ABOUT
=============================================== */
.about-section {
  background: var(--mid);
  padding-block: var(--section-v);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy .section-heading { margin-bottom: 26px; }

.about-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 16px;
}
.about-copy p strong { color: var(--text); font-weight: 500; }

.about-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.about-list li::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pull-quote {
  background: var(--surface);
  border-left: 2px solid var(--gold);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(32px, 5vw, 52px);
  position: relative;
}
.pq-mark {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 8px; left: 14px;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}
blockquote { position: relative; z-index: 1; }
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: var(--text);
  line-height: 1.52;
  margin-bottom: 20px;
}
blockquote cite {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}

/* ==============================================
   SPECIALTIES
=============================================== */
.specialties-section { padding-block: var(--section-v); }

.spec-intro {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.spec-intro .eyebrow { margin-bottom: 14px; }
.spec-intro .section-heading { margin-bottom: 18px; }
.spec-intro p { color: var(--muted); font-size: 15px; line-height: 1.78; }
.spec-intro p strong { color: var(--text); font-weight: 500; }

.spec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.spec-card {
  background: var(--surface);
  border: 0.5px solid var(--gold-line);
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.22s;
}
.spec-card:hover { border-color: rgba(200,169,110,0.5); }

.spec-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.spec-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.spec-body p strong { color: var(--text); font-weight: 500; }

/* ==============================================
   PRESS
=============================================== */
.press-section {
  background: var(--surface);
  padding-block: var(--section-v);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--gold-line);
}
.press-card {
  background: var(--mid);
  padding: clamp(24px, 3.5vw, 36px);
  transition: background 0.2s;
}
.press-card:hover { background: var(--lift); }
.press-outlet {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.press-card h3 {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
}

/* ==============================================
   CTA / CONTACT
=============================================== */
.cta-section {
  padding-block: clamp(96px, 12vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,169,110,0.045) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .eyebrow { justify-content: center; margin-bottom: 18px; }
.cta-section .eyebrow::before { display: none; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-title em { font-style: italic; color: var(--gold); }

.cta-body {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.78;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-line {
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-line a {
  color: var(--muted);
  transition: color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-line a:hover { color: var(--gold); }

/* ==============================================
   FOOTER
=============================================== */
.site-footer {
  background: var(--mid);
  border-top: 0.5px solid var(--gold-line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-brand span { color: var(--gold); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy { font-size: 11px; color: rgba(136,136,128,0.45); }

/* ==============================================
   RESPONSIVE
=============================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 560px; }
  .about-grid { grid-template-columns: 1fr; }
  .spec-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ==============================================
   SHARED PAGE STYLES
=============================================== */
.page-hero {
  padding-block: clamp(64px, 9vw, 100px) clamp(40px, 5vw, 64px);
  border-bottom: 0.5px solid var(--gold-line);
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 720px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--text);
  margin-block: 16px 20px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ==============================================
   BLOG ARCHIVE
=============================================== */
.blog-main { padding-block: 0 var(--section-v); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold-line);
  margin-bottom: 48px;
}

.blog-card {
  background: var(--mid);
  transition: background 0.22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { background: var(--surface); }

.blog-card-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb-img { transform: scale(1.03); }

.blog-card-body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.blog-cat {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}
.blog-card-title a { color: inherit; transition: color 0.18s; }
.blog-card-title a:hover { color: var(--gold); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-excerpt p { margin: 0; }

.blog-read-more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.18s;
}
.blog-read-more:hover { opacity: 0.68; }

.blog-empty {
  text-align: center;
  padding-block: 80px;
  color: var(--muted);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border: 0.5px solid var(--gold-line);
  transition: all 0.18s;
  text-decoration: none;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.blog-pagination .prev,
.blog-pagination .next {
  width: auto;
  padding-inline: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==============================================
   SINGLE POST
=============================================== */
.single-main { padding-block: 0 var(--section-v); }
.single-container { max-width: 800px; }

.single-header { padding-block: clamp(48px, 7vw, 80px) 0; }

.back-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.18s;
}
.back-link:hover { opacity: 0.68; }

.single-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text);
  margin-block: 16px 32px;
}

.single-thumb {
  margin-bottom: 48px;
  border: 0.5px solid var(--gold-line);
}
.single-thumb img { width: 100%; height: auto; display: block; }

.single-content {
  font-size: 16px;
  line-height: 1.82;
  color: var(--muted);
  padding-bottom: 56px;
  border-bottom: 0.5px solid var(--gold-line);
}
.single-content p { margin-bottom: 1.4em; }
.single-content p:last-child { margin-bottom: 0; }
.single-content h2, .single-content h3, .single-content h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin-block: 1.6em 0.5em;
  line-height: 1.2;
}
.single-content h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; }
.single-content h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
.single-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 1.4em; }
.single-content li { margin-bottom: 0.5em; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 2em 0;
  background: var(--surface);
}
.single-content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  margin: 0;
}
.single-content img { max-width: 100%; height: auto; margin-block: 2em; border: 0.5px solid var(--gold-line); }

.single-footer { padding-block: 40px 0; }
.single-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 0.5px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.author-bio { font-size: 12px; color: var(--muted); }

/* Post nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold-line);
  margin-top: 48px;
}
.post-nav-link {
  background: var(--mid);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}
.post-nav-link:hover { background: var(--surface); }
.post-nav-next { text-align: right; }
.post-nav-dir {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}
.post-nav-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ==============================================
   PRESS PAGE
=============================================== */
.press-page-main { padding-block: 0 var(--section-v); }

.press-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--gold-line);
}

/* Video section */
.press-video-section { margin-bottom: clamp(56px, 7vw, 80px); }

.press-video-grid { display: grid; grid-template-columns: 1fr; max-width: 780px; }

.press-video-card {
  background: var(--surface);
  border: 0.5px solid var(--gold-line);
}

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.press-video-meta {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.press-outlet-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}
.press-video-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Written clips */
.press-clips-section { margin-bottom: clamp(56px, 7vw, 80px); }

.press-clips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gold-line);
}

.press-clip-card {
  background: var(--mid);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.press-clip-card:hover { background: var(--surface); }

.press-clip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.press-outlet-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 2px;
}
.press-clip-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.press-clip-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.press-clip-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  flex: 1;
}
.press-ext-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.18s;
}
.press-ext-link:hover { opacity: 0.68; }

/* Press CTA */
.press-cta {
  background: var(--surface);
  border: 0.5px solid var(--gold-line);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
}
.press-cta .eyebrow { justify-content: center; margin-bottom: 16px; }
.press-cta .eyebrow::before { display: none; }
.press-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.press-cta-title em { font-style: italic; color: var(--gold); }
.press-cta-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ==============================================
   RESPONSIVE — NEW PAGES
=============================================== */
@media (max-width: 820px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .press-clips-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .single-container { padding-inline: var(--pad-h); }
}
