/* Sun City Luxury Financial Group — Art Deco gilded theme */

:root {
  --bg: #0a0806;
  --bg-panel: #14100a;
  --bg-elev: #1c160d;
  --hairline: rgba(212, 166, 74, 0.22);
  --hairline-strong: rgba(212, 166, 74, 0.5);
  --ink: #f5ecd7;
  --ink-mute: #a89878;
  --ink-soft: #6b5f47;

  /* Gold tones — overridden by Tweaks */
  --gold-deep: #8a6418;
  --gold: #d4a64a;
  --gold-bright: #f1d27a;
  --gold-glow: rgba(241, 210, 122, 0.18);

  --serif-display: 'Cinzel', 'Trajan Pro', 'Cormorant Garamond', serif;
  --serif-body: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Density — overridden by Tweaks */
  --pad-section-y: 90px;
  --pad-block: 32px;
  --gap: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(212, 166, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(212, 166, 74, 0.04), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

/* Subtle film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0 0.4  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }

/* ───────── Typography ───────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(180deg, #fff8e0 0%, var(--gold-bright) 35%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px var(--gold-glow);
}

h1.display { font-size: clamp(42px, 6.6vw, 96px); }
h2.display { font-size: clamp(34px, 4vw, 60px); }
h3.display { font-size: clamp(22px, 1.8vw, 30px); letter-spacing: 0.06em; }

.subhead {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink);
  max-width: 60ch;
  line-height: 1.5;
}

p { margin: 0 0 1em; }

/* ───────── Layout ───────── */

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

section {
  position: relative;
  padding: var(--pad-section-y) 0;
  z-index: 2;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head .subhead { margin: 22px auto 0; }

/* ───────── Ornaments ───────── */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  width: fit-content;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: clamp(40px, 8vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg { width: 14px; height: 14px; flex: none; }

.deco-frame {
  position: relative;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(28, 22, 13, 0.7) 0%, rgba(20, 16, 10, 0.7) 100%);
}
.deco-frame::before, .deco-frame::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.deco-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.deco-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.corner-tl, .corner-tr, .corner-bl, .corner-br {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.corner-tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corner-tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.corner-bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.corner-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ───────── Buttons ───────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 166, 74, 0.25);
  pointer-events: none;
  transition: inset 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0806;
  box-shadow: 0 0 40px var(--gold-glow), inset 0 0 20px rgba(255,255,255,0.2);
}
.btn:hover::before { inset: 6px; border-color: rgba(10,8,6,0.3); }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #0a0806;
  border-color: var(--gold-bright);
}
.btn--primary::before { border-color: rgba(10,8,6,0.25); }
.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 50px rgba(241, 210, 122, 0.45);
}

.btn--ghost { padding: 16px 24px; }

/* ───────── Nav ───────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 8, 6, 0.78);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 0 14px var(--gold-glow));
  display: block;
}
.nav-logo-text {
  font-family: var(--serif-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--gold-bright); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ───────── Hero ───────── */

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 90px;
}

.hero-rays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.3;
}
.hero-rays svg { width: 1400px; max-width: 140vw; height: auto; }

.hero-logo {
  width: clamp(180px, 22vw, 280px);
  margin: 0 auto -10px;
  filter: drop-shadow(0 0 60px rgba(241, 210, 122, 0.4));
  animation: shimmer 6s ease-in-out infinite;
  display: block;
}

@keyframes shimmer {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(241, 210, 122, 0.25)); }
  50% { filter: drop-shadow(0 0 70px rgba(241, 210, 122, 0.45)); }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-meta .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

