/* ============================================================
   Discount Tile Outlet — style.css
   Pure CSS, no framework. Self-hosted fonts.
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-700-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ───────────────────────────────────────────── */
:root {
  --gold:        #b8962e;
  --gold-light:  #d4a843;
  --dark:        #1a1a1a;
  --dark-2:      #111111;
  --cream:       #f8f6f1;
  --cream-2:     #f2ede4;
  --white:       #ffffff;
  --text:        #2a2a2a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e0d9cc;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Montserrat', Arial, sans-serif;
  --nav-h:       72px;
  --topbar-h:    40px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid currentColor;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
}
.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold); color: var(--white); }
.btn-white {
  color: var(--white);
  border-color: var(--white);
}
.btn-white:hover { background: var(--white); color: var(--dark); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #333; border-color: #333; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--dark-2);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.topbar-info {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}
.topbar-info span { margin: 0 8px; color: #555; }
.topbar-actions { display: flex; align-items: center; gap: 20px; }
.topbar-phone {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ccc;
}
.topbar-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--gold-light); }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  color: var(--gold);
  font-family: var(--sans);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a, .nav-links button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-dropdown-arrow { font-size: 9px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone::before { content: '📞'; font-size: 12px; }
.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); }

/* Mega menu dropdown */
.nav-dropdown { position: relative; }
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px;
  min-width: 480px;
  z-index: 200;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 4px;
  transition: background 0.15s;
}
.mega-item:hover { background: var(--cream); }
.mega-item-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mega-item-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}
.mega-item-desc {
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.25s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-nav-close {
  font-size: 24px;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-tile-types { padding: 8px 0 8px 16px; }
.mobile-nav-tile-types a {
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 10px 0;
  color: var(--text-mid);
}
.mobile-nav-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-main-bathroom.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: 680px;
  margin: 0 auto 0 calc(50% - 600px + 24px);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid #333;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* ── Products Section ────────────────────────────────────── */
.products-section {
  padding: 96px 0;
  background: var(--white);
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.product-card-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.product-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 10px;
  display: inline-block;
}

/* ── Gallery Section ─────────────────────────────────────── */
.gallery-section {
  padding: 96px 0;
  background: var(--cream);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.gallery-item-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.gallery-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Consultation Section ────────────────────────────────── */
.consult-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.consult-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-natural-stone.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.consult-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.7;
}
.consult-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.consult-content .section-label { color: var(--gold-light); }
.consult-content .section-label::after { background: var(--gold-light); }
.consult-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.consult-title em { font-style: italic; }
.consult-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}
.consult-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Reviews Section ─────────────────────────────────────── */
.reviews-section {
  padding: 96px 0;
  background: var(--cream);
}
.reviews-header { text-align: center; margin-bottom: 16px; }
.reviews-header .section-label { display: inline-block; }
.reviews-header .section-label::after { margin: 8px auto 0; }
.reviews-subtext {
  text-align: center;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 56px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-source {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.review-location {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.reviews-cta { text-align: center; }

/* ── Brands Section ──────────────────────────────────────── */
.brands-section {
  padding: 72px 0;
  background: var(--white);
}
.brands-header { text-align: center; margin-bottom: 40px; }
.brands-header .section-label { display: inline-block; }
.brands-header .section-label::after { margin: 8px auto 0; }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.brand-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ── Find Us Section ─────────────────────────────────────── */
.findus-section {
  padding: 96px 0;
  background: var(--cream);
}
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.findus-info .section-label { margin-bottom: 16px; }
.findus-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
}
.findus-detail {
  margin-bottom: 24px;
}
.findus-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.findus-detail p, .findus-detail a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.findus-detail a:hover { color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  font-size: 14px;
  padding: 6px 0;
  color: var(--text);
}
.hours-table tr td:first-child { font-weight: 600; width: 100px; }
.findus-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.findus-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  padding: 64px 0 0;
  color: #aaa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #888;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  gap: 8px;
}
.footer-hours-row span:first-child { font-weight: 600; color: #ccc; min-width: 80px; }
.footer-service-area {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-service-area strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #555; }
.footer-bottom-links a:hover { color: #888; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* ── About Page ──────────────────────────────────────────── */
.about-story {
  padding: 96px 0;
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-text blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}
.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.about-stat-item { text-align: center; }
.about-stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 4px;
}
.about-values {
  padding: 96px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-page-section {
  padding: 72px 0;
  background: var(--white);
}
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,46,0.06);
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-page-item {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.gallery-page-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.gallery-page-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.gallery-page-item-info { padding: 20px; }
.gallery-page-item-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gallery-page-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.gallery-page-item-loc {
  font-size: 12px;
  color: var(--text-light);
}
.gallery-page-item-desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.6;
}

/* ── Tile Type Pages ─────────────────────────────────────── */
.tile-page-section {
  padding: 96px 0;
  background: var(--white);
}
.tile-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.tile-intro-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tile-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.tile-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.tile-feature-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 4px;
}
.tile-feature-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.tile-feature-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.tile-cta-section {
  background: var(--dark);
  padding: 64px;
  border-radius: 4px;
  text-align: center;
}
.tile-cta-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.tile-cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.tile-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Designers Page ──────────────────────────────────────── */
.designers-section {
  padding: 96px 0;
  background: var(--white);
}
.designers-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.designers-intro p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}
.designer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.designer-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.designer-avatar {
  background: var(--dark);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  max-width: 380px;
}
.designer-avatar-letter {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.designer-info .section-label { margin-bottom: 8px; }
.designer-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.designer-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.designer-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
}
.designer-bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}
.designer-expertise-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.expertise-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-mid);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 2px;
}

