/* ============================================
   Johnson & Company — Shared Design System
   ============================================ */

:root {
  /* Core palette — warm limestone, espresso ink, walnut accent. Pulled from
     the real business: the amber shield, the black-brick storefronts, and
     the wood that's in nearly every photo. (The "gold" token names are
     legacy — they hold the walnut accent now.) */
  --color-ink: #221c17;
  --color-ink-soft: #594e45;
  --color-ink-faint: #75695e;
  --color-cream: #f7f3ec;
  --color-cream-deep: #efe8dd;
  --color-card: #fffdf9;
  --color-border: #e4dccf;
  --color-white: #ffffff;

  --color-gold-light: #b08962;
  --color-gold: #7a5234;
  --color-gold-deep: #4a2f1c;
  --gradient-gold: linear-gradient(135deg, #85593a 0%, #4a2f1c 100%);
  --gradient-gold-soft: linear-gradient(135deg, #e8d7c3 0%, #b08962 100%);

  /* True gold — reserved for the Lowest Price Guarantee tagline only */
  --color-price-gold: #c69a3e;
  --color-price-gold-deep: #8a6b26;
  --gradient-price-gold: linear-gradient(135deg, #ecd08e 0%, #c69a3e 55%, #a37c2c 100%);

  /* Sub-brand accents — same family, distinct personality */
  --color-flooring: #6b4226;
  --color-flooring-soft: #efe2d3;
  --color-giftshop: #b5573b;
  --color-giftshop-soft: #f6e3dc;
  --color-venue: #5c2a3d;
  --color-venue-soft: #ecdfe2;

  --color-danger: #a3312a;

  /* Type */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Alex Brush", cursive;

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

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(52, 36, 22, 0.08);
  --shadow-md: 0 8px 24px rgba(52, 36, 22, 0.1);
  --shadow-lg: 0 20px 48px rgba(52, 36, 22, 0.15);

  --max-width: 1200px;
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
}

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

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

html {
  scroll-behavior: smooth;
}

/* Matches the look at 90% browser zoom (one Ctrl/Cmd-minus step) by
   default, since that's the density the user preferred. Desktop only —
   mobile already needs its own full-size touch targets, and `zoom` on
   small screens can throw off tap accuracy. */
@media (min-width: 861px) {
  html {
    zoom: 90%;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  color: var(--color-ink);
  font-variant-numeric: lining-nums;
}

h1, h2, h3 { text-wrap: balance; }

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.875rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.375rem, 1.2vw + 1rem, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  margin: 0 0 var(--space-3);
  max-width: 65ch;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

:focus-visible {
  outline: 3px solid var(--color-gold-deep);
  outline-offset: 2px;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-8) 0;
}

@media (max-width: 640px) {
  .section {
    padding: var(--space-7) 0;
  }
}

.section-dark {
  background: var(--color-ink);
  color: var(--color-cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-tint {
  background: var(--color-cream-deep);
}

.section-head {
  max-width: 680px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-3);
}

.section-dark .eyebrow {
  color: var(--color-gold-light);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.lede {
  font-size: 1.125rem;
  color: var(--color-ink-soft);
  margin: 0 auto var(--space-4);
}

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

.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;
}

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -100px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-3);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.btn-dark:hover {
  background: #3a2f27;
}

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

.section-dark .btn-outline {
  color: var(--color-white);
}

.btn-outline:hover {
  background: rgba(20, 24, 26, 0.06);
}

.section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  min-height: 40px;
  padding: 0 var(--space-4);
  font-size: 0.875rem;
}

.btn-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

#gallery {
  scroll-margin-top: 85px;
}

#photos {
  scroll-margin-top: 85px;
}

@media (min-width: 861px) {
  #photos.section {
    padding-top: 227px;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 84px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 861px) {
  .brand-mark {
    width: 155px;
    flex-shrink: 0;
  }
}

.brand-mark img {
  height: 58px;
  width: auto;
}

.brand-mark .brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.15;
  color: var(--color-ink);
}

.brand-mark .brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 861px) {
  .main-nav {
    flex: 1;
    justify-content: flex-end;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-ink);
  border-color: var(--color-gold);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink);
  white-space: nowrap;
  transition: color var(--transition);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-deep);
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--color-gold-deep);
}

/* Social icons stay quiet at rest — a neutral outline that matches the
   nav's restrained palette — and only reveal their brand color on
   hover/focus, so "Get a Quote" remains the clear primary action. */
