/* ─────────────────────────────────────────────────────────────────
   RADKE REAL ESTATE TEAM — style.css
   Design: Dark editorial luxury | Playfair Display + Josefin Sans
   ───────────────────────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --obsidian:    #0f0f0f;
  --charcoal:    #1a1a1a;
  --graphite:    #2e2e2e;
  --warm-white:  #faf8f4;
  --cream:       #f3ede3;
  --ivory:       #ede5d8;
  --gold:        #c9a96e;
  --gold-light:  #dfc08a;
  --gold-dark:   #a07840;
  --text-dark:   #1a1817;
  --text-mid:    #4a4540;
  --text-light:  #8a8278;
  --text-cream:  #f0e8d8;
  --border:      rgba(180,165,140,0.2);
  --border-dark: rgba(255,255,255,0.08);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-refined: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Josefin Sans', system-ui, sans-serif;

  --nav-h:    72px;
  --max-w:    1280px;
  --pad-x:    clamp(1.25rem, 5vw, 4rem);
}

/* ── RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

.hidden { display: none !important; }

/* ── UTILITY ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold-dark); }

.section-header { margin-bottom: 3rem; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-dark {
  background: var(--obsidian);
  color: #fff;
  border-color: var(--obsidian);
}
.btn-dark:hover { background: var(--graphite); border-color: var(--graphite); }

.btn-light {
  background: var(--warm-white);
  color: var(--obsidian);
  border-color: var(--warm-white);
}
.btn-light:hover { background: var(--cream); border-color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline:hover { background: var(--text-dark); color: var(--warm-white); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.8rem; }
.btn-full { width: 100%; text-align: center; }


/* ── NAV ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--obsidian);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-radke {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.logo-divider { color: var(--gold); font-weight: 300; }
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--obsidian);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 1.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--border-dark);
}
.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dark);
}
.nav-cta-mobile {
  color: var(--gold-light) !important;
  border-bottom: none !important;
  margin-top: 0.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}


/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  /* Gradient stand-in until real photos added */
  background:
    linear-gradient(160deg,
      #1a1510 0%,
      #2a2018 30%,
      #1e1812 60%,
      #0f0e0c 100%
    );
}
/* When you add a real photo: */
/* .hero-photo-placeholder { background: url('images/hero.jpg') center/cover; } */

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-family: var(--font-refined);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


/* ── STATS ───────────────────────────────────────────────────────── */
.stats-section {
  background: var(--obsidian);
  padding: 5rem 0;
}

.stats-section .section-eyebrow { color: var(--gold); margin-bottom: 2.5rem; text-align: center; }

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border-dark); }
}


/* ── WHO WE HELP ─────────────────────────────────────────────────── */
.who-section {
  background: var(--warm-white);
  padding: 7rem 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.who-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-dark);
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.who-card--dark {
  background: var(--obsidian);
  color: #fff;
  border-color: var(--graphite);
}
.who-card--dark:hover { border-color: var(--gold); }

.who-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}
.who-card--dark .who-card-icon { color: var(--gold); }

.who-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.who-card p {
  font-family: var(--font-refined);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.5rem;
}
.who-card--dark p { color: rgba(255,255,255,0.6); }

.card-link {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: letter-spacing 0.2s;
}
.who-card:hover .card-link { letter-spacing: 0.18em; }
.who-card--dark .card-link { color: var(--gold-light); }

@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }


/* ── FEATURED LISTINGS ───────────────────────────────────────────── */
.listings-section {
  background: var(--cream);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}

.listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.listings-header .section-title { margin-bottom: 0; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.listing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.listing-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.listing-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.listing-photo--placeholder {
  background: linear-gradient(135deg, #2a2018 0%, #3d3020 50%, #2a2018 100%);
}
.listing-photo--2 {
  background: linear-gradient(135deg, #1e2a2a 0%, #263535 50%, #1e2a2a 100%);
}
.listing-photo--3 {
  background: linear-gradient(135deg, #251e2a 0%, #352835 50%, #251e2a 100%);
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: var(--gold);
  color: var(--obsidian);
}
.listing-badge--sold {
  background: var(--graphite);
  color: rgba(255,255,255,0.8);
}

.listing-body { padding: 1.5rem; }

.listing-address {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.listing-area {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.listing-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.listing-specs {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.listing-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}
.listing-specs svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 900px) { .listings-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .listings-grid { grid-template-columns: 1fr; }
  .listings-header { flex-direction: column; align-items: flex-start; }
}


/* ── TEAM INTRO ──────────────────────────────────────────────────── */
.team-section {
  background: var(--warm-white);
  padding: 0;
  overflow: hidden;
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.team-photo-col {
  position: relative;
  overflow: hidden;
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, #1e1a14 0%, #2d2418 50%, #1a1510 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
/* When you have a real photo: */
/* .team-photo-placeholder { background: url('images/team.jpg') center/cover; } */

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.team-photo-caption {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.team-content-col {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.team-body {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.team-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.team-contact-card strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.team-contact-card a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  transition: color 0.2s;
  text-decoration: none;
}
.team-contact-card a:hover { color: var(--gold-dark); }

@media (max-width: 800px) {
  .team-inner { grid-template-columns: 1fr; }
  .team-photo-placeholder { min-height: 320px; }
  .team-contacts { grid-template-columns: 1fr; }
}


/* ── HOME EVALUATION CTA ─────────────────────────────────────────── */
.eval-cta-section {
  background: var(--charcoal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.eval-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.eval-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.eval-cta-text {
  flex: 1;
  min-width: 280px;
}
.eval-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.eval-cta-title em { font-style: italic; color: var(--gold-light); }
.eval-cta-text p {
  font-family: var(--font-refined);
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.65;
}

.eval-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}
.eval-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}


/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-section {
  background: var(--warm-white);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-text .section-title { margin-bottom: 1rem; }
.contact-text > p {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.contact-details p {
  font-family: var(--font-refined);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.contact-details a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-details a:hover { border-color: var(--gold-dark); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-refined);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(160,120,64,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-fine-print {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer-logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.3rem;
}
.footer-brokerage {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
}


/* ── DROPDOWN NAV (site-wide) ────────────────────────────────────── */
.nav-item { position: relative; }
.nav-item > .nav-link-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-cream); text-decoration: none;
  padding: 0; background: none; border: none; outline: none;
}
.nav-item > .nav-link-trigger::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-2px); transition: transform 0.2s ease; margin-left: 2px;
}
.nav-item.open > .nav-link-trigger::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%); min-width: 200px;
  background: var(--obsidian); border: 1px solid rgba(201,169,110,0.2);
  border-top: 2px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  z-index: 200; padding: 8px 0;
}
.nav-item.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 9px 20px;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-cream); text-decoration: none; white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,169,110,0.06); }

/* Mobile dropdowns */
#nav-mobile .nav-item { width: 100%; }
#nav-mobile .nav-link-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.6rem 0;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-cream); background: none; border: none; cursor: pointer;
}
#nav-mobile .nav-dropdown {
  position: static; transform: none; box-shadow: none;
  border: none; border-left: 2px solid var(--gold);
  background: transparent; padding: 4px 0 4px 14px; margin-bottom: 4px;
}
#nav-mobile .nav-item.open .nav-dropdown { display: block; }
#nav-mobile .nav-dropdown a { padding: 6px 0; font-size: 0.68rem; letter-spacing: 0.14em; }