/* ── Reviews Page ────────────────────────────────────────── */
.reviews-page-section {
  padding: 96px 0;
  background: var(--white);
}
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--cream);
  padding: 48px;
  border-radius: 4px;
  margin-bottom: 64px;
}
.reviews-big-score {
  text-align: center;
}
.reviews-big-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.reviews-big-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; margin: 8px 0; }
.reviews-big-count { font-size: 13px; color: var(--text-light); }
.reviews-bars { flex: 1; }
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.review-bar-label { width: 50px; text-align: right; }
.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}
.review-bar-count { width: 24px; }
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info .section-label { margin-bottom: 16px; }
.contact-info-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
}
.contact-detail { margin-bottom: 28px; }
.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-detail p, .contact-detail a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold); }
.contact-form-section .section-label { margin-bottom: 16px; }
.contact-form-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}
.form-note a { color: var(--gold); }

/* ── Sticky Phone Bar (mobile) ───────────────────────────── */
.sticky-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--dark);
  padding: 0;
}
.sticky-phone-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sticky-phone-btn, .sticky-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.sticky-phone-btn { background: var(--gold); }
.sticky-directions-btn { background: var(--dark); border-left: 1px solid #333; }
.sticky-phone-btn:hover { background: var(--gold-light); }
.sticky-directions-btn:hover { background: #222; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { margin-left: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 0px; }
  .topbar { display: none; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-phone-bar { display: block; }

  .hero { height: 80vh; min-height: 500px; }
  .hero-content { margin: 0; padding: 0 20px; max-width: 100%; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .products-header { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr 1fr; }

  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: span 1; }

  .reviews-grid { grid-template-columns: 1fr; }

  .findus-grid { grid-template-columns: 1fr; gap: 40px; }
  .findus-map iframe { height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .gallery-page-grid { grid-template-columns: 1fr 1fr; }

  .tile-intro-grid { grid-template-columns: 1fr; }
  .tile-features { grid-template-columns: 1fr; }

  .designer-card { grid-template-columns: 1fr; }
  .designer-avatar { max-width: 100%; aspect-ratio: unset; padding: 40px; }

  .reviews-summary { grid-template-columns: 1fr; gap: 32px; }
  .reviews-page-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .consult-section { padding: 80px 0; }
  .consult-actions { flex-direction: column; }

  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Animations ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── About Intro Section ─────────────────────────────────── */
.about-intro-section {
  padding: 80px 0;
  background: var(--white);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-intro-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-mid);
}
.about-intro-text p:last-child { margin-bottom: 0; }
.about-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quick-fact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-fact-number {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.quick-fact-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.quick-fact-note {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Key Terms Section ───────────────────────────────────── */
.key-terms-section {
  padding: 80px 0;
  background: var(--cream);
}
.key-terms-intro {
  max-width: 640px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.8;
}
.key-terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.def-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.def-card dt {
  margin-bottom: 8px;
}
.def-card dfn {
  font-style: normal;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.def-card dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
}
@media (max-width: 900px) {
  .key-terms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .key-terms-grid { grid-template-columns: 1fr; }
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item details {
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item details[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}
