/* ==========================================================================
   Corbin Barber Shop — old-school Southern barbershop, mobile-first
   ========================================================================== */

:root {
  /* Palette: cream paper, oxblood, brass, charcoal, barber-pole red/blue */
  --cream: #f4ead8;
  --cream-dark: #e8d9c0;
  --parchment: #faf6ee;
  --ink: #1a1410;
  --ink-soft: #3d342c;
  --ink-muted: #6b5e52;
  --oxblood: #6b1c23;
  --oxblood-deep: #4a1016;
  --brass: #c4a35a;
  --brass-light: #e0c878;
  --pole-red: #c41e3a;
  --pole-blue: #1e3a8a;
  --white: #fffef9;
  --success: #2d6a4f;
  --closed: #8b3a3a;

  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;

  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 8px 30px rgba(26, 20, 16, 0.12);
  --shadow-card: 0 4px 20px rgba(26, 20, 16, 0.1);
  --header-h: 4rem;
  --mobile-bar-h: 4.25rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 68rem;
}

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

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

@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-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--oxblood);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--pole-red);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
}

p {
  margin: 0 0 var(--space-md);
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.hide-sm {
  display: none;
}

@media (min-width: 480px) {
  .hide-sm {
    display: inline;
  }
}

/* Anchor for logo / “back to top” — sits at document start, not on fixed header */
.scroll-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Pole ribbon (top edge) */
.pole-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 100;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red) 0 10px,
    var(--white) 10px 20px,
    var(--pole-blue) 20px 30px,
    var(--white) 30px 40px
  );
  background-size: 56px 56px;
  animation: pole-scroll 8s linear infinite;
}