.header-fb-link,
.header-ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-ink-soft);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.header-fb-link svg,
.header-ig-link svg {
  width: 17px;
  height: 17px;
}

.header-fb-link:hover,
.header-fb-link:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: scale(1.06);
}

.header-ig-link:hover,
.header-ig-link:focus-visible {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.06);
}

@media (max-width: 1180px) {
  .header-fb-link,
  .header-ig-link {
    display: none;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  color: var(--color-ink);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5) var(--space-4);
    gap: var(--space-5);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: var(--space-3) 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-border);
  }
}

/* ============================================
   Cinematic (Venue)
   ============================================ */

.cinematic-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
}

.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(92, 42, 61, 0.45), transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(122, 82, 52, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  pointer-events: none;
}

.cinematic-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cinematic-hero .eyebrow {
  justify-content: center;
  color: var(--color-venue-soft);
}

.cinematic-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  max-width: 16ch;
  margin: 0 auto var(--space-4);
}

.cinematic-hero .lede {
  max-width: 52ch;
  margin: 0 auto var(--space-4);
  color: var(--color-cream-deep);
  font-size: 1.25rem;
}

.cinematic-hero .hero-actions {
  justify-content: center;
}

.cinematic-scroll-cue {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-cream-deep);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: cinematic-bounce 2.4s ease-in-out infinite;
}

.cinematic-scroll-cue svg {
  width: 20px;
  height: 20px;
}

@keyframes cinematic-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-scroll-cue {
    animation: none;
  }
}

.moment-panel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
}

.moment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 24, 26, 0.88) 0%, rgba(20, 24, 26, 0.62) 65%, rgba(20, 24, 26, 0.35) 100%);
}

.moment-panel:not(.has-photo)::before {
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 16px);
}

.moment-panel.tone-1 { background-color: #3f2a1a; }
.moment-panel.tone-2 { background-color: #5c2a3d; }
.moment-panel.tone-3 { background-color: #6b4226; }

.moment-caption {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-5);
  width: 100%;
  text-align: center;
}

.moment-caption .eyebrow {
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.moment-caption h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 22ch;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Trust bar
   ============================================ */

.trust-bar {
  background: var(--color-cream-deep);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.trust-bar-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  line-height: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  white-space: nowrap;
  padding-left: var(--space-5);
}

.trust-bar-item:first-child {
  padding-left: 0;
}

.trust-bar-item::before {
  content: "";
  position: absolute;
  left: calc(var(--space-5) / -2);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.trust-bar-item:first-child::before {
  display: none;
}

.trust-bar-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-gold-deep);
}

@media (max-width: 640px) {
  .trust-bar-list {
    gap: var(--space-2) var(--space-4);
  }
  .trust-bar-item {
    font-size: 0.75rem;
    padding-left: 0;
  }
  .trust-bar-item::before {
    display: none;
  }
}

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

.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-7);
  overflow: hidden;
  background: var(--color-cream);
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero-grid .ph-photo {
    order: -1;
    min-height: 220px !important;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: var(--space-6) 0 var(--space-5);
  }
}

.hero-eyebrow {
  color: var(--color-gold-deep);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-secondary-links {
  margin: var(--space-3) 0 0;
  font-size: 0.9375rem;
  color: var(--color-ink-faint);
}

.hero-secondary-links a {
  color: var(--color-ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-border);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.hero-secondary-links a:hover,
.hero-secondary-links a:focus-visible {
  color: var(--color-gold-deep);
  text-decoration-color: currentColor;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: var(--gradient-price-gold);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}

.hero-guarantee svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .hero-guarantee {
    font-size: 0.8125rem;
    text-align: left;
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold-deep);
}

.hero-meta-item span {
  font-size: 0.8125rem;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta-item span a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.hero-meta-item span a:hover {
  color: var(--color-gold-deep);
}

/* ============================================
   Placeholder photography
   ============================================ */

.ph-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(135deg, var(--color-cream-deep), var(--color-border));
  border: 1px solid var(--color-border);
}

.ph-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(20,24,26,0.035) 0, rgba(20,24,26,0.035) 2px, transparent 2px, transparent 14px);
}

