:root {
  --stone: #b8a99a;
  --stone-light: #e8e0d8;
  --stone-dark: #5a4a3e;
  --cream: #f5f0ea;
  --white: #faf8f5;
  --charcoal: #1e1a17;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text: #2c2520;
  --text-muted: #8a7b70;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,234,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,169,154,0.3);
  transition: padding 0.3s ease;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(30,26,23,0.97) 0%, rgba(90,74,62,0.88) 60%, rgba(30,26,23,0.97) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(184,169,154,0.04) 0px,
      rgba(184,169,154,0.04) 1px,
      transparent 1px,
      transparent 40px
    );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(232,224,216,0.75);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-cta {
  display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  border: 1px solid rgba(232,224,216,0.5);
  color: var(--stone-light);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  position: absolute; bottom: 48px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 80px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

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

/* SECTION BASICS */
section { padding: 100px 60px; }
.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.section-heading em { font-style: italic; color: var(--stone-dark); }

/* ABOUT */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  font-weight: 300;
  color: #4a3f36;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.detail-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}
.detail-card .dc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.detail-card .dc-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* PRODUCTS */
#products { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.75;
  cursor: pointer;
}
.product-card .pc-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.product-card .pc-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card:hover .pc-bg { transform: scale(1.06); }
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,26,23,0.88) 0%, rgba(30,26,23,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 22px;
}
.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}
.pc-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 6px;
}

/* SERVICES */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* MISSION & VISION */
#mission-vision {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.mv-stone {
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.mv-stone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv-stone::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    40deg,
    transparent 0px, transparent 30px,
    rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px
  );
}
.mv-text {
  padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.mv-container {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mv-item {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.mv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.mv-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,224,216,0.8);
  line-height: 1.7;
}


/* GALLERY */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,26,23,0.9) 0%, rgba(30,26,23,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-cat {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  transform: translateY(20px);
  transition: transform 0.5s ease 0.1s;
}
.gallery-item:hover .gallery-cat,
.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* FAQ */
#faq { background: var(--white); }
.faq-flex {
  display: flex; gap: 80px; align-items: flex-start; margin-top: 56px;
}
.faq-list { flex: 1; }
.faq-item {
  border-bottom: 1px solid var(--stone-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}
.faq-question span {
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.faq-toggle {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all 0.3s;
}
.faq-toggle::before {
  width: 100%;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-toggle::after {
  width: 1.5px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.active .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item.active .faq-question span { color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-sidebar {
  flex: 0 0 340px;
}
.contact-box {
  background: var(--cream);
  padding: 44px 40px;
  border-left: 4px solid var(--gold);
}
.contact-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.contact-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* CONTACT */
#contact {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-heading { margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 28px;
}
.cd-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.8; }
.cd-content .cd-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail .cd-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(184,169,154,0.4);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--stone-dark); }

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(184,169,154,0.2);
}
.footer-brand .nav-logo { font-size: 20px; display: block; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(184,169,154,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-website {
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(184,169,154,0.8);
  padding: 5px 0;
  line-height: 1.6;
}
.footer-copyright {
  background: #C9A96E;
  padding: 24px 60px;
}
.footer-copyright .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copyright p {
  font-size: 14px;
  font-weight: 400;
  color: #1e1a17;
  margin: 0;
}
.footer-copyright a {
  color: #1e1a17;
  text-decoration: none;
  font-weight: 500;
}
.footer-copyright .text-md-end {
  text-align: right;
}
.footer-copyright img {
  display: block;
  margin-left: auto;
}

/* RESPONSIVE */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  #about, #contact { grid-template-columns: 1fr; gap: 48px; }
  #mission-vision { grid-template-columns: 1fr; }
  .mv-stone { min-height: 300px; }
  .mv-text { padding: 72px 24px; }
  .faq-flex { flex-direction: column; }
  .faq-sidebar { flex: none; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 400px; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.3s;
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  
  section { padding: 72px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-stats { gap: 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .footer-copyright { padding: 30px 24px; }
  .footer-copyright .row { flex-direction: column; text-align: center; gap: 20px; }
  .footer-copyright .text-md-end { text-align: center; }
  .footer-copyright img { margin: 0 auto; }
  .about-details { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 15px; }
  .gallery-item { height: 350px; }
}
