/* ============================================================
   THREADWELL CONSIGNMENT — Demo Styles
   Curated clothing consignment · Option 1: Generic / Brand-neutral
   ============================================================ */

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

:root {
  /* Colors — slate, warm off-white, sage accent */
  --color-slate:         #2F3A36;
  --color-slate-80:      rgba(47, 58, 54, 0.80);
  --color-sage:          #7A8C7F;
  --color-sage-light:    #95A69A;
  --color-sage-dark:     #647569;
  --color-sage-mist:     rgba(122, 140, 127, 0.12);
  --color-cream:         #FBF9F5;
  --color-linen:         #F2EDE4;
  --color-linen-dark:    #E4DDD0;
  --color-stone:         #CFC9BE;
  --color-muted:         #5C6561;
  --color-muted-light:   #8A918C;
  --color-white:         #FFFFFF;
  --color-ink:           #1C2421;
  --color-black:         #141815;
  --color-overlay:       rgba(20, 24, 21, 0.58);

  /* Typography */
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', '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(20,24,21,0.06), 0 1px 2px rgba(20,24,21,0.04);
  --shadow-md: 0 4px 12px rgba(20,24,21,0.08), 0 2px 4px rgba(20,24,21,0.05);
  --shadow-lg: 0 10px 30px rgba(20,24,21,0.10), 0 4px 8px rgba(20,24,21,0.06);

  /* 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-muted);
  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-slate);
  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-sage);
  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-sage); 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--slate { background: var(--color-slate); color: var(--color-cream); }
.section--slate h1,
.section--slate h2,
.section--slate h3,
.section--slate 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-sage);
  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-muted-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-sage);
  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 — light Option 1 style
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid transparent;
  padding-block: var(--space-4);
  transition: background var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.site-nav.scrolled {
  background: rgba(251, 249, 245, 0.98);
  border-bottom-color: var(--color-linen-dark);
  box-shadow: 0 2px 20px rgba(20,24,21,0.06);
  padding-block: var(--space-3);
}

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

/* Logo (text-based wordmark) */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  color: var(--color-slate);
  letter-spacing: 0.005em;
  line-height: 1;
}

.nav-logo em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--color-sage);
}

/* 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: var(--color-muted);
  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-sage);
  transition: width var(--duration-normal) var(--ease-out);
}

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

.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-5) !important;
    background: var(--color-sage);
    color: var(--color-white) !important;
    border-radius: var(--radius-sm);
    font-weight: var(--weight-semibold) !important;
    transition: background var(--duration-fast);
  }
  .nav-cta:hover { background: var(--color-sage-dark) !important; color: var(--color-white) !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: var(--color-slate);
  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-cream);
  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-weight: var(--weight-regular);
  color: var(--color-slate);
  transition: color var(--duration-fast);
}

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

.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);
  color: var(--color-muted-light);
  letter-spacing: 0.04em;
}

/* Staff login button (nav) */
.nav-staff-btn {
  display: none;
}

@media (min-width: 960px) {
  .nav-links > li {
    display: flex;
    align-items: center;
  }
  .nav-links a.nav-staff-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    min-height: 32px;
    line-height: 1.1;
    position: static;
    border: 1px solid var(--color-linen-dark);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-muted) !important;
    transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
  }
  .nav-links a.nav-staff-btn:hover {
    border-color: var(--color-sage);
    color: var(--color-sage) !important;
    background: var(--color-sage-mist);
  }
  .nav-links a.nav-staff-btn::after { display: none !important; }
}

/* Staff dropdown (nav) */
.nav-staff-dropdown { position: relative; }

.nav-staff-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-linen-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  align-items: center;
  gap: var(--space-2);
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

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

.nav-staff-toggle:hover,
.nav-staff-toggle[aria-expanded="true"] {
  border-color: var(--color-sage);
  color: var(--color-sage);
  background: var(--color-sage-mist);
}

.nav-staff-arrow {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform var(--duration-fast);
}

.nav-staff-toggle[aria-expanded="true"] .nav-staff-arrow {
  transform: rotate(180deg);
}