.ph-photo-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  background: rgba(20, 24, 26, 0.78);
  color: var(--color-cream);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.ph-photo-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ph-photo.tone-flooring { background: linear-gradient(135deg, #e6d4bd, #cdae86); }
.ph-photo.tone-giftshop { background: linear-gradient(135deg, #f3ddd2, #e0ad97); }
.ph-photo.tone-venue { background: linear-gradient(135deg, #d9e3da, #a9bcaa); }

.ph-photo.has-image::before {
  display: none;
}

.ph-photo.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ph-photo.has-image.is-zoomable {
  cursor: zoom-in;
}

.ph-photo.has-image.contain img {
  object-fit: contain;
  background: var(--color-ink);
}

.ph-photo.has-image.is-zoomable:hover img,
.ph-photo.has-image.is-zoomable:focus-within img {
  transform: scale(1.035);
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(18, 13, 8, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow);
  touch-action: manipulation;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--color-ink);
}

.lightbox-caption {
  margin-top: var(--space-3);
  padding: 0 var(--space-3);
  color: var(--color-cream);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 65ch;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  touch-action: manipulation;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.94);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: -8px;
}

.lightbox-next {
  right: -8px;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-counter {
  margin-top: var(--space-2);
  color: rgba(247, 243, 236, 0.65);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .lightbox-prev {
    left: 4px;
  }
  .lightbox-next {
    right: 4px;
  }
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-photo.has-image.is-zoomable:hover img,
  .ph-photo.has-image.is-zoomable:focus-within img {
    transform: none;
  }
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* ============================================
   Brand hub cards (index page)
   ============================================ */

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

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

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.brand-card .ph-photo {
  min-height: 200px;
  border-radius: 0;
  border: none;
}

.brand-card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.brand-card.is-flooring .brand-card-tag { background: var(--color-flooring-soft); color: var(--color-flooring); }
.brand-card.is-giftshop .brand-card-tag { background: var(--color-giftshop-soft); color: var(--color-giftshop); }
.brand-card.is-venue .brand-card-tag { background: var(--color-venue-soft); color: var(--color-venue); }

.brand-card-body p {
  color: var(--color-ink-soft);
  flex: 1;
}

.brand-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-ink);
  margin-top: var(--space-3);
}

.brand-card-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.brand-card:hover .brand-card-cta svg {
  transform: translateX(4px);
}

/* ============================================
   Feature / value grids
   ============================================ */

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

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

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

.feature-card {
  padding: var(--space-4);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-gold-soft);
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin-bottom: var(--space-2);
}

.feature-card p {
  color: var(--color-ink-soft);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   Gallery
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-3);
}

.gallery-grid .ph-photo {
  min-height: 0;
  height: 100%;
  border-radius: var(--radius-md);
}

.gallery-grid > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > :nth-child(4) { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery-grid > :nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > :nth-child(4) { grid-column: span 1; }
}

.gallery-grid-more {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.gallery-grid-more .ph-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

.gallery-grid-more .ph-photo.is-hidden {
  display: none;
}

@media (max-width: 760px) {
  .gallery-grid-more {
    grid-template-columns: repeat(3, 1fr);
  }
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-6) 0 var(--space-2);
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-ink-soft);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-pill:hover {
  border-color: var(--color-gold);
}

.filter-pill.is-active {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-white);
}

.gallery-category-count {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-ink-faint);
  margin-bottom: var(--space-4);
}

/* ============================================
   Testimonials
   ============================================ */

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

.testimonial-grid.is-pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .testimonial-grid,
  .testimonial-grid.is-pair {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-ink);
  margin: 0;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-2);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-person span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-ink-faint);
}

/* ============================================
   Team
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6) var(--space-5);
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; gap: var(--space-6); }
}

@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
}

.team-card {
  text-align: center;
}

.team-card .ph-photo {
  min-height: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-3);
}

.team-card h4 {
  margin-bottom: 2px;
  font-size: 1.375rem;
}

.team-card span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.team-card p {
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
  margin-bottom: 0;
}

.team-card a {
  color: var(--color-gold-deep);
  font-weight: 600;
}

/* ============================================
   Catalog / filters
   ============================================ */

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-6);
  align-items: start;
}

@media (max-width: 860px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}