@keyframes pole-scroll {
  to {
    background-position: 56px 0;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  /* Solid bg — backdrop-filter would trap position:fixed nav inside the header box */
  background: var(--ink);
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(100% - 1.25rem, var(--max-w));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}

.logo:hover {
  color: var(--brass-light);
}

.logo-mark {
  flex-shrink: 0;
  width: 1.75rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
}

.pole-mini {
  display: block;
  width: 0.65rem;
  height: 1.85rem;
  border-radius: 999px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red) 0 4px,
    #fff 4px 8px,
    var(--pole-blue) 8px 12px,
    #fff 12px 16px
  );
  background-size: 22px 22px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), inset 0 0 4px rgba(0, 0, 0, 0.3);
  animation: pole-scroll 4s linear infinite;
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.04em;
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border: 1px solid rgba(244, 234, 216, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  z-index: 95;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

.site-nav {
  position: fixed;
  top: calc(5px + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  min-height: calc(100dvh - 5px - var(--header-h));
  background: var(--ink);
  background-color: #1a1410;
  padding: var(--space-xl) var(--space-lg);
  padding-bottom: calc(var(--space-xl) + var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s;
  z-index: 85;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 20rem;
  margin-inline: auto;
}

.site-nav a {
  display: block;
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-radius: var(--radius);
  text-align: center;
}

.site-nav a:hover {
  color: var(--brass-light);
  background: rgba(196, 163, 90, 0.08);
}

.site-nav .nav-cta {
  margin-top: var(--space-md);
  background: var(--oxblood);
  color: var(--cream);
  border: 1px solid var(--brass);
}

.site-nav .nav-cta:hover {
  background: var(--pole-red);
  color: var(--white);
}

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

  .site-nav {
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    bottom: auto;
    width: min(100% - 1.25rem, var(--max-w));
    height: var(--header-h);
    min-height: 0;
    margin-inline: auto;
    padding: 0;
    background: transparent;
    transform: none;
    visibility: visible;
    overflow: visible;
    z-index: 91;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    max-width: none;
    margin-inline: 0;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.45rem 0.7rem;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .site-nav .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 3rem;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--oxblood);
  color: var(--cream);
  border-color: var(--oxblood);
  box-shadow: 0 2px 0 var(--oxblood-deep), 0 6px 16px rgba(107, 28, 35, 0.35);
}

.btn-primary:hover {
  background: var(--pole-red);
  border-color: var(--pole-red);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 234, 216, 0.45);
}

.btn-ghost:hover {
  background: rgba(244, 234, 216, 0.1);
  color: var(--white);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.3rem;
  min-height: 3.4rem;
}

/* Eyebrow / section headers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

.section-header.left {
  text-align: left;
  margin-inline: 0;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-header.light h2 {
  color: var(--cream);
}

.section-header.light .section-lede {
  color: var(--cream-dark);
}

.section-lede {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 52rem);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 5px + 2rem) 0 4rem;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../img/frontdoorcropped.jpg") center 30% / cover no-repeat;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 20, 16, 0.55) 0%, rgba(26, 20, 16, 0.35) 35%, rgba(26, 20, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(26, 20, 16, 0.75) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  padding-bottom: 1rem;
}

.hero .eyebrow {
  color: var(--brass-light);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.status-dot.is-open {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

.status-dot.is-closed {
  background: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-line.accent {
  color: var(--brass-light);
  font-size: clamp(2.6rem, 10vw, 5rem);
  letter-spacing: 0.12em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--cream-dark);
  max-width: 28rem;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.hero-address a {
  font-size: 0.95rem;
  color: rgba(244, 234, 216, 0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.hero-address a:hover {
  color: var(--brass-light);
}

.hero-scroll {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding-top: calc(var(--header-h) + 5px);
  }

  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 234, 216, 0.5);
  }

  .scroll-line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, var(--brass), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Welcome */
.welcome {
  background: var(--cream);
  border-block: 1px solid var(--cream-dark);
  padding: var(--space-xl) 0;
}

.welcome-inner {
  text-align: center;
  max-width: 40rem;
}

.welcome h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.welcome p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.welcome-ornament {
  color: var(--brass);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  margin: var(--space-md) 0;
  opacity: 0.8;
}

/* Hours */
.hours {
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(ellipse at top, rgba(196, 163, 90, 0.08), transparent 55%),
    var(--parchment);
}

.hours-board {
  max-width: 28rem;
  margin-inline: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(196, 163, 90, 0.35), 0 0 0 6px var(--ink);
  position: relative;
}

.hours-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 4px;
  border-radius: 0 0 2px 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--pole-red) 0 12px,
    #fff 12px 24px,
    var(--pole-blue) 24px 36px,
    #fff 36px 48px
  );
}

.hours-board-top {
  text-align: center;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
}

.hours-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.15);
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--brass-light);
}

.hours-badge.is-open {
  background: rgba(45, 106, 79, 0.35);
  border-color: rgba(74, 222, 128, 0.4);
  color: #86efac;
}

.hours-badge.is-closed {
  background: rgba(139, 58, 58, 0.35);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.hours-list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0.35rem;
  border-bottom: 1px solid rgba(244, 234, 216, 0.08);
  font-size: 1rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li.is-today {
  background: rgba(196, 163, 90, 0.12);
  margin-inline: -0.35rem;
  padding-inline: 0.7rem;
  border-radius: var(--radius);
  border-bottom-color: transparent;
}

.hours-list .day {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hours-list .time {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-dark);
  text-align: right;
}

.hours-list .time.closed {
  color: #fca5a5;
  font-style: italic;
}

.hours-note {
  font-size: 0.88rem;
  color: rgba(244, 234, 216, 0.55);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  padding: 0 0.25rem;
}

/* Barbers */
.barbers {
  padding: var(--space-2xl) 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, #241c16 100%);
  position: relative;
}

.barbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red) 0 12px,
    #fff 12px 24px,
    var(--pole-blue) 24px 36px,
    #fff 36px 48px
  );
  background-size: 68px 68px;
  animation: pole-scroll 10s linear infinite;
}

/* Flex + wrap + center so a leftover last row (e.g. 2 of 5) sits centered */
.barber-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
  max-width: 56rem;
  margin-inline: auto;
}