.nav-staff-items {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-3));
  right: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-linen-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: var(--space-2) 0;
  z-index: calc(var(--z-sticky) + 1);
  animation: staff-dropdown-in 0.15s var(--ease-out);
}

@keyframes staff-dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-staff-items.open { display: block; }

.nav-staff-items li a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.nav-staff-items li a:hover {
  background: var(--color-sage-mist);
  color: var(--color-slate);
}

.nav-staff-items li a::after { display: none !important; }

.nav-staff-signout-item {
  border-top: 1px solid var(--color-linen-dark);
  margin-top: var(--space-1);
  padding-top: var(--space-1);
}

.nav-staff-signout-item a,
.nav-mobile-staff a.nav-staff-signout {
  color: var(--color-muted-light) !important;
}

.nav-staff-signout-item a:hover,
.nav-mobile-staff a.nav-staff-signout:hover {
  color: var(--color-slate) !important;
}

.nav-mobile-staff {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

/* ============================================================
   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-sm);
  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-sage);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(122,140,127,0.30);
}
.btn--primary:hover {
  background: var(--color-sage-dark);
  box-shadow: 0 4px 16px rgba(122,140,127,0.40);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.75);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-slate);
  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-slate);
}

.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(20, 24, 21, 0.88) 0%,
    rgba(20, 24, 21, 0.62) 35%,
    rgba(20, 24, 21, 0.35) 60%,
    rgba(20, 24, 21, 0.18) 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.80);
  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-regular);
  margin-bottom: var(--space-6);
  max-width: 16em;
}

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

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  max-width: 44ch;
  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.45);
  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.30);
  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-slate);
}

.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-sage-light);
  line-height: 1;
  font-weight: var(--weight-regular);
  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.45);
  font-weight: var(--weight-medium);
}

/* ============================================================
   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);
  aspect-ratio: 4 / 5;
}

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

.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-sage);
  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-regular);
  color: var(--color-slate);
  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-slate);
}

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

/* ============================================================
   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-muted-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__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-slate);
}

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

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

.locations-grid {
  display: grid;
  gap: var(--space-8);
  max-width: var(--container-md);
  margin-inline: auto;
}

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

.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-sage);
  background: var(--color-sage-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-slate);
  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-muted);
  line-height: var(--leading-relaxed);
}

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

.location-detail a { color: var(--color-sage); transition: color var(--duration-fast); }
.location-detail a:hover { color: var(--color-sage-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-muted-light);
  margin-bottom: var(--space-3);
}

.location-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-muted);
  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-slate);
  padding-block: var(--section-pad);
  text-align: center;
}

.social-section h2 {
  font-style: italic;
  font-weight: var(--weight-regular);
  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.65);
  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.30);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  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-sage);
  border-color: var(--color-sage);
  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-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-4);
  letter-spacing: 0.005em;
}

.footer-brand-name em {
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--color-sage-light);
}

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

.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.40);
  margin-bottom: var(--space-5);
}

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

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

.footer-col .location-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32);
  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.08);
  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.32); 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.40);
  transition: color var(--duration-fast);
}

.footer-social a:hover { color: var(--color-sage-light); }

/* ============================================================
   SUB-PAGE HERO HELPERS (shop, inventory, upload)
   ============================================================ */

.subpage-hero {
  padding: calc(76px + var(--space-16)) 0 var(--space-10);
  background: var(--color-linen);
  border-bottom: 1px solid var(--color-linen-dark);
}

.subpage-hero .container { max-width: 900px; }

.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-regular);
  color: var(--color-slate);
  margin: var(--space-3) 0 var(--space-4);
}

.subpage-hero h1 em { font-style: italic; color: var(--color-sage); }

.subpage-hero p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 620px;
}

.subpage-hero--center { text-align: center; }
.subpage-hero--center p { margin: 0 auto; }

.widget-section {
  padding: var(--space-10) 0 var(--space-16);
  background: var(--color-cream);
}

.widget-section .container { max-width: 1100px; }
.widget-section--narrow .container { max-width: 960px; }
