/* ============================================================
   DISCOUNT TILE OUTLET — PIXEL-PERFECT STATIC CSS
   Rebuilt from exact React/Tailwind source values
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700italic.woff2') format('woff2');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ── CSS CUSTOM PROPERTIES (exact from React source) ───────── */
:root {
  /* oklch values extracted directly from the React/Tailwind build */
  --color-cream:          oklch(97.5% .008 78);
  --color-charcoal:       oklch(19.5% .012 235);
  --color-gold-300:       oklch(80% .082 82);
  --color-gold-400:       oklch(72% .098 82);
  --color-gold-500:       oklch(64% .108 82);
  --color-gold-600:       oklch(56% .098 82);
  --color-gold-700:       oklch(48% .082 82);
  --color-stone-200:      oklch(88% .02 78);
  --color-stone-300:      oklch(80% .028 78);
  --color-stone-400:      oklch(68% .032 78);
  --color-stone-500:      oklch(56% .036 78);
  --font-serif: 'Playfair Display', serif;
  --font-sans:  'DM Sans', sans-serif;
  --container-max: 1320px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-stone-300); }
::-webkit-scrollbar-thumb:hover { background: var(--color-stone-400); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container-site {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container-site { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 1024px) {
  .container-site { padding-left: 4rem; padding-right: 4rem; }
}

/* ── TYPOGRAPHY COMPONENTS ──────────────────────────────────── */
.section-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
}
.section-divider {
  background: linear-gradient(to right, var(--color-gold-500), var(--color-gold-300));
  width: 2.5rem;
  height: 1.5px;
  margin-top: 0.875rem;
  margin-bottom: 1.75rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  background-color: var(--color-gold-600);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-gold-600);
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.22s, border-color 0.22s, transform 0.18s;
  cursor: pointer;
}
.btn-gold:hover {
  background-color: var(--color-gold-700);
  border-color: var(--color-gold-700);
  transform: translateY(-1px);
}