.barber-grid-status {
  flex: 1 1 100%;
  text-align: center;
  color: var(--cream-dark);
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
  padding: var(--space-lg);
}

.barber-grid-status.is-error {
  color: #fca5a5;
}

.barber-card {
  position: relative;
  /* Mobile: full width of grid */
  flex: 1 1 100%;
  max-width: 22rem;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(196, 163, 90, 0.25);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* 2-up: half width, leftover single card centers via justify-content */
@media (min-width: 520px) {
  .barber-card {
    flex: 0 1 calc(50% - 0.6rem);
    max-width: none;
  }
}

/* 3-up on desktop: incomplete last row centers under the row above */
@media (min-width: 900px) {
  .barber-card {
    flex: 0 1 calc(33.333% - 0.8rem);
    max-width: 17.5rem;
  }
}

.barber-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.barber-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pole-red), var(--brass), var(--pole-blue));
}

.barber-avatar {
  position: relative;
  width: 7.25rem;
  height: 7.25rem;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--brass);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.22);
  overflow: hidden;
  flex-shrink: 0;
}

.barber-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: none;
}

.barber-avatar.has-photo .barber-photo {
  display: block;
}

.barber-avatar.has-photo .barber-initials {
  display: none;
}

.barber-initials {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--brass-light);
  line-height: 1;
  user-select: none;
}

@media (min-width: 520px) {
  .barber-avatar {
    width: 8rem;
    height: 8rem;
  }

  .barber-initials {
    font-size: 2.25rem;
  }
}

.barber-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.barber-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.barber-phone {
  display: inline-block;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--oxblood);
  text-decoration: none;
  margin-bottom: var(--space-md);
  padding: 0.35rem 0.5rem;
  min-height: 2.5rem;
  line-height: 1.8;
}

.barber-phone:hover {
  color: var(--pole-red);
  text-decoration: underline;
}

/* Find us */
.find-us {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.find-us-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .find-us-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-xl);
  }
}

.find-us-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.shop-address {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: var(--space-md) 0 var(--space-lg);
  padding: var(--space-md);
  background: var(--parchment);
  border-left: 4px solid var(--oxblood);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.find-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.storefront-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(26, 20, 16, 0.08);
  background: var(--ink);
}

.storefront-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 40%;
}

.storefront-frame figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-dark);
  padding: 0.85rem 1rem;
  text-align: center;
  background: var(--ink);
}

/* Contact */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--parchment);
}

.contact-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 32rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-list li:last-child {
  border-bottom: none;
}

@media (min-width: 480px) {
  .contact-list li {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-link {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--oxblood);
  text-decoration: none;
  padding: 0.5rem 0;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.contact-link:hover {
  color: var(--pole-red);
  text-decoration: underline;
}

/* Closing CTA */
.closing-cta {
  padding: var(--space-2xl) 0;
  background:
    linear-gradient(135deg, var(--oxblood-deep) 0%, var(--oxblood) 50%, #8b2430 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 20px,
    rgba(255, 255, 255, 0.02) 20px 40px
  );
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.closing-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(244, 234, 216, 0.85);
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.closing-cta .btn-primary {
  background: var(--cream);
  color: var(--oxblood-deep);
  border-color: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.closing-cta .btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(244, 234, 216, 0.65);
  padding: var(--space-xl) 0 calc(var(--space-lg) + 0.5rem);
  border-top: 3px solid var(--brass);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand .logo-name {
  display: block;
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(244, 234, 216, 0.4);
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196, 163, 90, 0.35);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s var(--ease);
}

.mobile-bar.is-hidden {
  transform: translateY(110%);
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--oxblood);
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 var(--oxblood-deep);
}

.mobile-bar-btn:hover {
  background: var(--pole-red);
  color: var(--white);
}

@media (min-width: 768px) {
  .mobile-bar {
    display: none;
  }
}

/* Body lock when menu open */
body.nav-open {
  overflow: hidden;
}

/* Selection */
::selection {
  background: var(--oxblood);
  color: var(--cream);
}
