/* ============================================================
   THE VELVET SHOESTRING — Styles
   Luxury consignment store · Williamsburg, VA
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Colors */
  --color-espresso:      #2A1A14;
  --color-espresso-80:   rgba(42, 26, 20, 0.80);
  --color-cognac:        #8B6348;
  --color-cognac-light:  #A07860;
  --color-cognac-dark:   #7A5238;
  --color-cognac-mist:   rgba(139, 99, 72, 0.10);
  --color-cream:         #FAF7F4;
  --color-linen:         #F2ECE6;
  --color-linen-dark:    #E4D9D1;
  --color-dust:          #D4C6BC;
  --color-slate:         #5C4A40;
  --color-slate-light:   #8A766E;
  --color-white:         #FFFFFF;
  --color-black:         #120A07;
  --color-overlay:       rgba(18, 10, 7, 0.58);

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;

  /* Font Weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  /* Line Heights */
  --leading-tight:   1.15;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.8;

  /* Spacing (8px grid) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1200px;
  --container-2xl: 1440px;

  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-pad:  clamp(4rem, 8vw, 7rem);

  /* Borders & Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;
  --border:      1px solid var(--color-linen-dark);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42,26,20,0.08), 0 1px 2px rgba(42,26,20,0.05);
  --shadow-md: 0 4px 12px rgba(42,26,20,0.10), 0 2px 4px rgba(42,26,20,0.06);
  --shadow-lg: 0 10px 30px rgba(42,26,20,0.12), 0 4px 8px rgba(42,26,20,0.07);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:   150ms;
  --duration-normal: 280ms;
  --duration-slow:   450ms;

  /* Z-index */
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: var(--leading-normal);
  color: var(--color-slate);
  background: var(--color-cream);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: var(--leading-tight);
  font-family: var(--font-serif);
  color: var(--color-espresso);
  font-weight: var(--weight-regular);
}

p, li, figcaption, blockquote { max-width: 68ch; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }
textarea { resize: vertical; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-cognac);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  z-index: var(--z-modal);
  transition: top var(--duration-fast);
}
.skip-link:focus { top: var(--space-4); }

::selection { background: var(--color-cognac); color: var(--color-white); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-md); }

.section { padding-block: var(--section-pad); }
.section--linen { background: var(--color-linen); }
.section--espresso { background: var(--color-espresso); color: var(--color-cream); }
.section--espresso h1,
.section--espresso h2,
.section--espresso h3,
.section--espresso h4 { color: var(--color-cream); }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cognac);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-6);
}
.section-title--center { text-align: center; }

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
  max-width: 54ch;
}
.section-subtitle--center { text-align: center; margin-inline: auto; }

.section-header { margin-bottom: clamp(var(--space-12), 5vw, var(--space-20)); }

.divider {
  width: 2.5rem;
  height: 1px;
  background: var(--color-cognac);
  margin-bottom: var(--space-8);
}
.divider--center { margin-inline: auto; }

.grid { display: grid; gap: var(--space-8); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.split { display: grid; gap: var(--space-8); }
@media (min-width: 900px) {
  .split--50-50 { grid-template-columns: 1fr 1fr; align-items: center; }
  .split--60-40 { grid-template-columns: 3fr 2fr; align-items: center; }
  .split--40-60 { grid-template-columns: 2fr 3fr; align-items: center; }
}

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.fade-up--delay-1 { transition-delay: 80ms; }
.fade-up--delay-2 { transition-delay: 160ms; }
.fade-up--delay-3 { transition-delay: 240ms; }
.fade-up.visible  { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(42, 26, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-block: var(--space-5);
  transition: background var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.site-nav.scrolled {
  background: var(--color-espresso);
  box-shadow: 0 2px 20px rgba(18,10,7,0.25);
  padding-block: var(--space-4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--weight-light);
  color: var(--color-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-style: italic;
}

.nav-logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cognac-light);
  margin-top: 3px;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-cognac-light);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: none;
}

@media (min-width: 960px) {
  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    padding: var(--space-2) var(--space-6) !important;
    background: var(--color-cognac);
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    font-weight: var(--weight-semibold) !important;
    transition: background var(--duration-fast);
  }
  .nav-cta:hover { background: var(--color-cognac-light) !important; }
  .nav-cta::after { display: none !important; }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
}

@media (min-width: 960px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.90);
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-fast);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-espresso);
  z-index: calc(var(--z-sticky) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.nav-mobile.open { opacity: 1; pointer-events: auto; }

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: var(--weight-light);
  color: rgba(250,247,244,0.80);
  transition: color var(--duration-fast);
}

.nav-mobile a:hover { color: var(--color-cognac-light); }

.nav-mobile-contact {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

.nav-mobile-contact a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-style: normal;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--duration-fast), color var(--duration-fast),
              box-shadow var(--duration-fast), transform var(--duration-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform var(--duration-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--color-cognac);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(139,99,72,0.30);
}
.btn--primary:hover {
  background: var(--color-cognac-light);
  box-shadow: 0 4px 16px rgba(139,99,72,0.40);
}

.btn--secondary {
  background: transparent;
  color: var(--color-espresso);
  border: 1.5px solid var(--color-espresso);
}
.btn--secondary:hover {
  background: var(--color-espresso);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-espresso);
  border-color: var(--color-white);
}

.btn--lg { padding: var(--space-5) var(--space-10); font-size: var(--text-sm); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  max-height: 920px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-espresso);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 10, 7, 0.88) 0%,
    rgba(18, 10, 7, 0.65) 35%,
    rgba(18, 10, 7, 0.38) 60%,
    rgba(18, 10, 7, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(var(--space-16), 8vh, var(--space-32));
}