.btn-outline-white {
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.22s, border-color 0.22s, transform 0.18s;
  cursor: pointer;
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--color-charcoal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-charcoal);
  white-space: nowrap;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.22s, color 0.22s, transform 0.18s;
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-charcoal);
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--color-gold-600);
  border-color: var(--color-gold-600);
  transform: translateY(-1px);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.animate-fade-in-up { animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.animate-fade-in    { animation: fadeIn 0.6s ease forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ── INPUT FIELDS ───────────────────────────────────────────── */
.input-field {
  border: 1.5px solid var(--color-stone-200);
  width: 100%;
  color: var(--color-charcoal);
  appearance: none;
  background: #fff;
  outline: none;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field:focus {
  border-color: var(--color-gold-500);
  box-shadow: rgba(173,133,53,0.12) 0 0 0 3px;
}
.input-field::placeholder { color: var(--color-stone-400); }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-charcoal); color: #fff;
  padding: 0.5rem 1rem; font-family: var(--font-sans);
  font-size: 0.875rem; font-weight: 600;
  z-index: 9999; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid oklch(88% .02 78);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Top bar */
.top-bar {
  background-color: var(--color-charcoal);
  color: #fff;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .top-bar-inner { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .top-bar-inner { padding: 0 4rem; } }

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.top-bar-sep { color: rgba(255,255,255,0.35); }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: #fff; }
.top-bar-phone {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600 !important;
}
.top-bar-cta {
  background-color: #c9a84c !important;
  color: #1a1a1a !important;
  padding: 6px 12px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.2s;
}
.top-bar-cta:hover { background-color: #fff !important; color: #1a1a1a !important; }

/* Nav bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .nav-bar { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .nav-bar { padding: 0 4rem; } }

.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.nav-logo-top {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-bottom {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a,
.nav-links button {
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  position: relative;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 1.5px;
  background: var(--color-gold-500);
  transform: scaleX(0);
  transition: transform 0.22s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--color-charcoal); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-charcoal);
  color: #fff;
  padding: 9px 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background-color: var(--color-gold-600); color: var(--color-charcoal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--color-stone-200);
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-charcoal);
  text-transform: none;
  border-bottom: 1px solid var(--color-stone-200);
  transition: background-color 0.15s, color 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background-color: var(--color-cream); color: var(--color-gold-600); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  padding: 0.25rem;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; list-style: none; }
.mobile-nav-links a,
.mobile-nav-links button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-stone-200);
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links button:hover { color: var(--color-gold-600); }
.mobile-sub-links { padding-left: 1rem; display: none; }
.mobile-sub-links.open { display: block; }
.mobile-sub-links a {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  padding: 0.625rem 0 !important;
}
.mobile-nav-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      oklch(0.1 0.01 235 / 0.88) 0%,
      oklch(0.1 0.01 235 / 0.6) 45%,
      oklch(0.1 0.01 235 / 0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 70%);
}
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-inner {
  max-width: 42rem;
  animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-gold-300);
}
.hero-desc {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.6s ease 0.6s forwards;
  opacity: 0;
}
.hero-scroll-line {
  width: 1.5px;
  height: 3rem;
  background: linear-gradient(rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-bar { background-color: var(--color-charcoal); padding: 3rem var(--container-pad); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 1.5rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.55s, transform 0.55s;
}
.stat-item:nth-child(4) { border-right: none; }
body.js-animations .stat-item {
  opacity: 0;
  transform: translateY(16px);
}
body.js-animations .stat-item:nth-child(2) { transition-delay: 0.1s; }
body.js-animations .stat-item:nth-child(3) { transition-delay: 0.2s; }
body.js-animations .stat-item:nth-child(4) { transition-delay: 0.3s; }
body.js-animations .stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  color: var(--color-gold-400);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: var(--color-stone-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════════════ */
.products-section { padding: 6rem 0; background-color: var(--color-cream); }
.section-header-wrap { margin-bottom: 3.5rem; }
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-h2 em { font-style: italic; font-weight: 700; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 320px;
  text-decoration: none;
  transition: opacity 0.55s, transform 0.55s;
}
body.js-animations .product-card {
  opacity: 0;
  transform: translateY(28px);
}
body.js-animations .product-card:nth-child(2) { transition-delay: 0.08s; }
body.js-animations .product-card:nth-child(3) { transition-delay: 0.16s; }
body.js-animations .product-card:nth-child(4) { transition-delay: 0.24s; }
body.js-animations .product-card:nth-child(5) { transition-delay: 0.32s; }
body.js-animations .product-card:nth-child(6) { transition-delay: 0.40s; }
body.js-animations .product-card.visible { opacity: 1; transform: translateY(0); }
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.1 0.01 235 / 0.9) 0%,
    oklch(0.1 0.01 235 / 0.45) 50%,
    oklch(0.1 0.01 235 / 0.15) 100%);
  transition: opacity 300ms;
}
.product-card-hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: oklch(0.1 0.01 235 / 0.2);
  transition: opacity 300ms;
}
.product-card:hover .product-card-hover-overlay { opacity: 1; }
.product-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.product-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.product-card p {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-cta {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-300);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY SECTION (homepage)
══════════════════════════════════════════════════════════════ */
.gallery-section { padding: 6rem 0; background-color: #fff; }
.gallery-grid-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
  transition: opacity 0.6s, transform 0.6s;
}
body.js-animations .gallery-grid-desktop {
  opacity: 0;
  transform: translateY(20px);
}
body.js-animations .gallery-grid-desktop.visible { opacity: 1; transform: translateY(0); }
.gallery-grid-item { position: relative; overflow: hidden; }
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-grid-item:hover img { transform: scale(1.06); }
.g-item-1 { grid-area: 1 / 1 / 3 / 2; }
.g-item-2 { grid-area: 1 / 2 / 2 / 3; }
.g-item-3 { grid-area: 2 / 2 / 3 / 3; }
.g-item-4 { grid-area: 1 / 3 / 2 / 4; }
.g-item-5 { grid-area: 2 / 3 / 3 / 4; }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0), rgba(2,4,5,0.2), rgba(2,4,5,0.72));
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.g-item-2 .gallery-caption,
.g-item-3 .gallery-caption,
.g-item-4 .gallery-caption,
.g-item-5 .gallery-caption { padding: 1rem; }
.gallery-caption-type {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.gallery-caption-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
}
.g-item-2 .gallery-caption-title,
.g-item-3 .gallery-caption-title,
.g-item-4 .gallery-caption-title,
.g-item-5 .gallery-caption-title { font-size: 1rem; }

