:root {
  --clay: #b5652a;
  --clay-light: #d4845a;
  --clay-pale: #f2e0d0;
  --earth: #3d2b1f;
  --earth-mid: #6b4226;
  --cream: #faf6f1;
  --sand: #e8d5c0;
  --sage: #7a8c6e;
  --text: #2a1a10;
  --text-soft: #7a5c48;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(61,43,31,.08); }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--earth);
  letter-spacing: .02em; text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-soft); text-decoration: none; font-weight: 400;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--clay); transition: width .3s;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--earth); transition: .3s; }

/* ─── HERO ────────────────────────── */
/* ─── HERO (Full-Screen Slideshow) ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}
#home::before { display: none; }

/* Slideshow fills entire hero */
.hero-slideshow {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(.85);
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 6s cubic-bezier(.25,.46,.45,.94), filter 1.2s ease;
  z-index: 0;
}
.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(.85);
  z-index: 1;
}
.hero-slideshow .slide.prev {
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(.7);
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s ease, filter 1.2s ease;
}

/* Dark gradient overlay for text legibility */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(42,26,16,.75) 0%, rgba(42,26,16,.45) 50%, transparent 100%),
    linear-gradient(to top, rgba(42,26,16,.6) 0%, transparent 50%);
  pointer-events: none;
}

/* Slide arrows */
.slide-arrow {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  width: 48px; height: 48px; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, opacity .3s, border-color .25s;
  border-radius: 50%;
  opacity: 0;
  backdrop-filter: blur(6px);
}
#home:hover .slide-arrow { opacity: 1; }
.slide-arrow:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.5); }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }

/* Text overlay */
.hero-text {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 8rem 5vw 4rem;
  animation: fadeUp .9s ease both;
  text-align: left;
}
.hero-eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--clay-light); margin-bottom: 1.2rem; font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.08;
  color: #fff; margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(42,26,16,.3);
}
.hero-title em { font-style: italic; color: var(--clay-light); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.8);
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-block; padding: .9rem 2.4rem;
  background: var(--clay); color: #fff;
  font-family: 'Jost', sans-serif; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--earth-mid); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: .9rem 2.4rem;
  border: 1.5px solid rgba(255,255,255,.5); color: #fff;
  font-family: 'Jost', sans-serif; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  background: transparent; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ─── SECTION SHARED ─────────────── */
section { padding: 7rem 5vw; }
.section-eyebrow {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1rem; font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--earth); line-height: 1.2; margin-bottom: 1.6rem;
}
.section-title em { font-style: italic; }
.divider {
  width: 48px; height: 2px; background: var(--clay); margin-bottom: 2rem;
}

/* ─── ABOUT ───────────────────────── */
#about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.about-img-grid img:hover { transform: scale(1.04); }
.about-img-grid img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  padding: 1.6rem; border-left: 2px solid var(--clay-pale);
  transition: border-color .3s;
}
.value-card:hover { border-color: var(--clay); }
.value-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; color: var(--earth); }
.value-desc { font-size: .85rem; color: var(--text-soft); line-height: 1.7; }

/* ─── SERVICES ────────────────────── */
#services { background: var(--earth); color: var(--cream); }
#services .section-title { color: var(--cream); }
#services .section-eyebrow { color: var(--clay-light); }
#services .divider { background: var(--clay-light); }
.services-intro { font-size: 1rem; color: var(--sand); line-height: 1.8; max-width: 560px; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.service-card {
  background: rgba(255,255,255,.04);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s, transform .3s;
  cursor: default;
}
.service-card:hover { background: rgba(181,101,42,.15); transform: translateY(-4px); }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: var(--clay-light); opacity: .4; line-height: 1; margin-bottom: 1rem;
}
.service-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: .8rem;
}
.service-desc { font-size: .85rem; color: rgba(250,246,241,.6); line-height: 1.7; }

/* ─── STATS ───────────────────────── */
.stats-band {
  background: var(--clay);
  display: flex; justify-content: space-around; align-items: center;
  padding: 4rem 5vw; flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,5vw,5rem);
  font-weight: 300; color: #fff; line-height: 1;
}
.stat-label {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: .5rem;
}

/* ─── PRICING ─────────────────────── */
#pricing { background: var(--clay-pale); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card {
  background: var(--cream); padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.price-card:hover { border-color: var(--clay); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,.1); }