.catalog-filters {
  position: sticky;
  top: 108px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

@media (max-width: 860px) {
  .catalog-filters {
    position: static;
  }
}

.filter-group {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-3);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group legend {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0;
  margin-bottom: var(--space-2);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
  cursor: pointer;
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold-deep);
  cursor: pointer;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.catalog-count {
  font-size: 0.9375rem;
  color: var(--color-ink-faint);
}

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

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

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .ph-photo {
  min-height: 160px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
}

.product-card-body {
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.product-card-body h4 {
  margin-bottom: 2px;
}

.product-card-cat {
  font-size: 0.8125rem;
  color: var(--color-ink-faint);
  margin-bottom: var(--space-2);
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  margin: 0;
}

.product-card-price {
  font-family: var(--font-heading);
  color: var(--color-gold-deep);
  font-weight: 600;
}

.catalog-empty {
  display: none;
  text-align: center;
  padding: var(--space-7) var(--space-3);
  color: var(--color-ink-faint);
}

.catalog-empty.is-visible {
  display: block;
}

/* ============================================
   Contact / forms
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: var(--space-4);
}

.form-status {
  margin: var(--space-3) 0 0;
  font-size: 0.875rem;
  text-align: center;
  color: var(--color-ink-soft);
}

.form-status.is-success {
  color: var(--color-gold-deep);
  font-weight: 600;
}

.form-status.is-error {
  color: var(--color-danger);
  font-weight: 600;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.form-field .required {
  color: var(--color-danger);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card);
  color: var(--color-ink);
  transition: border-color var(--transition);
}

.form-field textarea {
  min-height: 140px;
  padding: var(--space-3);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-gold-deep);
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-ink-faint);
  margin-top: var(--space-1);
  margin-bottom: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-info-item .icon-badge {
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--color-ink-soft);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold-soft);
  color: var(--color-ink);
}

.icon-badge svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   CTA band
   ============================================ */

.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin-bottom: var(--space-3);
}

.cta-band .lede {
  margin-bottom: var(--space-5);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ============================================
   Facebook widget
   ============================================ */

.fb-widget {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.fb-widget:hover {
  transform: scale(1.08);
}

.fb-widget svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 860px) {
  .fb-widget {
    bottom: 100px;
    left: 16px;
    width: 48px;
    height: 48px;
  }
  .fb-widget svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Chat widget
   ============================================ */

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 96;
}

.chat-launcher {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-gold);
  color: var(--color-white);
  font-size: 1.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition);
}

.chat-launcher:hover {
  transform: scale(1.08);
}

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 96px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(70vh, 70dvh);
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-ink);
  color: var(--color-white);
  flex-shrink: 0;
}

.chat-panel-header img {
  width: 36px;
  height: 36px;
}

.chat-panel-header strong {
  display: block;
  font-family: var(--font-heading);
}

.chat-panel-header span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-cream-deep);
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: var(--space-1);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.chat-bubble {
  max-width: 88%;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.chat-bubble-bot {
  background: var(--color-cream-deep);
  color: var(--color-ink);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble-user {
  background: var(--color-ink);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chat-quick-actions button {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-ink);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.chat-quick-actions button:hover {
  border-color: var(--color-gold);
  background: var(--color-cream-deep);
}

.chat-input-row {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3);
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.chat-input-row input {
  flex: 1;
  min-height: 42px;
  padding: 0 var(--space-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 16px;
}

.chat-input-row input:focus {
  border-color: var(--color-gold-deep);
  outline: none;
}

.chat-input-row button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color-ink);
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .chat-widget {
    bottom: 100px;
    right: 16px;
  }
  .chat-launcher {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
  }
  .chat-panel {
    right: 16px;
    bottom: 166px;
    max-height: min(60vh, 60dvh);
  }
}

/* ============================================
   Sticky mobile CTA bar
   ============================================ */

.sticky-cta-bar {
  display: none;
}

@media (max-width: 860px) {
  .sticky-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom));
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(20, 24, 26, 0.1);
  }

  .sticky-cta-bar .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding-inline: var(--space-2);
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .sticky-cta-bar .btn-primary {
    flex-grow: 1.6;
  }

  body.has-sticky-cta {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

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

.site-footer {
  background: var(--color-ink);
  color: var(--color-cream-deep);
  padding: var(--space-7) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.footer-brand .brand-mark .brand-name,
.footer-brand .brand-mark .brand-name small {
  color: var(--color-cream);
}

.footer-brand p {
  color: var(--color-cream-deep);
  font-size: 0.9375rem;
  margin-top: var(--space-3);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--color-cream-deep);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  font-size: 0.8125rem;
  color: var(--color-ink-faint);
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  text-decoration-color: currentColor;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold-deep);
}

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