/* Mobile gallery */
.gallery-grid-mobile {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  transition: opacity 0.6s;
}
body.js-animations .gallery-grid-mobile { opacity: 0; }
body.js-animations .gallery-grid-mobile.visible { opacity: 1; }
.gallery-mobile-item { position: relative; overflow: hidden; height: 180px; }
.gallery-mobile-item img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   CONSULTATION SECTION
══════════════════════════════════════════════════════════════ */
.consultation-section { position: relative; overflow: hidden; min-height: 500px; }
.consultation-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.consultation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    oklch(0.1 0.01 235 / 0.9) 0%,
    oklch(0.1 0.01 235 / 0.6) 50%,
    oklch(0.1 0.01 235 / 0.2) 100%);
}
.consultation-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.consultation-inner { max-width: 36rem; }
.consultation-h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.consultation-h2 em { font-style: italic; }
.consultation-desc {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.consultation-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ══════════════════════════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════════════════════════ */
.reviews-section { padding: 6rem 0; background-color: var(--color-cream); }
.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-header .section-divider { margin-left: auto; margin-right: auto; }
.reviews-subtitle {
  font-family: var(--font-sans);
  color: var(--color-stone-500);
  margin-top: 0.875rem;
  font-size: 0.9375rem;
}
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background-color: #fff;
  border: 1px solid var(--color-stone-200);
  padding: 2.25rem;
  transition: opacity 0.55s, transform 0.55s;
}
body.js-animations .review-card {
  opacity: 0;
  transform: translateY(24px);
}
body.js-animations .review-card:nth-child(2) { transition-delay: 0.1s; }
body.js-animations .review-card:nth-child(3) { transition-delay: 0.2s; }
body.js-animations .review-card.visible { opacity: 1; transform: translateY(0); }
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.star-rating { color: var(--color-gold-500); letter-spacing: 0.04em; font-size: 0.9375rem; }
.review-source {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone-400);
}
.review-text {
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author-divider {
  width: 1.5rem;
  height: 1px;
  background-color: var(--color-stone-200);
  margin-bottom: 0.875rem;
}
.review-author { display: block; }
.review-avatar {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  flex-shrink: 0;
}
.review-author-name { font-family: var(--font-sans); font-weight: 600; font-size: 0.875rem; color: var(--color-charcoal); }
.review-author-location { font-family: var(--font-sans); font-size: 0.75rem; color: var(--color-stone-400); }

/* ══════════════════════════════════════════════════════════════
   BRANDS SECTION
══════════════════════════════════════════════════════════════ */
.brands-section {
  padding: 5rem 0;
  background-color: #fff;
  border-top: 1px solid var(--color-stone-200);
  border-bottom: 1px solid var(--color-stone-200);
}
.brands-header { text-align: center; margin-bottom: 3rem; }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
}
.brand-item {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-stone-400);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.brand-item:hover { color: var(--color-charcoal); }

