/* ============================================
   DISTINCT STONE SOLUTIONS — Master Stylesheet
   Pure HTML/CSS/JS · Zero Dependencies
   ============================================ */

/* --- Google Fonts loaded in HTML head ---
   Cormorant Garamond (display) + DM Sans (body)
*/

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* Stone-inspired palette */
  --color-cream:       #F5F0E8;
  --color-warm-white:  #FAF8F4;
  --color-sand:        #E8DFD0;
  --color-travertine:  #D4C5AD;
  --color-walnut:      #8B7355;
  --color-dark-walnut: #5C4A32;
  --color-charcoal:    #2C2820;
  --color-deep:        #1A1714;
  --color-accent:      #9E7B4F;
  --color-accent-light:#C9A96E;
  --color-text:        #3A352D;
  --color-text-light:  #6B6358;
  --color-border:      #D9D0C2;
  --color-overlay:     rgba(26, 23, 20, 0.65);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 7rem);
  --container-max: 1280px;
  --gap: clamp(1rem, 3vw, 2rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease-out);
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ========================
   TOP BAR
   ======================== */
.top-bar {
  background: var(--color-deep);
  color: var(--color-sand);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--color-sand);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--color-accent-light);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ========================
   HEADER / NAV
   ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
  border-radius: 3px;
}

.logo-text {
  display: none; /* Logo image already contains the text */
}

/* Show text version in footer where bg is dark */
.site-footer .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
}

.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--color-accent);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdowns */
.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.4rem;
  vertical-align: middle;
  opacity: 0.5;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
  padding: 0.5rem 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: var(--color-cream);
  color: var(--color-accent);
  padding-left: 1.5rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 0 auto;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================
   HERO
   ======================== */
/* Slideshow - full visual impact, no text overlay */
.hero-slideshow {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--color-deep);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 10s linear;
  transform: scale(1.06);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Slide indicators sit at the bottom */
.hero-slideshow .hero-indicators {
  z-index: 5;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicator.active {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: scale(1.2);
}

/* Text band below slideshow */
.hero-text-band {
  position: relative;
  z-index: 10;
  background: var(--color-deep);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.hero-text-band h1 {
  color: var(--color-cream);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-text-band h1 em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero-text-band .section-label {
  color: var(--color-accent);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-sand);
  line-height: 1.8;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Single image fallback (other pages) */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 8s linear;
}

.hero:hover .hero-bg {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 23, 20, 0.85) 0%,
    rgba(26, 23, 20, 0.5) 50%,
    rgba(26, 23, 20, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--section-pad) 0;
}

.hero h1 {
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

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

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-sand);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 123, 79, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

.btn-dark:hover {
  background: var(--color-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================
   PRODUCT CARDS (Category)
   ======================== */
.product-categories {
  padding: var(--section-pad) 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 3rem;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  group: true;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.85) 0%,
    rgba(26, 23, 20, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.9) 0%,
    rgba(26, 23, 20, 0.2) 70%
  );
}

.category-card h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--color-sand);
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.category-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.category-card .card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.category-card:hover .card-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(3px, -3px);
}

.card-arrow svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ========================
   PRODUCT GRID (Catalog)
   ======================== */
.product-grid-section {
  padding: var(--section-pad) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}

.product-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-sand);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.25rem 1.5rem;
}

.product-card-code {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.product-card-type {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-tab.active {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: #fff;
}

/* ========================
   INDIVIDUAL PRODUCT PAGE
   ======================== */
.product-detail {
  padding: var(--section-pad) 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery-main {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-sand);
  margin-bottom: 1rem;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product-gallery-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--color-accent);
  opacity: 1;
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.product-info .product-code {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.product-info .product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.product-specs {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.spec-label {
  font-weight: 500;
  color: var(--color-text);
}

.spec-value {
  color: var(--color-text-light);
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-hero {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-sand);
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.about-content-section {
  padding: var(--section-pad) 0;
}

.about-content-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-light);
  max-width: 800px;
}

.about-content-section p + p {
  margin-top: 1.5rem;
}

.hours-box {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  margin-top: 2rem;
  max-width: 400px;
}

.hours-box h4 {
  margin-bottom: 0.75rem;
}

.hours-box p {
  font-size: 0.95rem !important;
  margin: 0.3rem 0 !important;
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-section {
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-cream);
  border-radius: 4px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--color-sand);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-info-card h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Form */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-warm-white);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ========================
   FAQ
   ======================== */
.faq-section {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-accent);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================
   LOCATION / MAP
   ======================== */
.location-section {
  padding: var(--section-pad) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================
   PORTFOLIO / GALLERY
   ======================== */
.portfolio-section {
  padding: var(--section-pad) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 3rem;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-sand);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay h4 {
  color: #fff;
  font-size: 1.1rem;
}

.portfolio-card-overlay span {
  display: block;
  color: var(--color-sand);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ========================
   PAGE HERO (Inner pages)
   ======================== */
.page-hero {
  background: var(--color-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(158,123,79,0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.1) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--color-cream);
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-travertine);
}

.breadcrumb a {
  color: var(--color-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb a:hover {
  color: var(--color-accent-light);
}

/* ========================
   CTA BAND
   ======================== */
.cta-band {
  background: var(--color-charcoal);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--color-sand);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-band .btn {
  margin: 0 0.5rem;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--color-deep);
  color: var(--color-sand);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: var(--color-travertine);
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-travertine);
  padding: 0.3rem 0;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-accent-light);
  padding-left: 0.3rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--color-travertine);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================
   LIGHTBOX
   ======================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
}

/* ========================
   SAMPLE BOX CTA (floating)
   ======================== */
.sample-cta {
  background: var(--color-cream);
  padding: var(--section-pad) 0;
}

.sample-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sample-cta-image {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-sand);
}

.sample-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================
   ANIMATIONS
   ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-warm-white);
    padding: 5rem 2rem 2rem;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease-out);
    overflow-y: auto;
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav > ul > li > a {
    padding: 1rem 0;
    font-size: 1rem;
  }

  .main-nav > ul > li > a::after { display: none; }

  .has-dropdown > a::before { right: 0; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem 1rem;
    display: none;
  }

  .has-dropdown.mobile-open .dropdown {
    display: block;
  }

  .nav-toggle { display: block; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Layout adjustments */
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    aspect-ratio: 16/9;
  }

  .category-card p {
    opacity: 1;
    transform: none;
  }

  .contact-grid,
  .location-grid,
  .sample-cta-inner {
    grid-template-columns: 1fr;
  }

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

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

  .hero { min-height: 70vh; }
  .hero-slideshow { height: 45vh; min-height: 280px; }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .top-bar-right { display: none; }
}

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

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

/* ========================
   UTILITY
   ======================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
