/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img, svg { display: block; }

/* ═══════════════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════════════ */
:root {
  --graphite:     #1A1A1A;
  --graphite-mid: #242424;
  --near-black:   #0E0E0E;
  --soft-white:   #F5F3EF;
  --off-white:    #EFEDE8;
  --white:        #FFFFFF;
  --gold:         #C9A84C;
  --gold-deep:    #A8882D;
  --gold-faint:   rgba(201,168,76,.10);
  --stone:        #8A8A8A;
  --stone-light:  #C4C0BA;
  --sage:         #7A8C6E;
  --font:         'Avenir Next','Avenir','Nunito Sans',sans-serif;
  --ease-out:     cubic-bezier(.22,1,.36,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
}

body {
  font-family: var(--font);
  background: var(--soft-white);
  color: var(--graphite);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal][data-d="1"] { transition-delay: .10s; }
[data-reveal][data-d="2"] { transition-delay: .20s; }
[data-reveal][data-d="3"] { transition-delay: .30s; }
[data-reveal][data-d="4"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
  .hero-bg { animation: none !important; }
}

/* ═══════════════════════════════════════════
   HEADER  — compact
═══════════════════════════════════════════ */
.site-header {
  background: var(--graphite);
  padding: 22px 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% -10%, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.logo-img {
  height: 108px;
  width: auto;
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   BRAND MESSAGE TICKER
═══════════════════════════════════════════ */
.ticker {
  background: var(--near-black);
  border-top: 1px solid rgba(201,168,76,.20);
  border-bottom: 1px solid rgba(201,168,76,.20);
  overflow: hidden;
  padding: 13px 0;
  opacity: 0;
  animation: fadeIn .5s ease 1.1s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,243,239,.55);
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HERO SECTION — text overlay on image
═══════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 310px;
  max-height: 541px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroBgZoom 10s ease-out forwards;
}

@keyframes heroBgZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10,10,10,.92) 0%,
      rgba(10,10,10,.72) 38%,
      rgba(10,10,10,.22) 62%,
      transparent 100%
    );
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.35) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

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

.hero-caption {
      position: absolute;
      left: 40px;
      right: 40px;
      bottom: 26px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 14px;
      pointer-events: none;
    }

    .hero-caption-rule {
      width: 32px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .hero-caption-text {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .20em;
      text-transform: uppercase;
      color: var(--soft-white);
      text-shadow: 0 1px 6px rgba(0,0,0,.55);
    }

    @media (max-width: 768px) {
      .hero-caption { left: 24px; right: 24px; bottom: 18px; }
      .hero-caption-text { font-size: 9px; }
    }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .5s var(--ease-out) .25s forwards;
}

.hero-eyebrow-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
  animation: lineGrow .6s var(--ease-out) .45s forwards;
}

@keyframes lineGrow {
  to { width: 36px; }
}

.hero-eyebrow-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 200;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft-white);
  line-height: 1.10;
  margin-bottom: 26px;
}

.hl-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .65s var(--ease-out) forwards;
}

.hl-line:nth-child(1) { animation-delay: .42s; }
.hl-line:nth-child(2) { animation-delay: .56s; }
.hl-line:nth-child(3) { animation-delay: .70s; }

.hero-amp { color: var(--gold); }

.hero-sub {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(245,243,239,.50);
  max-width: 400px;
  opacity: 0;
  animation: fadeUp .65s var(--ease-out) .88s forwards;
}

/* ═══════════════════════════════════════════
   SECTION SCAFFOLDING
═══════════════════════════════════════════ */
.section-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.section-eyebrow span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.10);
}

.section-heading {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 14px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 480px;
}




/* ═══════════════════════════════════════════
   BROCHURE SECTION
═══════════════════════════════════════════ */
.brochure-section {
  padding: 30px 0 30px;
}

.brochure-section-head {
  margin-bottom: 32px;
}

/* ── Featured brochure card ── */
.brochure-featured {
  position: relative;
  background: var(--graphite);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  margin-bottom: 20px;
  cursor: default;
}

