:root {
  --stone: #2c2825;
  --warm: #8b7355;
  --gold: #c9a96e;
  --cream: #f5f0e8;
  --light: #faf7f2;
  --white: #ffffff;
  --text: #3a3530;
  --muted: #8a8078;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--light);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(44, 40, 37, 0.96);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--stone) !important;
  padding: 0.6rem 1.4rem;
  opacity: 1 !important;
  font-weight: 500;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--cream) !important; color: var(--stone) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
}

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

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.55);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(26,23,20,0.88) 0%, rgba(44,40,37,0.82) 40%, rgba(61,53,48,0.78) 70%, rgba(42,35,32,0.88) 100%),
    url('/images/Marble-Slabs.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 75% 40%, rgba(139,115,85,0.06) 0%, transparent 60%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--stone);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
}

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

.btn-outline {
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* TAGLINE STRIP */
.tagline-strip {
  background: var(--cream);
  padding: 2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(139,115,85,0.15);
}

.tagline-item {
  text-align: center;
}

.tagline-item .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.tagline-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTIONS */
section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--warm); }

/* ABOUT */
.about { background: var(--light); }

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

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-text p strong { color: var(--text); font-weight: 500; }

.about-visual {
  position: relative;
}

.stone-card {
  background: linear-gradient(135deg, #2c2825, #4a403a);
  padding: 3rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.stone-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
}

.stone-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 50%;
}

.stone-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.stone-card .quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.discount-badge {
  background: var(--gold);
  color: var(--stone);
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* SERVICES */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(139,115,85,0.2);
  margin-top: 3rem;
}

.service-card {
  background: var(--light);
  padding: 2.8rem 2.2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--white); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
}

/* WHY US */
.why { background: var(--stone); color: var(--cream); }

.why .section-title { color: var(--cream); }

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

.why-item {
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2rem;
  transition: border-color 0.3s;
}

.why-item:hover { border-color: var(--gold); }

.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
}

/* AREAS */
.areas { background: var(--light); }

.areas-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.area-tag {
  background: var(--cream);
  border: 1px solid rgba(139,115,85,0.25);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--gold);
  color: var(--stone);
  border-color: var(--gold);
}

/* REVIEWS */
.reviews { background: var(--cream); }

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

.review-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* REVIEW BADGES */
.review-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.review-badge {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(139,115,85,0.2);
  width: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(44,40,37,0.1);
}

.yelp-badge .badge-top {
  background: #c41200;
  color: #fff;
  text-align: center;
  padding: 0.7rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.yelp-badge .badge-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
}

.yelp-badge .badge-reviews {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.yelp-badge .badge-yelp-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.4rem;
  color: #c41200;
  white-space: nowrap;
}

.yelp-badge .yelp-dot { color: var(--gold); }

.angi-badge {
  justify-content: center;
  align-items: center;
  padding: 1.3rem 1.2rem;
  gap: 0.4rem;
}

.angi-badge-inner {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.angi-badge .angi-text {
  font-size: 1.05rem;
  color: var(--stone);
  font-weight: 400;
}

.angi-badge .angi-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.7rem;
  color: #ff6153;
}

.angi-badge .angi-url {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* CONTACT */
.contact { background: var(--stone); }

.contact .section-title { color: var(--cream); }
.contact .section-tag { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.65);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail a,
.contact-detail span {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--gold); }

.contact-detail .icon {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
}

.contact-form-area {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

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

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

.form-group select option { background: var(--stone); }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--stone);
  border: none;
  padding: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--cream); }

/* FOOTER */
footer {
  background: #1a1714;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 300;
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-info {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.footer-lic {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
}

/* PAGE HERO (interior pages: About, Gallery, etc.) */
.page-hero {
  padding: 9rem 2rem 5rem;
  background: linear-gradient(135deg, #1a1714 0%, #2c2825 60%, #3d3530 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.page-hero p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ABOUT PAGE */
.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-photo-wrap {
  position: sticky;
  top: 6rem;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(8%) brightness(0.97);
}

.photo-caption {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.photo-caption strong { color: var(--warm); display: block; font-weight: 500; }

.about-opener h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-opener h2 em { font-style: italic; color: var(--warm); }

.about-opener p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(139,115,85,0.15);
  border: 1px solid rgba(139,115,85,0.15);
  margin-bottom: 5rem;
}
.stat {
  background: var(--light);
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ABOUT CONTENT SECTIONS */
.about-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-bottom: 5rem;
}

.about-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
.about-section p { font-size: 0.92rem; color: var(--text); }

/* STONE GUIDE */
.stone-guide {
  background: var(--cream);
  padding: 3.5rem;
  margin-bottom: 5rem;
}
.stone-guide h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.stone-guide > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.stone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stone-type-card {
  background: var(--white);
  padding: 1.8rem;
  border-top: 3px solid var(--gold);
}
.stone-type-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.stone-type-card p { font-size: 0.85rem; color: var(--text); line-height: 1.7; }

/* ABOUT CTA */
.about-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c2825, #1a1714);
}
.about-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.about-cta h3 em { font-style: italic; color: var(--gold); }
.about-cta p { font-size: 0.9rem; color: rgba(245,240,232,0.6); margin-bottom: 2rem; }
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--stone);
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--cream); }

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 320px; margin: 0 auto; }
  .about-sections { grid-template-columns: 1fr; }
  .stone-cards { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
}

/* GALLERY PAGE */
.filter-bar {
  padding: 3rem 2rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1px solid rgba(139,115,85,0.3);
  background: transparent;
  padding: 0.5rem 1.3rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--stone);
}

.gallery-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}

.gallery-grid {
  columns: 4;
  column-gap: 10px;
}

@media (max-width: 1100px) { .gallery-grid { columns: 3; } }
@media (max-width: 720px)  { .gallery-grid { columns: 2; } }
@media (max-width: 420px)  { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--cream);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.97);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,40,37,0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}

.gallery-item:hover .overlay {
  background: rgba(44,40,37,0.35);
}

.overlay-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.gallery-item:hover .overlay-label {
  opacity: 1;
  transform: translateY(0);
}

.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,17,15,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.lightbox img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.lb-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--cream);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.lb-nav:hover { background: var(--gold); color: var(--stone); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }

.gallery-count {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -85%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26, 23, 20, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 6rem 2.2rem 2rem;
    transition: right 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { display: inline-block; }
  .tagline-strip { padding: 2rem 1.5rem; gap: 2rem; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-lic { text-align: center; }
  .stone-guide { padding: 2rem 1.5rem; }
  .lb-prev { left: -10px; }
  .lb-next { right: -10px; }
}
