/* ============================================================
   ZERION — Minimalist Editorial Luxury Lifestyle
   Palette: #F5F2EC (cream), #1A1A1A (near-black), #C9A96E (gold), #7A7A7A (mid-grey)
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ============================================================ */

@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=Inter:wght@300;400;500;600&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F2EC;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --cream:   #F5F2EC;
  --black:   #1A1A1A;
  --gold:    #C9A96E;
  --grey:    #7A7A7A;
  --lgrey:   #E8E4DC;
  --white:   #FFFFFF;
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --max-w:   1280px;
  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --trans:   0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography helpers ─────────────────────────────────────── */
.serif   { font-family: var(--ff-head); }
.eyebrow {
  font-family: var(--ff-body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.gold-accent { color: var(--gold); }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3rem, 8vw, 7rem); }
.section--dark { background: var(--black); color: var(--cream); }
.section--grey { background: var(--lgrey); }
.divider {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-block: 1.25rem;
}
.divider--center { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--lgrey);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
}
.logo span { color: var(--gold); }

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 2.25rem; }
.nav-desktop a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

/* Dropdown */
.nav-item-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--lgrey);
  min-width: 200px;
  padding: .75rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.nav-item-drop:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: .5rem 1.25rem;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--black);
  transition: color var(--trans), background var(--trans);
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: var(--trans);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--lgrey);
  padding: 1.5rem var(--gutter);
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  padding-block: .4rem;
  border-bottom: 1px solid var(--lgrey);
  transition: color var(--trans);
}
.nav-mobile a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle   { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(245,242,236,.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-contact {
  margin-top: 1.5rem;
  font-size: .8125rem;
  color: rgba(245,242,236,.55);
  line-height: 1.9;
}
.footer-contact a { transition: color var(--trans); }
.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul a {
  font-size: .8125rem;
  color: rgba(245,242,236,.55);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: .75rem;
  color: rgba(245,242,236,.35);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HERO — Homepage
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: clamp(540px, 90vh, 860px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.72) 0%, rgba(26,26,26,.15) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(2.5rem, 6vw, 5rem);
  max-width: 780px;
}
.hero-content .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 1.25rem;
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: #b8914e; border-color: #b8914e; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--cream); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-arrow::after { content: '→'; font-size: 1rem; }

/* ── Ticker ────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: .625rem 0;
  border-top: none;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   FEATURED ARTICLES GRID
═══════════════════════════════════════════════════════════ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.articles-grid--2col { grid-template-columns: repeat(2, 1fr); }
.articles-grid--4col { grid-template-columns: repeat(4, 1fr); }

/* Card */
.card { display: flex; flex-direction: column; }
.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.card:hover .card-img-wrap img { transform: scale(1.04); }
.card-category {
  display: inline-block;
  margin-top: 1rem;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-title {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-top: .5rem;
  transition: color var(--trans);
}
.card:hover .card-title { color: var(--gold); }
.card-meta {
  margin-top: .5rem;
  font-size: .75rem;
  color: var(--grey);
}
.card-excerpt {
  margin-top: .75rem;
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--trans);
}
.card-link:hover { color: var(--gold); }
.card-link::after { content: '→'; font-size: .85rem; }

/* Featured card (big) */
.card--featured { grid-column: span 2; }
.card--featured .card-img-wrap { aspect-ratio: 16/9; }
.card--featured .card-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }

@media (max-width: 900px) {
  .articles-grid           { grid-template-columns: 1fr 1fr; }
  .articles-grid--4col     { grid-template-columns: 1fr 1fr; }
  .card--featured          { grid-column: span 1; }
}
@media (max-width: 560px) {
  .articles-grid, .articles-grid--2col, .articles-grid--4col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   LEAD ARTICLE / EDITORIAL FEATURE
═══════════════════════════════════════════════════════════ */
.editorial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.editorial-feature--reverse { direction: rtl; }
.editorial-feature--reverse > * { direction: ltr; }

.editorial-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.editorial-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.editorial-img-wrap:hover img { transform: scale(1.03); }

.editorial-body { display: flex; flex-direction: column; justify-content: center; }
.editorial-body .eyebrow { margin-bottom: .75rem; }
.editorial-body h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
}
.editorial-body p {
  margin-top: 1.25rem;
  font-size: .9375rem;
  color: var(--grey);
  line-height: 1.8;
}
.editorial-body .btn { margin-top: 2rem; align-self: flex-start; }

@media (max-width: 768px) {
  .editorial-feature { grid-template-columns: 1fr; }
  .editorial-feature--reverse { direction: ltr; }
  .editorial-img-wrap { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════════════════════
   QUOTE / PULL-QUOTE BANNER
═══════════════════════════════════════════════════════════ */
.pullquote-section {
  text-align: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.pullquote {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 820px;
  margin-inline: auto;
  color: var(--black);
}
.pullquote::before { content: '\201C'; }
.pullquote::after  { content: '\201D'; }
.pullquote-attr {
  margin-top: 1.25rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.section--dark .pullquote { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   CATEGORY PILLS / TAG CLOUD
═══════════════════════════════════════════════════════════ */
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--lgrey);
  border-bottom: 1px solid var(--lgrey);
  margin-bottom: 2.5rem;
}
.cat-pill {
  display: inline-flex;
  padding: .375rem 1rem;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--lgrey);
  color: var(--black);
  background: transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   NUMBERS / STATS
═══════════════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-block: 3rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin-top: .5rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,242,236,.5);
}
@media (max-width: 600px) { .stats-row { grid-template-columns: repeat(2,1fr); } }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER BANNER
═══════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--black);
  color: var(--cream);
  padding-block: clamp(3rem, 7vw, 6rem);
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
}
.newsletter-section p {
  margin-top: .75rem;
  font-size: .9rem;
  color: rgba(245,242,236,.55);
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
  max-width: 500px;
  margin-inline: auto;
  flex-wrap: wrap;
  gap: .75rem;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--trans);
}
.newsletter-form input::placeholder { color: rgba(245,242,236,.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: .875rem 1.75rem; }

/* ═══════════════════════════════════════════════════════════
   ARTICLE / POST PAGE
═══════════════════════════════════════════════════════════ */
.post-hero { height: clamp(340px, 55vw, 560px); overflow: hidden; position: relative; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,26,.45));
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.post-header { margin-bottom: 2rem; }
.post-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-top: .75rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--grey);
  flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: .3rem; }