.brochure-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease-out);
  z-index: 3;
}

.brochure-featured:hover::before { transform: scaleX(1); }

.featured-body {
  padding: 80px 72px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.feat-edition {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.feat-title {
  font-size: 42px;
  font-weight: 200;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--soft-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.feat-subtitle {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
}

.feat-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245,243,239,.55);
  max-width: 440px;
}

.featured-meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.feat-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feat-meta-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--stone);
}

.feat-meta-value {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,243,239,.70);
}

.featured-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Featured visual panel */
.featured-visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Catalog lifestyle images ── */
.catalog-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.catalog-images img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* ── Collection brochure grid ── */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brochure-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  padding: 44px 36px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.brochure-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .45s var(--ease-out);
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.09);
}

.brochure-card:hover::before { transform: scaleY(1); }

.card-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.card-title {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.25;
  margin-bottom: 14px;
}

.card-divider {
  width: 32px;
  height: 1px;
  background: var(--stone-light);
  margin-bottom: 16px;
  transition: width .4s var(--ease-out), background .3s;
}

.brochure-card:hover .card-divider {
  width: 52px;
  background: var(--gold);
}

.card-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--stone);
  flex: 1;
  margin-bottom: 32px;
}

.card-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--graphite);
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .3s;
  white-space: nowrap;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.btn-primary:hover::after { transform: translateX(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(201,168,76,.40);
  color: rgba(245,243,239,.70);
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,.08);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(0); }

.btn-card-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: var(--graphite);
  color: var(--soft-white);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: color .3s;
}

.btn-card-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.btn-card-primary:hover::after { transform: translateX(0); }
.btn-card-primary:hover { color: var(--graphite); }

.btn-card-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: 1px solid rgba(26,26,26,.20);
  color: var(--stone);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: color .3s, border-color .3s;
}

.btn-card-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.05);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}

.btn-card-ghost:hover { border-color: var(--graphite); color: var(--graphite); }
.btn-card-ghost:hover::after { transform: translateX(0); }

.btn-arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
  position: relative;
  z-index: 1;
}

a:hover .btn-arrow,
button:hover .btn-arrow { transform: translateX(3px); }

.btn-primary > *,
.btn-ghost > *,
.btn-card-primary > *,
.btn-card-ghost > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   PRODUCT DIVISIONS (Phase II — hidden)
═══════════════════════════════════════════ */
.product-strip { display: none; }

/* ═══════════════════════════════════════════
       CATALOG LIFESTYLE IMAGES
    ═══════════════════════════════════════════ */
    .catalog-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .catalog-figure {
      position: relative;
      overflow: hidden;
    }

    .catalog-figure img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      display: block;
    }

    /* Scrim + caption on lifestyle images */
    .catalog-figure::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.50) 100%);
      pointer-events: none;
    }

    .catalog-caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 20px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .catalog-caption-rule {
      width: 24px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .catalog-caption-text {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--soft-white);
      text-shadow: 0 1px 6px rgba(0,0,0,.55);
    }

    @media (max-width: 768px) {
      .catalog-images { grid-template-columns: 1fr; }
      .catalog-figure img { height: 300px; }
    }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--near-black);
}

.footer-top {
  max-width: 1220px;
  margin: 0 auto;
  padding: 56px 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand-name {
  display: block;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-brand-tag {
  display: block;
  font-size: 7.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: #ffffff;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.footer-partners a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(201,168,76,.30);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.footer-partners a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Social — hidden Phase I */
.footer-social { display: none; }

/* ═══════════════════════════════════════════
   FOOTER CONNECT CARDS
═══════════════════════════════════════════ */
.fcc-card {
  position: relative;
}

.fcc-icon-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 26px;
  transition: border-color .4s;
  flex-shrink: 0;
}

.fcc-card:hover .fcc-icon-ring {
  border-color: rgba(201,168,76,.65);
}

.fcc-icon-ring svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

.fcc-pulse {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.18);
  animation: fccPulse 3.2s ease-out infinite;
  pointer-events: none;
}

.fcc-pulse-2 { animation-delay: 1.6s; }

@keyframes fccPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(2.6); opacity: 0;   }
}

