/* ============================================================= *
 *  Heritage Auto Sales LTD — styles.css
 *  Palette derived from the logo: warm charcoal, gold, cream.
 *  Type: Saira Condensed (display) + Hanken Grotesk (body).
 * ============================================================= */

:root {
  /* Brand palette */
  --ink:        #15120d;   /* warm near-black (primary dark)        */
  --ink-2:      #1d1813;   /* slightly lifted charcoal             */
  --ink-3:      #2a231a;   /* card / border on dark                */
  --gold:       #c9a35a;   /* warm gold (logo)                     */
  --gold-2:     #d8b773;   /* brighter gold for hover              */
  --gold-deep:  #a07f3e;   /* darker gold for borders/shadows only */
  --gold-ink:   #785a1c;   /* deep bronze-gold for TEXT on light (AA-safe) */
  --cream:      #f3ead7;   /* cream (logo)                         */
  --cream-2:    #f8f2e4;   /* lighter cream for section bg         */
  --paper:      #efe6d2;   /* slightly deeper cream                */
  --tan:        #6b5638;   /* muted brown for secondary text (AA-safe on cream/white) */
  --line-dark:  rgba(201,163,90,.18);  /* hairline on dark        */
  --line-light: rgba(33,27,18,.12);    /* hairline on light       */

  /* Typography */
  --font-display: "Saira Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.75rem);
  --header-h: 76px;
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-card: 0 18px 40px -22px rgba(0,0,0,.55);
  --shadow-pop: 0 26px 60px -28px rgba(0,0,0,.7);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

/* ------------------------- Accessibility ------------------------- */
.skip-link {
  position: absolute;
  left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  padding: .6rem 1.2rem; border-radius: 0 0 8px 8px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .04em;
  text-decoration: none; z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------- Shared layout ------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow-dark { color: var(--gold-ink); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.005em;
  font-size: clamp(2.3rem, 6vw, 3.7rem);
  text-transform: uppercase;
}
.section-title.light { color: var(--cream); }
.section-lead { margin-top: 1rem; font-size: 1.08rem; color: var(--tan); max-width: 54ch; }
.section-lead.light { color: rgba(243,234,215,.8); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  padding: .82rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-ico { width: 1.05em; height: 1.05em; fill: currentColor; }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 26px -12px rgba(201,163,90,.7); }
.btn-gold:hover { background: var(--gold-2); box-shadow: 0 14px 30px -12px rgba(216,183,115,.8); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(243,234,215,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(201,163,90,.08); }

.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--line-light); }
.btn-outline-dark:hover { border-color: var(--gold-ink); color: var(--gold-ink); background: rgba(201,163,90,.1); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-3); color: var(--gold-2); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn-sm { padding: .58rem 1rem; font-size: .86rem; }
.btn-xs { padding: .5rem .85rem; font-size: .8rem; letter-spacing: .05em; }

/* --------------------------- Icon buttons --------------------------- */
.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,163,90,.12);
  color: var(--gold);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .18s ease;
}
.icon-btn svg { width: 20px; height: 20px; fill: currentColor; }
.icon-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.icon-btn-dark { background: rgba(33,27,18,.08); color: var(--ink); }
.icon-btn-dark:hover { background: var(--ink); color: var(--gold-2); }
.icon-btn-ghost { background: rgba(243,234,215,.08); color: var(--cream); }
.icon-btn-ghost:hover { background: var(--gold); color: var(--ink); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,18,13,.82);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(18,15,11,.95); box-shadow: 0 12px 30px -20px rgba(0,0,0,.8); }

.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201,163,90,.12);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.18rem; color: var(--cream);
}
.brand-sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: .2rem; }

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.primary-nav > a:not(.btn) {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
  font-size: 1rem; color: var(--cream);
  text-decoration: none; position: relative; padding: .25rem 0;
  transition: color .2s ease;
}
.primary-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.primary-nav > a:not(.btn):hover { color: var(--gold-2); }
.primary-nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.call-icon { display: none; }

