/* ============================================================
   ELIZABETHTON DEPOT STORAGE — Design tokens & styles
   ============================================================ */

:root {
  /* ---------- Color ---------- */
  --burgundy:        #6F2E32;  /* primary: logo, buttons, headings, CTAs */
  --burgundy-deep:   #5A2428;  /* primary hover/active */
  --depot-red:       #A65A48;  /* accent: divider lines, frames, labels */
  --depot-red-soft:  #C6816F;  /* accent on dark */
  --cream:           #F3EBDD;  /* primary background panels */
  --cream-deep:      #E5D9C1;  /* card sub-surface, deeper cream */
  --paper:           #FAF7F0;  /* page background */
  --gray:            #B7B4AA;  /* neutral / secondary borders */
  --gray-line:       #DCD7C9;  /* hairline borders, dividers */
  --sage:            #7F9186;  /* secondary accent: icons, small marks */
  --sage-deep:       #5F7269;
  --ink:             #252220;  /* body copy, footer text */
  --ink-deep:        #191513;  /* dark contrast: footer bg, hover states */

  /* ---------- Type ---------- */
  --font-display: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ---------- Spacing scale (4px base) ---------- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* ---------- Radii — architectural, not pill ---------- */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius:    5px;
  --radius-md: 8px;

  /* ---------- Shadows — restrained ink offsets ---------- */
  --shadow-line: 0 1px 0 var(--gray-line);
  --shadow-sm:   0 1px 2px rgba(37, 34, 32, 0.05),
                 0 2px 6px rgba(37, 34, 32, 0.04);
  --shadow-md:   0 2px 4px rgba(37, 34, 32, 0.05),
                 0 12px 28px rgba(37, 34, 32, 0.08);
  --shadow-lg:   0 4px 8px rgba(37, 34, 32, 0.06),
                 0 24px 56px rgba(37, 34, 32, 0.14);

  /* ---------- Layout ---------- */
  --container:        1160px;
  --container-narrow: 920px;
  --header-h:         78px;
}

/* ============================================================
   Reset / base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Very faint depot-color atmosphere on the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(60% 40% at 12% 0%,  rgba(111, 46, 50, 0.025), transparent 70%),
    radial-gradient(60% 40% at 92% 100%, rgba(127, 145, 134, 0.030), transparent 70%);
}

img { max-width: 100%; display: block; }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-4);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: 0.95rem; font-weight: 600; }

p { margin: 0 0 1em; }

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--burgundy); color: var(--cream); }

/* Eyebrow label — letter-spaced uppercase, depot-red */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--depot-red);
  margin-bottom: var(--space-4);
}

/* Decorative section divider — line + diamond + line */
.rule-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--depot-red);
  margin: var(--space-3) auto var(--space-5);
  width: fit-content;
}
.rule-diamond::before,
.rule-diamond::after {
  content: "";
  height: 1px;
  width: 44px;
  background: currentColor;
  opacity: 0.55;
}
.rule-diamond i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: currentColor;
  transform: rotate(45deg);
  font-style: normal;
}

/* ============================================================
   Layout
   ============================================================ */

.container        { width: 100%; max-width: var(--container);        margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: var(--space-9) 0; }
@media (max-width: 720px) {
  section { padding: 72px 0; }
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-7); }
.section-head h2 { color: var(--burgundy); }
.section-head p  { color: var(--ink); opacity: 0.78; font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--paper);
  --btn-bd: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.btn:hover  { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}
.btn-lg    { padding: 16px 28px; font-size: 0.96rem; }
.btn-block { width: 100%; }

/* Primary — solid burgundy */
.btn-primary:hover { --btn-bg: var(--burgundy-deep); --btn-bd: var(--burgundy-deep); box-shadow: 0 6px 16px rgba(111,46,50,0.25); }

/* Outline — burgundy on cream/paper */
.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--burgundy);
  --btn-bd: var(--burgundy);
}
.btn-outline:hover { --btn-bg: var(--burgundy); --btn-fg: var(--paper); }

/* Ghost on light — neutral, low-emphasis */
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--gray);
}
.btn-ghost:hover { --btn-bd: var(--ink); --btn-bg: var(--cream); }

/* On dark backgrounds (e.g., contact card, footer) */
.btn-on-dark {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: rgba(243, 235, 221, 0.45);
}
.btn-on-dark:hover { --btn-bg: var(--cream); --btn-fg: var(--ink-deep); --btn-bd: var(--cream); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--gray-line);
}
.site-header::after {
  /* second hairline = subtle ledger feel */
  content: "";
  display: block;
  height: 1px;
  background: var(--depot-red);
  opacity: 0.18;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  line-height: 0;            /* keep image flush; no baseline gap */
}
.logo:hover { text-decoration: none; }
.logo-img {
  display: block;
  height: 60px;
  width: 60px;
  transition: transform 0.2s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
  border-radius: var(--radius-xs);
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.main-nav a {
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--burgundy); text-decoration: none; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  padding: 11px 18px;
  font-size: 0.82rem;
}
.header-cta svg { flex: 0 0 auto; }

@media (max-width: 920px) {
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .header-cta .header-cta-num { display: none; }
  .logo-img { height: 52px; width: 52px; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
  overflow: hidden;
}
/* Faint horizontal "ledger" lines */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 51px,
    rgba(127, 145, 134, 0.07) 51px,
    rgba(127, 145, 134, 0.07) 52px
  );
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.15) 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.15) 60%, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 104px 24px 120px;
}

.hero-copy { max-width: 600px; }

.hero-copy h1 {
  color: var(--burgundy);
  margin-bottom: var(--space-5);
}
.hero-copy h1 .h1-line2 {
  display: block;
  color: var(--ink);
}