.price-card.featured {
  background: var(--earth); color: var(--cream);
  border-color: var(--clay-light);
}
.price-tag {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: var(--clay); line-height: 1; margin-bottom: .5rem;
}
.price-card.featured .price-tag { color: var(--clay-light); }
.price-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  color: var(--earth); margin-bottom: .6rem;
}
.price-card.featured .price-name { color: var(--cream); }
.price-desc { font-size: .85rem; color: var(--text-soft); line-height: 1.7; }
.price-card.featured .price-desc { color: rgba(250,246,241,.7); }

/* ─── TESTIMONIALS ────────────────── */
#testimonials { text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  padding: 2.5rem; background: var(--clay-pale);
  position: relative; text-align: left;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,43,31,.1); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  color: var(--clay); opacity: .25; position: absolute; top: .5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-style: italic; line-height: 1.7; color: var(--earth);
  margin-bottom: 1.5rem; position: relative; z-index: 1; padding-top: 1.5rem;
}
.testimonial-author { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); }

/* ─── GALLERY ─────────────────────── */
.gallery-band {
  display: grid; grid-template-columns: repeat(5,1fr); height: 320px;
  overflow: hidden;
}
.gallery-band img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85);
  transition: transform .6s ease, filter .4s;
  cursor: pointer;
}
.gallery-band img:hover { transform: scale(1.06); filter: saturate(1.1); }

/* ─── CTA ─────────────────────────── */
.cta-band {
  background: var(--earth); text-align: center;
  padding: 6rem 5vw;
}
.cta-band .section-title { color: var(--cream); margin-bottom: 1rem; }
.cta-band p { color: var(--sand); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.8; max-width: 500px; margin-inline: auto; }

/* ─── HOURS ───────────────────────── */
.hours-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  padding: 3.5rem 5vw;
}
.hours-list { margin-top: 1rem; max-width: 300px; }
.hours-row {
  display: flex; gap: 1.5rem; align-items: center;
  padding: .45rem 0; border-bottom: 1px solid var(--sand);
  font-size: .9rem;
}
.hours-day { font-weight: 400; color: var(--earth); min-width: 90px;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.hours-time { color: var(--text-soft); font-size: .9rem; }
.hours-time.closed { color: var(--clay); font-style: italic; }

/* ─── SOCIAL ICONS ────────────────── */
.social-links { margin-top: 1.5rem; }
.social-icons { display: flex; gap: .8rem; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); color: var(--earth);
  transition: background .25s, color .25s, transform .2s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--clay); color: #fff;
  transform: translateY(-2px);
}

/* ─── CONTACT ─────────────────────── */
#contact { background: var(--clay-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 3rem; }
.contact-info p { font-size: .9rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-icon { font-size: 1.2rem; margin-top: .1rem; }
.contact-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); margin-bottom: .2rem; }
.contact-value { font-size: .9rem; color: var(--text); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .5rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .9rem 1.2rem;
  border: 1px solid var(--sand); background: var(--cream);
  font-family: 'Jost', sans-serif; font-size: .9rem; color: var(--text);
  outline: none; transition: border-color .25s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--clay); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FAQ ─────────────────────────── */
#faq { }
.faq-grid { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .95rem; font-weight: 400;
  color: var(--earth); text-align: left;
  transition: color .25s;
}
.faq-question:hover { color: var(--clay); }
.faq-arrow { font-size: 1.2rem; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .9rem; color: var(--text-soft); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }

/* ─── FOOTER ──────────────────────── */
footer {
  background: var(--earth); color: rgba(250,246,241,.5);
  padding: 4rem 5vw 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--cream); margin-bottom: 1rem; font-weight: 600;
}
.footer-tagline { font-size: .85rem; line-height: 1.8; color: rgba(250,246,241,.5); }
.footer-col h4 {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-light); margin-bottom: 1.2rem; font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a { color: rgba(250,246,241,.5); text-decoration: none; font-size: .85rem; transition: color .25s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  background: var(--earth); border-top: 1px solid rgba(255,255,255,.07);
  text-align: center; padding: 1.2rem 5vw;
  font-size: .78rem; color: rgba(250,246,241,.3);
}

/* ─── ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 900px) {
  #home { padding: 0; text-align: center; }
  .hero-text { padding: 7rem 5vw 3rem; max-width: 100%; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(42,26,16,.7) 0%, rgba(42,26,16,.4) 50%, rgba(42,26,16,.7) 100%);
  }
  #about { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-band { grid-template-columns: repeat(3,1fr); }
  .gallery-band img:nth-child(4), .gallery-band img:nth-child(5) { display: none; }
  .hours-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > div:first-child { grid-column: 1 / -1; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 2rem 5vw; gap: 1.5rem; border-bottom: 1px solid var(--sand); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}
@media (max-width: 580px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-band { flex-direction: column; }
}