.post-body {
  font-size: 1rem;
  line-height: 1.85;
  color: #2e2e2e;
}
.post-body p { margin-bottom: 1.5rem; }
.post-body h2 {
  font-family: var(--ff-head);
  font-size: 1.85rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
}
.post-body h3 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 .75rem;
}
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--black);
}
.post-body figure { margin: 2rem 0; }
.post-body figure img { width: 100%; }
.post-body figure figcaption { font-size: .75rem; color: var(--grey); margin-top: .5rem; text-align: center; }

/* Sidebar */
.post-sidebar {}
.sidebar-widget { margin-bottom: 2.5rem; }
.sidebar-widget h4 {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--lgrey);
  margin-bottom: 1.25rem;
}
.sidebar-recent-item {
  display: flex;
  gap: .875rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--lgrey);
}
.sidebar-recent-item:last-child { border: none; margin: 0; padding: 0; }
.sidebar-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-item h5 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: .3rem;
  transition: color var(--trans);
}
.sidebar-recent-item a:hover h5 { color: var(--gold); }
.sidebar-recent-item span { font-size: .7rem; color: var(--grey); }

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-hero {
  background: var(--black);
  color: var(--cream);
  padding: clamp(4rem, 10vw, 9rem) var(--gutter);
  text-align: center;
}
.about-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
}
.about-hero p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(245,242,236,.55);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 400;
}
.team-card .role { font-size: .75rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-top: .25rem; }
.team-card p { font-size: .875rem; color: var(--grey); margin-top: .75rem; line-height: 1.65; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.contact-info p { margin-top: 1rem; font-size: .9375rem; color: var(--grey); line-height: 1.75; }
.contact-detail {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail-item { font-size: .875rem; color: var(--grey); }
.contact-detail-item strong { display: block; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--black); margin-bottom: .3rem; }
.contact-detail-item a { color: var(--grey); transition: color var(--trans); }
.contact-detail-item a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .875rem 1rem;
  border: 1px solid var(--lgrey);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════════════════════════ */
.policy-header {
  background: var(--black);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3.5rem);
}
.policy-header .eyebrow { color: var(--gold); margin-bottom: .75rem; }
.policy-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}
.policy-header p { margin-top: .75rem; font-size: .875rem; color: rgba(245,242,236,.5); }

.policy-body {
  max-width: 820px;
  margin-inline: auto;
  padding: 3rem var(--gutter) 5rem;
}
.policy-body h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--lgrey);
}
.policy-body h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 500; margin: 1.75rem 0 .5rem; }
.policy-body p { font-size: .9375rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 1.25rem; }
.policy-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25rem; }
.policy-body ul li { font-size: .9375rem; line-height: 1.75; color: #3a3a3a; margin-bottom: .4rem; }
.policy-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.policy-body a:hover { opacity: .75; }
.policy-toc {
  background: var(--lgrey);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.policy-toc h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); margin-bottom: .75rem; }
.policy-toc ol { padding-left: 1.25rem; list-style: decimal; }
.policy-toc ol li { font-size: .875rem; line-height: 1.7; color: var(--black); }
.policy-toc ol li a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.policy-toc ol li a:hover { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (interior pages)
═══════════════════════════════════════════════════════════ */
.page-header {
  background: var(--black);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}
.page-header .eyebrow { color: var(--gold); margin-bottom: .75rem; }
.page-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
}
.page-header p { max-width: 580px; margin: 1rem auto 0; font-size: .9375rem; color: rgba(245,242,236,.55); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-block: 1rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--lgrey);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--grey); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--lgrey); }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--lgrey);
  color: var(--black);
  background: transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.page-btn:hover, .page-btn.active { background: var(--black); color: var(--cream); border-color: var(--black); }

/* ═══════════════════════════════════════════════════════════
   BACK-TO-TOP
═══════════════════════════════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 800;
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════ */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--black);
  color: var(--cream);
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1000;
  border-top: 2px solid var(--gold);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookieBanner.show { transform: translateY(0); }
#cookieBanner p { font-size: .8125rem; color: rgba(245,242,236,.7); max-width: 700px; line-height: 1.55; }
#cookieBanner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   MISC HELPERS
═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  display: inline-block;
  padding: .3rem .875rem;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--lgrey);
  color: var(--black);
  transition: background var(--trans), color var(--trans);
}
.tag:hover { background: var(--gold); color: var(--black); }

/* Success message */
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  font-size: .875rem;
  color: #2e7d32;
  margin-top: .75rem;
}
.form-success.show { display: block; }