/* Hero variant: typographic */
.hero--typo .hero-wordmark {
  font-family: var(--serif-display);
  font-size: clamp(60px, 11vw, 180px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff8e0 0%, var(--gold-bright) 30%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px var(--gold-glow);
}
.hero--typo .hero-sub-mark {
  font-family: var(--serif-display);
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 10px;
}

/* Hero variant: image */
.hero--image .hero-bg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.7) 0%, rgba(10,8,6,0.95) 100%),
              repeating-linear-gradient(45deg, #1c160d 0 4px, #14100a 4px 8px);
  z-index: 0;
}
.hero--image .hero-bg-img::after {
  content: "ORLANDO SKYLINE / EVENING";
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.hero--image .hero-content { position: relative; z-index: 2; }

/* ───────── Products ───────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

@media (max-width: 1180px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.product {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--pad-block);
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.product:hover {
  background: linear-gradient(180deg, rgba(212,166,74,0.06), transparent);
}

.product-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.product-icon::before, .product-icon::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
}
.product-icon::before { top: -1px; left: -1px; border-right:0; border-bottom:0; }
.product-icon::after { bottom: -1px; right: -1px; border-left:0; border-top:0; }
.product-icon svg { width: 28px; height: 28px; color: var(--gold-bright); }

.product-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product h3 {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
}
.product p {
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 20px;
  flex: 1;
}
.product-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
}
.product-list li {
  padding: 8px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
}
.product-list li span:last-child { color: var(--gold-bright); font-family: var(--serif-body); font-style: italic; }

@media (max-width: 880px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ───────── About ───────── */

.about {
  background: linear-gradient(180deg, transparent, rgba(20,16,10,0.5), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(241,210,122,0.15), transparent 60%),
    repeating-linear-gradient(135deg, #1c160d 0 6px, #14100a 6px 12px);
}
.about-img::after {
  content: "AGENT TEAM PORTRAIT / ORLANDO HQ";
  position: absolute; bottom: 16px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}
.about-img-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

.about p { color: var(--ink); font-size: 20px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  text-align: center;
  padding: 28px 12px;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif-display);
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── Executives ───────── */

.executives {
  margin-top: 0;
}

.execs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.exec-card {
  position: relative;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(28,22,13,0.5), rgba(20,16,10,0.5));
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s;
}
.exec-card:hover {
  border-color: var(--hairline-strong);
  background: linear-gradient(180deg, rgba(28,22,13,0.7), rgba(20,16,10,0.6));
}

.exec-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gold);
  margin-bottom: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(241,210,122,0.18), transparent 60%),
    repeating-linear-gradient(135deg, #1c160d 0 6px, #14100a 6px 12px);
}
.exec-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.exec-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-size: 44px;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}

.exec-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.exec-name {
  font-family: var(--serif-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin: 0 0 14px;
  line-height: 1.2;
}
.exec-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exec-bio {
  color: var(--ink);
  opacity: 0.78;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
  flex: 1;
}

.exec-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-top: auto;
}
.exec-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0;
  transition: color 0.2s;
  word-break: break-all;
}
.exec-contact a:hover { color: var(--gold-bright); }
.exec-contact svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--gold);
}

@media (max-width: 1180px) {
  .execs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .execs-grid { grid-template-columns: 1fr; }
}

/* ───────── Carriers strip ───────── */

.carriers {
  padding: 60px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(20,16,10,0.4);
}
.carriers-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.carriers-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-family: var(--serif-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.carriers-list span {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.carriers-list span:hover { opacity: 1; }
.carriers-foot {
  text-align: center;
  margin-top: 22px;
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
}

/* ───────── Agents (recruiting) ───────── */

.agents {
  position: relative;
}
.agents-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.agents-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(28,22,13,0.5), rgba(20,16,10,0.5));
}
.pillar {
  padding: 32px;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.pillar:last-child { border-bottom: 0; }
.pillar-num {
  font-family: var(--serif-display);
  font-size: 36px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.pillar h4 {
  font-family: var(--serif-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 8px;
}
.pillar p {
  color: var(--ink);
  opacity: 0.78;
  font-size: 17px;
  margin: 0;
}

@media (max-width: 880px) {
  .agents-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar { grid-template-columns: 1fr; gap: 8px; }
}

/* ───────── Contact ───────── */

.contact {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,166,74,0.10), transparent 60%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.contact-card {
  padding: 36px 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover { background: rgba(212,166,74,0.05); }
.contact-card-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--gold-bright); }
.contact-card-lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.contact-card-val {
  font-family: var(--serif-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 18px;
  line-height: 1.3;
}
.contact-card-btn {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-top: auto;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-cta {
  margin-top: 80px;
  padding: 60px;
  text-align: center;
  position: relative;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(28,22,13,0.6), rgba(20,16,10,0.4));
}
.contact-cta h3 {
  font-family: var(--serif-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff8e0, var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 16px;
}
.contact-cta p {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink);
  font-size: 19px;
  max-width: 56ch;
  margin: 0 auto 32px;
}

/* ───────── Footer ───────── */

footer {
  border-top: 1px solid var(--hairline);
  padding: 60px 0 40px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}
.footer-logo img { height: 130px; filter: drop-shadow(0 0 24px var(--gold-glow)); }
.footer-blurb {
  margin-top: 20px;
  color: var(--ink-mute);
  font-size: 16px;
  max-width: 36ch;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--serif-body);
  color: var(--ink-mute);
  font-size: 16px;
  padding: 4px 0;
  margin: 0;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── Density modes ───────── */

body.density--airy {
  --pad-section-y: 120px;
  --pad-block: 44px;
  --gap: 32px;
}
body.density--compact {
  --pad-section-y: 60px;
  --pad-block: 24px;
  --gap: 20px;
}
body.density--compact .product { min-height: 380px; }
body.density--compact .hero { min-height: 78vh; padding: 60px 0 80px; }
body.density--compact .section-head { margin-bottom: 44px; }
body.density--compact .stats-row .stat { padding: 18px 12px; }
body.density--compact .contact-cta { padding: 40px; margin-top: 50px; }