.hero-lede {
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0 0 var(--space-6);
  max-width: 480px;
}

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

/* Hero plaque — "framed notice" on the right */
.hero-plaque {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-md);
}
.hero-plaque-frame {
  position: relative;
  border: 1px solid var(--depot-red);
  border-radius: var(--radius-sm);
  padding: 30px 28px 28px;
  text-align: center;
}
.hero-plaque-frame::before,
.hero-plaque-frame::after {
  /* corner ornaments — small square brackets */
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--depot-red);
}
.hero-plaque-frame::before { top: -1px; left: -1px;   border-right: 0; border-bottom: 0; }
.hero-plaque-frame::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0;   }

.hero-plaque-logo {
  display: block;
  width: clamp(180px, 22vw, 260px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 4px;
}
.hero-plaque-divider {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 14px auto 16px;
  color: var(--depot-red);
}
.hero-plaque-divider span { height: 1px; width: 28px; background: currentColor; opacity: 0.55; }
.hero-plaque-divider i {
  width: 6px; height: 6px; background: currentColor; transform: rotate(45deg);
  font-style: normal; display: inline-block;
}
.hero-plaque-addr {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.hero-plaque-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-line);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 72px 24px 88px; }
  .hero-plaque { max-width: 420px; }
}

/* ============================================================
   Units
   ============================================================ */

.units { background: var(--paper); }

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.unit-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.unit-card::before {
  /* inner hairline frame */
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--depot-red);
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0.3;
}
.unit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--depot-red);
}
.unit-card > * { position: relative; }

.unit-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--depot-red);
  margin-bottom: 8px;
}
.unit-size {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.unit-sqft {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 22px;
  opacity: 0.78;
}

.unit-visual {
  position: relative;
  height: 132px;
  background: var(--paper);
  border: 1px dashed var(--gray);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  margin-bottom: 22px;
  overflow: hidden;
}
.unit-visual-label {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.unit-box {
  border-radius: 2px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.10);
  border: 1px solid currentColor;
}
.unit-box-sm { width: 34%; height: 52%; background: var(--sage); color: var(--sage-deep); }
.unit-box-lg { width: 78%; height: 76%; background: var(--depot-red); color: var(--burgundy); }

.unit-divider {
  border: 0;
  border-top: 1px solid var(--gray-line);
  margin: 0 0 18px;
}

.unit-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 22px;
}
.unit-price .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.unit-price .per {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.7;
  font-weight: 500;
}

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

/* Rental terms plaque */
.terms {
  margin: 72px auto 0;
  max-width: 720px;
  background: var(--cream);
  border: 1px solid var(--depot-red);
  border-radius: var(--radius-md);
  padding: 8px;
  position: relative;
}
.terms-inner {
  position: relative;
  padding: 26px 32px;
  border: 1px solid var(--depot-red);
  border-radius: var(--radius-sm);
  opacity: 1;
}
.terms-title {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--depot-red);
  margin-bottom: 22px;
}
.terms-title::before, .terms-title::after {
  content: "";
  height: 1px; width: 36px;
  background: currentColor;
  opacity: 0.5;
}
.terms-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.terms-list li {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
.terms-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--burgundy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
@media (max-width: 560px) {
  .terms-list { grid-template-columns: 1fr; gap: 16px; }
  .terms-inner { padding: 22px 24px; }
}

/* ============================================================
   Location
   ============================================================ */

.location {
  background: var(--cream);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.location-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.location-copy h2 { color: var(--burgundy); }
.location-intro { color: var(--ink); max-width: 460px; opacity: 0.82; }

.location-meta {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
  display: grid;
  gap: 12px;
}
.location-meta li {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-left: 3px solid var(--depot-red);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 14px;
}
.location-meta strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gray);
}
.location-meta a,
.location-meta span {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
}
.location-meta a:hover { color: var(--burgundy); text-decoration: none; }

.location-map {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.location-map-frame {
  border: 1px solid var(--depot-red);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 920px) {
  .location-inner { grid-template-columns: 1fr; gap: 36px; }
  .location-meta li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   Contact card
   ============================================================ */

.contact { background: var(--paper); padding-bottom: var(--space-10); }

.contact-card {
  position: relative;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 72px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  /* inner hairline frame */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 235, 221, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}
.contact-card::after {
  /* subtle ledger lines on dark */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 48px,
    rgba(243, 235, 221, 0.03) 48px, rgba(243, 235, 221, 0.03) 49px
  );
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card .eyebrow { color: var(--depot-red-soft); }
.contact-card h2 { color: var(--cream); margin-bottom: 12px; }
.contact-card-sub { color: rgba(243, 235, 221, 0.78); max-width: 440px; margin: 0 auto 8px; }

.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 22px 0 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(243, 235, 221, 0.28);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.contact-phone:hover { text-decoration: none; border-bottom-color: var(--cream); }

.contact-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink-deep);
  color: rgba(243, 235, 221, 0.78);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  width: fit-content;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(243, 235, 221, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-brand-mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  text-decoration: none;
}
.footer-brand-mark:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}
.footer-logo { display: block; width: 100px; height: 100px; }
.footer-brand p { color: rgba(243, 235, 221, 0.6); max-width: 280px; margin: 0; font-size: 0.95rem; }

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 6px 0 14px;
}
.footer-col p {
  color: rgba(243, 235, 221, 0.78);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}
.footer-col a { color: rgba(243, 235, 221, 0.78); }
.footer-col a:hover { color: var(--cream); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(243, 235, 221, 0.1);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(243, 235, 221, 0.5);
  letter-spacing: 0.03em;
}

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