.fcc-float svg {
  animation: fccFloat 3.8s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes fccFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-7px); }
}

.fcc-eyebrow {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: .80;
}

.fcc-title {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .04em;
  color: #ffffff;
  line-height: 1.55;
  margin-bottom: 28px;
}

.fcc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .35s var(--ease-out);
}

.fcc-link:hover { gap: 16px; }

.fcc-link-arrow {
  display: inline-block;
  transition: transform .35s var(--ease-out);
}

.fcc-link:hover .fcc-link-arrow { transform: translateX(4px); }

/* Footer bottom */
.footer-bottom {
  max-width: 1220px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 10.5px;
  color: #ffffff;
  letter-spacing: .05em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-size: 10.5px;
  color: #ffffff;
  transition: color .2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   PDF MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

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

.modal-box {
  width: min(92vw, 1060px);
  height: min(88vh, 820px);
  background: var(--graphite);
  display: flex;
  flex-direction: column;
  transform: scale(.96) translateY(12px);
  transition: transform .4s var(--ease-out);
  overflow: hidden;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}

.modal-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,243,239,.60);
}

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

.modal-download {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}

.modal-download:hover { opacity: .75; }

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 22px;
  line-height: 1;
  transition: color .2s;
}

.modal-close:hover { color: var(--soft-white); }

.modal-frame-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--graphite-mid);
}

.modal-placeholder svg {
  width: 52px;
  height: 52px;
  stroke: var(--stone);
  opacity: .25;
  margin-bottom: 18px;
}

.modal-placeholder .ph-title {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,243,239,.40);
  margin-bottom: 6px;
}

.modal-placeholder .ph-sub {
  font-size: 11px;
  color: #444;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-section { height: 44vh; min-height: 271px; max-height: 407px; }
}

@media (max-width: 1100px) {
  .brochure-featured { grid-template-columns: 1fr; }
  .featured-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 900px) {
  .catalog-images { grid-template-columns: 1fr; }
  .catalog-images img { height: 300px; }
}