.hero__container {
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6.5vw, var(--text-5xl));
  color: var(--color-white);
  line-height: var(--leading-tight);
  font-weight: var(--weight-light);
  font-style: italic;
  margin-bottom: var(--space-6);
  max-width: 16em;
}

.hero__title strong {
  font-style: normal;
  font-weight: var(--weight-regular);
  color: var(--color-cognac-light);
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  max-width: 42ch;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.40);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.25; }
  50%       { transform: scaleY(0.5); opacity: 0.70; }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.home-stats {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-espresso);
}

.home-stat {
  flex: 1 1 160px;
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.home-stat:last-child { border-right: none; }

.home-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-cognac-light);
  line-height: 1;
  font-weight: var(--weight-light);
  font-style: italic;
  display: block;
  margin-bottom: var(--space-2);
}

.home-stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: var(--weight-medium);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: var(--border);
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 44px; height: 44px;
  color: var(--color-cognac);
  flex-shrink: 0;
}

.feature-card__title {
  font-size: var(--text-xl);
  color: var(--color-espresso);
  margin-bottom: var(--space-2);
}

.feature-card__body {
  font-size: var(--text-sm);
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-split {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .about-split { grid-template-columns: 1fr 1fr; align-items: start; }
}

.about-image-stack {
  position: relative;
}

.about-image-stack__main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-linen);
}

.about-image-stack__main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-image-stack__accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dust);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.about-image-stack__accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .about-image-stack__accent { display: none; }
}

.about-content { padding-block: var(--space-4); }

.about-content .section-label { margin-bottom: var(--space-3); }

.about-content h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-6);
}

.about-quote {
  border-left: 2px solid var(--color-cognac);
  padding-left: var(--space-6);
  margin-block: var(--space-8);
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: var(--weight-light);
  color: var(--color-espresso);
  line-height: var(--leading-snug);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.about-pillar { display: flex; flex-direction: column; gap: var(--space-1); }

.about-pillar__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-espresso);
}

.about-pillar__body {
  font-size: var(--text-sm);
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   INVENTORY GALLERY PREVIEW
   ============================================================ */

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); }

  .gallery-mosaic__item--tall { grid-row: span 2; }
  .gallery-mosaic__item--wide { grid-column: span 2; }
}

.gallery-mosaic__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-linen);
  aspect-ratio: 1 / 1;
}

.gallery-mosaic__item--tall { aspect-ratio: auto; }

.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-mosaic__item:hover img { transform: scale(1.04); }

/* ============================================================
   CONSIGN / UPLOAD SECTION
   ============================================================ */

.consign-section {
  padding-block: var(--section-pad);
  background: var(--color-linen);
}

.consign-intro {
  max-width: var(--container-md);
  margin: 0 auto var(--space-12);
  text-align: center;
}

.consign-intro h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-5);
}

.consign-intro p {
  font-size: var(--text-md);
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
  margin-inline: auto;
}

/* ============================================================
   SERVICES
   ============================================================ */

.service-item {
  display: grid;
  gap: var(--space-8);
  padding-block: var(--space-12);
  border-bottom: var(--border);
}

.service-item:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .service-item { grid-template-columns: 1fr 2fr; align-items: center; gap: var(--space-16); }
  .service-item--reverse { direction: rtl; }
  .service-item--reverse > * { direction: ltr; }
}

.service-item__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: var(--weight-light);
  font-style: italic;
  color: var(--color-linen-dark);
  line-height: 1;
}

.service-item__content { display: flex; flex-direction: column; gap: var(--space-4); }

.service-item__title {
  font-size: var(--text-2xl);
  color: var(--color-espresso);
}

.service-item__body {
  font-size: var(--text-md);
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   LOCATIONS
   ============================================================ */

.locations-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 700px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: var(--border);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.location-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-linen);
}

.location-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.location-card:hover .location-card__image img { transform: scale(1.04); }

.location-card__body {
  padding: var(--space-8);
}

.location-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cognac);
  background: var(--color-cognac-mist);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.location-card__name {
  font-size: var(--text-xl);
  color: var(--color-espresso);
  margin-bottom: var(--space-4);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
}

.location-detail svg {
  width: 16px; height: 16px;
  color: var(--color-cognac);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail a { color: var(--color-cognac); transition: color var(--duration-fast); }
.location-detail a:hover { color: var(--color-cognac-dark); }

.location-hours {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: var(--border);
}

.location-hours__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-slate-light);
  margin-bottom: var(--space-3);
}

.location-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-slate);
  padding-block: var(--space-1);
  border-bottom: 1px solid var(--color-linen-dark);
}

.location-hours__row:last-child { border-bottom: none; }

/* ============================================================
   SOCIAL / CONNECT SECTION
   ============================================================ */

.social-section {
  background: var(--color-espresso);
  padding-block: var(--section-pad);
  text-align: center;
}

.social-section h2 {
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.social-section p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.60);
  line-height: var(--leading-relaxed);
  max-width: 44ch;
  margin: 0 auto var(--space-10);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.80);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--color-cognac);
  border-color: var(--color-cognac);
  color: var(--color-white);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.55);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .nav-logo-name {
  font-size: var(--text-xl);
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-3);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: 34ch;
  color: rgba(255,255,255,0.42);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-5);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.58);
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast);
}

.footer-col a:hover { color: var(--color-cognac-light); }

.footer-col .location-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
  cursor: default;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.25); max-width: none; }

.footer-social { display: flex; gap: var(--space-5); }

.footer-social a {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: color var(--duration-fast);
}

.footer-social a:hover { color: var(--color-cognac-light); }
.footer-social svg { width: 16px; height: 16px; }