.hamburger {
  display: none;
  width: 46px; height: 46px; border: 1px solid var(--line-dark);
  border-radius: 10px; background: rgba(201,163,90,.06);
  padding: 0; position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px;
  background: var(--cream); transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 29px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(201,163,90,.20), transparent 55%),
    radial-gradient(90% 70% at 10% 100%, rgba(122,102,71,.22), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 70%);
  color: var(--cream);
  overflow: hidden;
  padding-top: clamp(2.6rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  isolation: isolate;
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-mountains {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 46%;
  z-index: -1; pointer-events: none;
}
.hero-mountains .mtn { stroke: none; }
.hero-mountains .mtn-back { fill: rgba(201,163,90,.10); }
.hero-mountains .mtn-front { fill: rgba(122,102,71,.28); }

.hero-inner {
  max-width: 900px; margin-inline: auto; padding-inline: var(--gutter);
  text-align: center; position: relative;
}
.hero-badge {
  width: clamp(130px, 24vw, 188px); height: auto; margin: 0 auto 1.6rem;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.55));
  animation: badgeIn 1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes badgeIn { from { opacity: 0; transform: translateY(14px) scale(.94); } to { opacity: 1; transform: none; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8.5vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.01em;
  margin: .2rem auto .1rem;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: rgba(243,234,215,.82);
  max-width: 56ch; margin: 1.2rem auto 0;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(.8rem, 3vw, 2rem); margin-top: 2.6rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
}
.trust-strip li { display: flex; flex-direction: column; line-height: 1.15; }
.trust-strip li strong { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: .02em; color: var(--cream); }
.trust-strip li span { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-top: .15rem; }
.trust-strip li.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep); align-self: center; }

/* Staggered reveal on load */
.reveal { opacity: 0; transform: translateY(16px); animation: revealUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal[data-delay="1"] { animation-delay: .15s; }
.reveal[data-delay="2"] { animation-delay: .28s; }
.reveal[data-delay="3"] { animation-delay: .42s; }
.reveal[data-delay="4"] { animation-delay: .56s; }
.reveal[data-delay="5"] { animation-delay: .70s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* ========================== INVENTORY ========================== */
.inventory { background: var(--cream-2); }
.inventory .section-head { max-width: 720px; }

.past-inventory { background: var(--paper); }
.past-inventory .section-head { max-width: 720px; }
.past-inventory .card { opacity: .92; }
.source-note {
  margin-top: 1.4rem; font-size: .82rem; color: var(--tan);
  text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto;
}

.card-grid {
  display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: var(--gold); }

.card-media { position: relative; aspect-ratio: 16 / 11; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: .74rem; letter-spacing: .1em; font-weight: 700;
  padding: .32rem .7rem; border-radius: 6px;
  background: var(--ink); color: var(--gold-2);
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.5);
}
.badge-new   { background: var(--gold); color: var(--ink); }
.badge-lifted{ background: #3a2f1f; color: var(--gold-2); }
.badge-hd    { background: var(--ink); color: var(--cream); }
.badge-power { background: #4a3a22; color: var(--gold-2); }
.badge-sold  { background: #6e2a23; color: #f6dcd7; }

/* Diagonal "stamped" SOLD mark over past-inventory photos */
.sold-stamp {
  position: absolute; top: 50%; left: 50%; z-index: 3;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  color: #f7ded9;
  background: rgba(120, 24, 20, .87);
  border: 3px solid #f7ded9;
  outline: 2px solid rgba(120, 24, 20, .87);
  outline-offset: 4px;
  border-radius: 5px;
  padding: .3rem 1.35rem;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.6);
  white-space: nowrap;
}

.price-wrap { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.price-sold { text-decoration: line-through; text-decoration-thickness: 2px; color: var(--tan); }
.sold-tag {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .1em; font-weight: 800; font-size: .78rem;
  color: #9b2b23;
}

/* "Add photo" placeholder — clearly editable, no fake imagery */
.ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .55rem;
  color: var(--tan);
  background:
    repeating-linear-gradient(45deg, rgba(122,102,71,.05) 0 12px, transparent 12px 24px),
    var(--paper);
  border-bottom: 1px dashed rgba(122,102,71,.45);
}
.ph svg { width: 46px; height: 46px; fill: none; stroke: var(--gold-deep); stroke-width: 2.2; stroke-linejoin: round; opacity: .8; }
.ph span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 600; }

.card-body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: 1.32rem; letter-spacing: .01em; line-height: 1.05; }
.card-spec { font-size: .9rem; color: var(--tan); letter-spacing: .01em; }
.card-foot { margin-top: auto; padding-top: .9rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; border-top: 1px solid var(--line-light); }
.price { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; color: var(--gold-ink); font-size: 1rem; }
.card-sold { opacity: .82; }

.inventory-foot { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }
.inventory-foot > p { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--tan); margin-bottom: 1rem; font-size: 1rem; }
.social-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ========================== FINANCING ========================== */
.financing {
  background:
    radial-gradient(110% 80% at 85% 0%, rgba(201,163,90,.16), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
  overflow: hidden; isolation: isolate;
}
.financing .section-head { margin-inline: auto; text-align: center; max-width: 680px; }
.fin-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .35; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.steps {
  display: grid; gap: clamp(1rem, 2.5vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: step; margin-top: 1rem;
}
.step {
  position: relative;
  background: linear-gradient(180deg, rgba(201,163,90,.08), rgba(201,163,90,.02));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold); text-stroke: 1.5px var(--gold);
  display: block; margin-bottom: .6rem;
}
.step-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.45rem; font-weight: 700; color: var(--cream); margin-bottom: .5rem; }
.step p { color: rgba(243,234,215,.78); font-size: .98rem; }