@media (max-width: 768px) {
  .section-wrap { padding: 0 24px; }
  .section-heading { font-size: 28px; }
  .brochure-section { padding: 36px 0 48px; }
  .brochure-grid { grid-template-columns: 1fr; }
  .featured-body { padding: 44px 32px; }
  .feat-title { font-size: 30px; }
  .hero-section { height: 36vh; min-height: 213px; max-height: 310px; }
  .hero-inner { padding: 0 24px; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,.80) 0%,
      rgba(10,10,10,.55) 60%,
      transparent 100%
    );
  }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 36px; gap: 36px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-section { height: 32vh; min-height: 174px; }
  .logo-img { height: 70px; }
  .feat-title { font-size: 26px; }
  .featured-cta { flex-direction: column; }
  .card-cta { flex-direction: column; }
}

  /* ═══════════════════════════════════════════
     RESOURCES SECTION
  ═══════════════════════════════════════════ */
  .resources-section {
    background: var(--off-white);
    border-top: 1px solid rgba(0,0,0,.06);
  }

  .res-header {
    max-width: 1220px;
    margin: 0 auto;
    padding: 88px 40px 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
  }

  .res-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .res-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
  }

  .res-heading {
    font-size: 44px;
    font-weight: 200;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--graphite);
    line-height: 1.05;
  }

  .res-sub {
    max-width: 380px;
    padding-bottom: 6px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.90;
    color: var(--stone);
  }

  /* ── Card grid ── */
  .res-grid {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .res-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,.08);
    position: relative;
    background: var(--off-white);
    transition: background .4s, transform .5s var(--ease-out);
  }

  .res-card:hover {
    background: var(--graphite);
    transform: translateY(-6px);
    z-index: 3;
  }

  .res-icon-panel,
  .res-body { overflow: hidden; }

  /* Icon panel */
  .res-icon-panel {
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s var(--ease-out);
    background: linear-gradient(180deg, #1c1c1c 0%, #111 100%);
  }

  .res-icon-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 45%, rgba(201,168,76,.14) 0%, transparent 65%);
    pointer-events: none;
  }

  .res-card:hover .res-icon-panel { transform: scale(1.03); }

  /* Icon ring — echoes the site's footer connect-card treatment */
  .res-icon-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: border-color .4s, transform .5s var(--ease-out);
  }

  .res-card:hover .res-icon-ring {
    border-color: rgba(201,168,76,.65);
    transform: scale(1.06);
  }

  .res-pulse {
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.20);
    animation: fccPulse 3.2s ease-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
  }

  .res-card:hover .res-pulse { opacity: 1; }

  .res-pulse-2 { animation-delay: 1.6s; }

  .res-icon-ring svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    position: relative;
    z-index: 2;
  }

  .res-num-badge {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .20em;
    color: rgba(255,255,255,.30);
    z-index: 2;
  }

  .res-ghost-num {
    position: absolute;
    bottom: -10px;
    right: 16px;
    font-size: 90px;
    font-weight: 100;
    line-height: 1;
    color: var(--soft-white);
    opacity: .055;
    pointer-events: none;
    user-select: none;
    transition: opacity .5s, transform .55s var(--ease-out);
  }

  .res-card:hover .res-ghost-num {
    opacity: .10;
    transform: translateY(-6px);
  }

  /* Gold sweep bottom edge of icon panel on hover */
  .res-sweep {
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease-out);
  }

  .res-card:hover .res-sweep { transform: scaleX(1); }

  /* Card body */
  .res-body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,.07);
    transition: border-color .4s;
  }

  .res-card:hover .res-body { border-color: rgba(201,168,76,.20); }

  .res-cat {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
  }

  .res-title {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--graphite);
    line-height: 1.35;
    margin-bottom: 14px;
    transition: color .35s;
  }

  .res-card:hover .res-title { color: var(--soft-white); }

  .res-title-rule {
    width: 28px;
    height: 1px;
    background: rgba(0,0,0,.15);
    margin-bottom: 16px;
    transition: width .45s var(--ease-out), background .35s;
  }

  .res-card:hover .res-title-rule { width: 48px; background: var(--gold); }

  .res-desc {
    font-size: 12px;
    line-height: 1.85;
    color: var(--stone);
    flex: 1;
    margin-bottom: 24px;
    transition: color .35s;
  }

  .res-card:hover .res-desc { color: rgba(245,243,239,.50); }

  /* CTA row */
  .res-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .res-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,26,26,.35);
    transition: color .35s, gap .35s var(--ease-out);
  }

  .res-card:hover .res-view { color: var(--gold); gap: 14px; }

  .res-view-arrow {
    display: inline-block;
    transition: transform .35s var(--ease-out);
  }

  .res-card:hover .res-view-arrow { transform: translateX(4px); }

  .res-download {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    color: rgba(26,26,26,.40);
    flex-shrink: 0;
    transition: border-color .3s, color .3s;
  }

  .res-download svg { width: 13px; height: 13px; }

  .res-download:hover { border-color: var(--gold); color: var(--gold); }

  .res-card:hover .res-download { border-color: rgba(255,255,255,.15); color: rgba(245,243,239,.55); }

  /* ═══════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════ */
  @media (max-width: 760px) {
    .res-grid { grid-template-columns: 1fr 1fr; }
    .res-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .res-heading { font-size: 36px; }
    .res-sub { max-width: 100%; }
  }

  @media (max-width: 560px) {
    .res-header { padding: 60px 24px 44px; }
    .res-grid { padding: 0 24px 72px; grid-template-columns: 1fr; }
    .res-heading { font-size: 28px; }
  }