/* ============================================
   Misc
   ============================================ */

.divider-gold {
  width: 64px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
  margin: 0 auto var(--space-4);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  background: var(--color-cream-deep);
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-ink-soft);
}

.badge-gold {
  background: var(--gradient-price-gold);
  border-color: transparent;
  color: var(--color-ink);
  font-weight: 700;
}

.badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-deep);
}

/* ============================================
   Brands (flooring) — editorial wordmark wall
   ============================================ */

.brands-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}

.brands-intro .eyebrow,
.brands-intro h2 {
  justify-content: flex-start;
}

.brand-wordmarks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-wordmarks li {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--color-ink-soft);
  position: relative;
  padding-right: var(--space-6);
}

.brand-wordmarks li::after {
  content: "";
  position: absolute;
  right: calc(var(--space-6) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-border);
}

.brand-wordmarks li:last-child {
  padding-right: 0;
}

.brand-wordmarks li:last-child::after {
  display: none;
}

.brand-wordmarks a {
  color: inherit;
  transition: color var(--transition);
}

.brand-wordmarks a:hover {
  color: var(--color-gold-deep);
}

@media (max-width: 860px) {
  .brands-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Brand category directory — flooring page
   ============================================ */

.brand-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.brand-category-card .ph-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-bottom: var(--space-3);
}

.brand-category-card h3 {
  margin-bottom: var(--space-3);
}

.brand-category-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.brand-category-card li a,
.brand-category-card li span {
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
}

.brand-category-card li a {
  transition: color var(--transition);
}

.brand-category-card li a:hover {
  color: var(--color-gold-deep);
}