/* ══════════════════════════════════════════════════════════════
   LOCATION / MAP SECTION
══════════════════════════════════════════════════════════════ */
.location-section { padding: 6rem 0; background-color: var(--color-cream); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.location-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.location-detail { margin-bottom: 1.75rem; }
.location-detail-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: 0.5rem;
}
.location-detail-value {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.6;
}
.location-detail-value a { color: var(--color-charcoal); text-decoration: none; transition: color 0.2s; }
.location-detail-value a:hover { color: var(--color-gold-600); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  padding: 0.375rem 0;
  vertical-align: top;
}
.hours-table td:first-child { font-weight: 500; width: 7rem; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 0.5rem; }
.payment-icon {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-stone-500);
  background: var(--color-stone-200);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
}
.map-container { border: 1px solid var(--color-stone-200); overflow: hidden; height: 420px; }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; } }
.footer-brand .nav-logo-top { color: #fff; font-size: 1.25rem; }
.footer-brand .nav-logo-bottom { color: var(--color-gold-400); }
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; margin-top: 0.875rem; }
.footer-contact-item a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--color-gold-300); }
.footer-contact-icon { color: var(--color-gold-400); flex-shrink: 0; margin-top: 2px; font-size: 0.875rem; }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold-300); }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-day { font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-family: var(--font-sans); font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════════════════════════ */
.page-hero { position: relative; overflow: hidden; min-height: 420px; }
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      oklch(0.1 0.01 235 / 0.88) 0%,
      oklch(0.1 0.01 235 / 0.6) 45%,
      oklch(0.1 0.01 235 / 0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 70%);
}
.page-hero-content { position: relative; padding: 8rem 0 5rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; font-weight: 700; color: var(--color-gold-300); }
.page-hero-desc {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-section { padding: 6rem 0; background-color: var(--color-cream); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }
.about-img-wrap { position: relative; height: 480px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { font-family: var(--font-sans); font-size: 1.0625rem; color: var(--color-stone-500); line-height: 1.75; margin-bottom: 1.25rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--color-stone-200);
}
.about-stat-number { font-family: var(--font-serif); font-weight: 700; font-size: 2rem; color: var(--color-gold-500); line-height: 1; margin-bottom: 0.25rem; }
.about-stat-label { font-family: var(--font-sans); font-size: 0.8125rem; color: var(--color-stone-500); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════════ */
.gallery-page-section { padding: 5rem 0; background-color: var(--color-cream); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.gallery-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--color-stone-200);
  background: #fff;
  color: var(--color-stone-500);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active { background: var(--color-charcoal); border-color: var(--color-charcoal); color: #fff; }
.gallery-masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
.gallery-masonry-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-masonry-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-item .gallery-caption { opacity: 0; transition: opacity 0.3s; }
.gallery-masonry-item:hover .gallery-caption { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   DESIGNERS PAGE
══════════════════════════════════════════════════════════════ */
.designers-section { padding: 6rem 0; background-color: var(--color-cream); }
.designer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--color-stone-200);
}
.designer-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
@media (min-width: 1024px) {
  .designer-card { grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
  .designer-card.reverse { grid-template-columns: 1fr 380px; }
  .designer-card.reverse .designer-img-wrap { order: 2; }
  .designer-card.reverse .designer-body { order: 1; }
}
.designer-img-wrap { position: relative; height: 460px; overflow: hidden; }
.designer-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.designer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.designer-title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: 1.5rem;
}
.designer-bio p { font-family: var(--font-sans); font-size: 1.0625rem; color: var(--color-stone-500); line-height: 1.75; margin-bottom: 1.25rem; }
.designer-specialties { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.designer-specialty-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: var(--color-stone-200);
  padding: 0.375rem 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS PAGE
══════════════════════════════════════════════════════════════ */
.reviews-page-section { padding: 5rem 0; background-color: var(--color-cream); }
.reviews-overview {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--color-stone-200);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
}
.reviews-rating-big {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4rem;
  color: var(--color-charcoal);
  line-height: 1;
}
.reviews-rating-detail { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-stone-500); margin-top: 0.25rem; }
.reviews-full-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .reviews-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-full-grid { grid-template-columns: repeat(3, 1fr); } }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-section { padding: 6rem 0; background-color: var(--color-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-form-wrap > p { font-family: var(--font-sans); font-size: 1rem; color: var(--color-stone-500); line-height: 1.65; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}
.contact-form textarea.input-field { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; }
.contact-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════════════
   TILE TYPE PAGES
══════════════════════════════════════════════════════════════ */
.tile-type-section { padding: 6rem 0; background-color: var(--color-cream); }
.tile-type-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .tile-type-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.tile-type-img-wrap { position: relative; height: 500px; overflow: hidden; }
.tile-type-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.tile-type-body h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.tile-type-body p { font-family: var(--font-sans); font-size: 1.0625rem; color: var(--color-stone-500); line-height: 1.75; margin-bottom: 1.25rem; }
.tile-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin: 2rem 0; }
.tile-feature { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-charcoal); font-weight: 500; }
.tile-feature::before { content: '✓'; color: var(--color-gold-500); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.8125rem; color: var(--color-stone-400); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--color-stone-400); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-gold-600); }
.breadcrumb-sep { color: var(--color-stone-300); }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════════ */
.legal-page { padding: 5rem 0; background-color: var(--color-cream); }
.legal-content { max-width: 800px; }
.legal-content h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-charcoal); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal-content .last-updated { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-stone-400); margin-bottom: 3rem; }
.legal-content h2 { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--color-charcoal); margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.legal-content p, .legal-content li { font-family: var(--font-sans); font-size: 1rem; color: var(--color-stone-500); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   STICKY PHONE BAR (mobile)
══════════════════════════════════════════════════════════════ */
.sticky-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  z-index: 100;
  border-top: 2px solid var(--color-gold-600);
}
.sticky-phone-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .gallery-grid-desktop { display: none; }
  .gallery-grid-mobile { display: grid; }
  .sticky-phone-bar { display: block; }
  body { padding-bottom: 56px; }
  .hero { min-height: 85vh; }
  .hero-content { min-height: 85vh; padding-top: 5rem; padding-bottom: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-overview { flex-direction: column; text-align: center; gap: 1rem; }
  .brands-grid { gap: 0.75rem 1.5rem; }
}
@media (max-width: 479px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-white { width: 100%; text-align: center; justify-content: center; }
  .stat-item:nth-child(2) { border-right: none; }
}
@media print {
  .site-header, .site-footer, .sticky-phone-bar, .mobile-nav { display: none !important; }
}