.fin-cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.fin-note { margin-top: 1rem; font-size: .86rem; color: rgba(243,234,215,.6); }

/* ============================ ABOUT ============================ */
.about { background: var(--cream-2); }
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.4fr .9fr; align-items: center; }
.about-copy p { margin-top: 1rem; color: #3a2f22; max-width: 60ch; }
.about-copy .section-title { color: var(--ink); }
.about-placeholder {
  background: rgba(201,163,90,.1);
  border-left: 3px solid var(--gold);
  padding: .9rem 1.1rem; border-radius: 0 8px 8px 0;
  color: var(--tan) !important;
}
.about-copy .btn { margin-top: 1.6rem; }

.about-stats { display: grid; gap: 1rem; }
.stat {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius); padding: 1.5rem 1.6rem;
  border: 1px solid var(--ink-3);
  display: flex; flex-direction: column; gap: .25rem;
  position: relative; overflow: hidden;
}
.stat::after {
  content: ""; position: absolute; right: -20px; bottom: -20px; width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(201,163,90,.25), transparent 70%);
}
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--gold); }
.stat-label { font-size: .92rem; color: rgba(243,234,215,.75); }

/* ============================ VISIT ============================ */
.visit { background: var(--paper); }
.visit-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr 1.15fr; align-items: stretch; }

.visit-info { display: grid; gap: 1.5rem; align-content: start; }
.info-block h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .9rem; color: var(--gold-ink); margin-bottom: .35rem; font-weight: 700;
}
.info-block p { color: #3a2f22; }
.plain-link { color: var(--ink); text-decoration: none; border-bottom: 2px solid rgba(201,163,90,.6); transition: border-color .2s ease, color .2s; }
.plain-link:hover { color: var(--gold-ink); border-color: var(--gold-ink); }
.link-arrow { display: inline-block; margin-top: .35rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--gold-ink); text-decoration: none; }
.link-arrow:hover { color: var(--ink); }

.tag {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .08em; font-size: .66rem; font-weight: 700;
  background: var(--gold); color: var(--ink); padding: .12rem .45rem; border-radius: 4px;
  vertical-align: middle;
}
.hours { border-collapse: collapse; width: 100%; max-width: 320px; margin-top: .2rem; }
.hours th, .hours td { text-align: left; padding: .42rem 0; border-bottom: 1px dashed rgba(122,102,71,.3); font-size: .98rem; }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { color: #3a2f22; text-align: right; }
.hours-note { font-size: .82rem; color: var(--tan); margin-top: .5rem; }

.visit-social { display: flex; gap: .6rem; }

.visit-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-light); box-shadow: var(--shadow-card);
  min-height: 360px;
}
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: saturate(.92) contrast(1.02); }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--ink); color: var(--cream); padding-top: clamp(2.6rem, 5vw, 4rem); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.5fr 1fr 1fr; align-items: start; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--gold-deep); }
.footer-name { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: 1.3rem; letter-spacing: .03em; }
.footer-tag { font-size: .88rem; color: rgba(243,234,215,.6); margin-top: .2rem; max-width: 34ch; }

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .96rem; color: rgba(243,234,215,.82); text-decoration: none; transition: color .2s ease; width: max-content; }
.footer-links a:hover { color: var(--gold-2); }

.footer-contact p { color: rgba(243,234,215,.82); margin-bottom: .35rem; font-size: .95rem; }
.footer-social { display: flex; gap: .55rem; margin-top: .7rem; }

.footer-bottom {
  max-width: var(--maxw); margin-inline: auto; padding: 1.3rem var(--gutter);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .82rem; color: rgba(243,234,215,.55); }
.footer-fine { letter-spacing: .04em; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }

  .call-icon { display: inline-grid; }
  .hamburger { display: block; }

  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(16,13,9,.98);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    padding: .6rem var(--gutter) 1.4rem;
    transform: translateY(-130%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    box-shadow: 0 30px 50px -20px rgba(0,0,0,.7);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav > a:not(.btn) { padding: 1rem .2rem; border-bottom: 1px solid var(--line-dark); font-size: 1.18rem; }
  .primary-nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 1rem 0 0; justify-content: center; }
  .btn-sm.nav-cta { padding: .9rem 1rem; font-size: 1rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .trust-strip li.dot { display: none; }
  .card-foot { flex-direction: column; align-items: flex-start; }
}