@media (max-width: 900px) {
  .brand-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-categories {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Embedded map
   ============================================ */

.map-embed {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   Entrance hero (homepage) — the front door
   ============================================ */

.hero.is-entrance {
  padding: var(--space-4) 0 var(--space-4);
}

@media (min-width: 861px) {
  .hero.is-entrance {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 85px - 49px);
    min-height: calc(100dvh - 85px - 49px);
    box-sizing: border-box;
  }

  .hero.is-entrance > .container {
    width: 100%;
  }
}

.hero.is-entrance .hero-grid {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: var(--space-8);
}

.hero.is-entrance h1 {
  font-size: clamp(2.5rem, 2.1vw + 2rem, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
}

.hero.is-entrance .lede {
  margin-bottom: var(--space-3);
}

.hero.is-entrance .hero-actions {
  margin-top: var(--space-3);
}

@media (min-width: 641px) {
  .hero.is-entrance .hero-actions {
    display: inline-grid;
    grid-template-columns: repeat(2, max-content);
    gap: var(--space-3);
  }
}

.hero.is-entrance .hero-meta {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
}

.hero-photo-bleed {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero.is-entrance {
    padding-top: var(--space-4);
  }
  .hero.is-entrance .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo-bleed {
    order: -1;
    margin: 0 0 var(--space-4);
    border-radius: var(--radius-lg);
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   Split hero — three businesses at a glance (homepage)
   ============================================ */

/* Stretches the hero + trust bar to fill the screen below the header when
   there's room, so the grey trust bar always sits flush against the
   bottom edge on the first view instead of leaving dead space beneath it.
   On short/tall content (e.g. stacked mobile cards) this just grows past
   the min-height naturally — nothing is ever clipped or force-fit. */
.hero-viewport {
  position: relative;
  min-height: calc(100vh - 85px);
  min-height: calc(100dvh - 85px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* The desktop `zoom: 90%` on <html> shrinks everything except viewport
   units, so 100vh would stop 10% short and leave a gap under the trust bar.
   Dividing by the zoom factor puts it back flush with the screen's bottom. */
@media (min-width: 861px) {
  .hero-viewport {
    min-height: calc(100vh / 0.9 - 85px);
    min-height: calc(100dvh / 0.9 - 85px);
  }
}

.hero.is-split {
  padding: var(--space-4) 0 var(--space-5);
  /* Takes the leftover height and centers the headline + cards in it, so
     spare space is shared above and below instead of pooling as a dead band
     over the trust bar. */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero.is-split > .container {
  width: 100%;
}

.hero-split-intro {
  text-align: center;
  margin-bottom: var(--space-3);
}

.hero-split-intro .hero-eyebrow {
  justify-content: center;
}

.hero-split-intro h1 {
  font-size: clamp(1.75rem, 1.6vw + 1.3rem, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin: 0 auto;
}

.hero-split-lede {
  max-width: 46ch;
  margin: var(--space-2) auto 0;
  color: var(--color-ink-soft);
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.split-card {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (hover: hover) {
  .split-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .split-card:hover .split-card-photo img {
    transform: scale(1.04);
  }
  .split-card:hover .split-card-cta svg {
    transform: translateX(4px);
  }
}

.split-card:focus-visible {
  outline: 3px solid var(--color-gold-deep);
  outline-offset: 3px;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.split-card-photo {
  position: relative;
  display: block;
  aspect-ratio: 8 / 5;
  overflow: hidden;
}

.split-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotating cards use two stacked layers so only opacity ever changes —
   crossfading by swapping a single img's src can flash an undecoded
   frame; this keeps the swap invisible. */
.split-card-photo[data-gallery] img {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity 450ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-card-photo[data-gallery] img.is-active {
  opacity: 1;
}

.split-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.split-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-flooring);
  margin-bottom: var(--space-2);
}

.split-card-giftshop .split-card-tag {
  color: var(--color-giftshop);
}

.split-card-venue .split-card-tag {
  color: var(--color-venue);
}

.split-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.split-card-desc {
  color: var(--color-ink-soft);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.split-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-gold-deep);
  width: fit-content;
  margin-top: auto;
}

.split-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

@media (prefers-reduced-motion: reduce) {
  .split-card,
  .split-card-photo img,
  .split-card-cta svg {
    transition: none;
  }
  .split-card:hover,
  .split-card:focus-visible {
    transform: none;
  }
}

@media (max-width: 900px) {
  .split-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ============================================
   Doors — the three experiences (homepage)
   ============================================ */

.doors-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: var(--space-3) 0 var(--space-8);
  background: var(--color-cream-deep);
}

.doors {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-3);
  min-height: 620px;
}

.door {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.door:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  outline: 3px solid var(--color-gold-deep);
  outline-offset: 3px;
}

@media (hover: hover) {
  .door:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}

.door-flooring {
  grid-row: 1 / 3;
}

.door-giftshop {
  grid-column: 2;
  grid-row: 1;
}

.door-venue {
  grid-column: 2;
  grid-row: 2;
}

.door img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.door:focus-visible img {
  transform: scale(1.03);
}

@media (hover: hover) {
  .door:hover img {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .door,
  .door img {
    transition: none;
  }
  .door:hover,
  .door:focus-visible {
    transform: none;
  }
  .door:hover img,
  .door:focus-visible img {
    transform: none;
  }
}

.door::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 24, 26, 0) 30%, rgba(20, 24, 26, 0.86) 100%);
  transition: opacity var(--transition);
}

.door-number {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.door-body {
  position: relative;
  z-index: 2;
  padding: var(--space-5);
}

.door-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2);
}

.door h3 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.door-flooring h3 {
  font-size: clamp(1.875rem, 1.6vw + 1.5rem, 2.875rem);
  max-width: 14ch;
}

.door-giftshop h3,
.door-venue h3 {
  font-size: clamp(1.375rem, 1vw + 1.125rem, 1.75rem);
}

.door p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
  margin-bottom: var(--space-3);
}

.door-giftshop p,
.door-venue p {
  display: none;
}

.door-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9375rem;
}

.door-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.door:hover .door-cta svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .doors {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .door-flooring,
  .door-giftshop,
  .door-venue {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }
  .door p {
    display: block;
  }
}

/* ============================================
   Material strip (flooring) — real swatches
   ============================================ */

.material-strip {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.material-strip-item {
  position: relative;
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.material-strip-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 24, 26, 0.55) 0%, transparent 45%);
}

.material-strip-label {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .material-strip {
    flex-wrap: wrap;
  }
  .material-strip-item {
    flex: 1 1 25%;
    min-width: 25%;
    aspect-ratio: 1 / 1;
  }
}

/* ============================================
   Gift Shop — warm collage hero
   ============================================ */

.hero.is-giftshop {
  background: var(--color-giftshop-soft);
}

@media (min-width: 901px) {
  .hero.is-giftshop {
    padding-top: var(--space-4);
    padding-bottom: var(--space-5);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 85px - 49px);
    min-height: calc(100dvh - 85px - 49px);
    box-sizing: border-box;
  }

  .hero.is-giftshop > .container {
    width: 100%;
  }
}

.hero-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 3vw + 1.25rem, 3.5rem);
  color: var(--color-giftshop);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.giftshop-collage {
  position: relative;
  min-height: 495px;
}

.giftshop-collage .ph-photo {
  position: absolute;
  border: 6px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
}

.giftshop-collage .photo-a {
  top: 0;
  left: 0;
  width: 85.5%;
  aspect-ratio: 5 / 4;
  z-index: 1;
}

.giftshop-collage .photo-b {
  bottom: 0;
  right: 0;
  width: 56.25%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  transform: rotate(4deg);
}

.giftshop-collage .photo-b:hover {
  transform: rotate(0deg);
}

/* Phones/tablets: the collage leads (a shop should open on product, not a
   wall of text) and keeps its overlapping-photo look in a compact form. */
@media (max-width: 900px) {
  .giftshop-collage {
    order: -1;
    min-height: 0;
    margin: 0 0 var(--space-3);
    padding-bottom: 8%;
  }
  .giftshop-collage .photo-a {
    position: relative;
    inset: auto;
    width: 80%;
    aspect-ratio: 4 / 3;
  }
  .giftshop-collage .photo-b {
    top: auto;
    left: auto;
    right: 2%;
    bottom: 0;
    width: 44%;
  }
}

/* ============================================
   Cinematic hero — full-bleed photo variant
   (Flooring flagship hero)
   ============================================ */

.cinematic-hero.has-photo {
  background-size: cover;
  background-position: center;
  padding: var(--space-9) 0 calc(var(--space-9) + var(--space-4));
}

.cinematic-hero.has-photo::before {
  background: linear-gradient(180deg, rgba(15, 16, 14, 0.5) 0%, rgba(15, 16, 14, 0.7) 55%, rgba(15, 16, 14, 0.92) 100%);
}

.cinematic-hero .hero-guarantee {
  margin-left: auto;
  margin-right: auto;
}

.cinematic-hero .hero-meta {
  border-top-color: rgba(255, 255, 255, 0.2);
  justify-content: center;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
}

.cinematic-hero .hero-meta-item strong {
  color: var(--color-white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.cinematic-hero .hero-meta-item span {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cinematic-hero .btn-outline {
  color: var(--color-white);
}

/* ============================================
   Christmas badge — festive callout under the
   Gift Shop hero buttons
   ============================================ */

.hero.is-giftshop .hero-actions {
  display: inline-flex;
  position: relative;
  padding-bottom: 38px;
  max-width: 100%;
}

@media (min-width: 901px) {
  .hero.is-giftshop .hero-actions {
    margin-top: var(--space-4);
  }
}

.christmas-badge {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.375rem var(--space-3);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #d97a56 0%, #b5573b 55%, #7a3a24 100%);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(122, 58, 36, 0.35);
  transition: transform var(--transition);
  animation: christmas-badge-glow 2.6s ease-in-out infinite;
}

.christmas-badge-icon {
  font-size: 0.9375rem;
  line-height: 1;
}

.christmas-badge:hover,
.christmas-badge:focus-visible {
  transform: translateX(-50%) scale(1.05);
}

.christmas-badge.is-inline {
  position: static;
  transform: none;
  margin-top: 0;
}

.christmas-badge.is-inline:hover,
.christmas-badge.is-inline:focus-visible {
  transform: scale(1.05);
}

@keyframes christmas-badge-glow {
  0%, 100% { box-shadow: 0 2px 6px rgba(122, 58, 36, 0.35); }
  50% { box-shadow: 0 2px 14px rgba(217, 122, 86, 0.7); }
}

@media (prefers-reduced-motion: reduce) {
  .christmas-badge {
    animation: none;
  }
}

/* ============================================
   Quill underline — single-use heading flourish
   ============================================ */

.quill-word {
  position: relative;
  display: inline-block;
}

.quill-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.28em;
  overflow: visible;
  pointer-events: none;
}

.quill-underline path {
  fill: none;
  stroke: var(--color-price-gold-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: quill-draw 1.4s cubic-bezier(.65, 0, .35, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes quill-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .quill-underline path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* ============================================
   Material pages (hardwood, carpet, tile, laminate/vinyl)
   ============================================ */

.hero.is-material {
  padding-bottom: var(--space-6);
}

.hero.is-material .lede {
  margin-left: 0;
  margin-right: 0;
}

.crumbs {
  margin-bottom: var(--space-3);
  font-size: 0.875rem;
  color: var(--color-ink-faint);
}

.crumbs a {
  color: var(--color-ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-border);
}

.crumbs a:hover,
.crumbs a:focus-visible {
  color: var(--color-gold-deep);
}

.catalog-grid.is-four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .catalog-grid.is-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .catalog-grid.is-four {
    grid-template-columns: 1fr;
  }
}

.gallery-grid-more.is-three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 560px) {
  .gallery-grid-more.is-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

.material-brands {
  margin-top: var(--space-6);
  text-align: center;
}

.material-brands h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

.brand-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  color: var(--color-ink-soft);
}

.brand-inline a {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-border);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.brand-inline a:hover,
.brand-inline a:focus-visible {
  color: var(--color-gold-deep);
  text-decoration-color: currentColor;
}

.material-note {
  max-width: 56ch;
  margin: var(--space-3) auto 0;
  color: var(--color-ink-soft);
  font-size: 0.9375rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-6);
  max-width: 980px;
  margin: 0 auto;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
}

.faq-item p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

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

.material-links {
  margin: var(--space-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  font-size: 0.9375rem;
}

.material-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  margin: 0 0 var(--space-5);
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
}

.brand-more {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-deep);
}

.brand-more:hover,
.brand-more:focus-visible {
  text-decoration: underline;
}

/* Team cards: only the owners carry a title badge, so reserve that line on
   every card to keep names, badges, and roles on the same baselines. */
.team-card h4 + p {
  margin-top: calc(0.8125rem * 1.6 + var(--space-3));
}

.contact-info-item p a {
  color: var(--color-gold-deep);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 3px;
}

.contact-info-item p a:hover {
  text-decoration-color: currentColor;
}

/* Gift Shop hero: its headline is a full sentence, so it runs a size
   smaller than the one-line page titles to stay at three lines and keep
   the buttons and proof points on the first screen. */
.hero.is-giftshop h1 {
  font-size: clamp(2rem, 2.1vw + 1.25rem, 3.125rem);
  line-height: 1.12;
  max-width: 21ch;
}

.hero.is-giftshop .hero-meta-item {
  flex: 1 1 0;
  min-width: 11rem;
}

/* Hero stat rows: share one line instead of wrapping into a 2x2 stack that
   pushes the rest of the first screen down. */
.hero .hero-meta-item {
  flex: 1 1 0;
  min-width: 7.5rem;
}

/* Flooring hero: let the photo fill the full height of the text column
   rather than sitting top-aligned with dead space under it. */
.hero.is-flooring .hero-grid {
  align-items: stretch;
}

/* Phones and tablets: stacked full-size cards meant only Flooring was
   visible on the first screen. Compact rows (photo left, name right) put
   all three businesses in view before any scrolling. */
@media (max-width: 900px) {
  .split-cards {
    gap: var(--space-3);
  }
  .split-card {
    flex-direction: row;
    align-items: stretch;
  }
  .split-card-photo {
    flex: 0 0 38%;
    aspect-ratio: auto;
    min-height: 124px;
  }
  .split-card-body {
    justify-content: center;
    padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  }
  .split-card-tag {
    font-size: 0.6875rem;
    margin-bottom: 2px;
  }
  .split-card-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-1);
  }
  .split-card-desc {
    display: none;
  }
  .split-card-cta {
    font-size: 0.875rem;
    margin-top: var(--space-1);
  }
  .hero-split-intro {
    margin-bottom: var(--space-4);
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .split-card-photo { flex-basis: 34%; min-height: 150px; }
  .split-card-desc { display: block; margin-bottom: var(--space-2); }
}

/* Venue hero on phones: less dead space above the headline and a size
   that keeps it to three or four lines, so the facts (capacity, square
   footage, furnished) reach the first screen. */
@media (max-width: 640px) {
  .cinematic-hero.has-photo {
    min-height: 0;
    padding: var(--space-7) 0 var(--space-8);
  }
  .cinematic-hero h1 {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    line-height: 1.1;
  }
}

.form-hint {
  margin: var(--space-2) 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6159);
  text-align: center;
}

.contact-note {
  margin-top: var(--space-1);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-muted);
}
