/* ==========================================================================
   Mountain West Timber — shared styles
   ========================================================================== */

:root {
  --charcoal: #201a10;
  --charcoal-2: #2b2114;
  --cream: #faf6ef;
  --cream-2: #f1ead9;
  --paper: #fffdfa;
  --wood: #ad5a20;
  --wood-dark: #7c3f14;
  --wood-light: #e0993f;
  --ink: #2b2620;
  --ink-soft: #5b5347;
  --line: #e7ddcd;
  --header-solid-bg: rgba(250, 246, 239, 0.92);
  --radius: 14px;
  --shadow: 0 20px 50px -25px rgba(28, 25, 21, 0.45);
  --shadow-sm: 0 8px 24px -12px rgba(28, 25, 21, 0.35);
  --maxw: 1180px;
  font-size: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #16130f;
    --cream-2: #1c1813;
    --paper: #1a1611;
    --ink: #ede5d8;
    --ink-soft: #b8ab97;
    --line: #332c22;
    --charcoal: #0f0d0a;
    --header-solid-bg: rgba(22, 19, 15, 0.92);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { line-height: 1.7; color: var(--ink-soft); margin: 0 0 1em; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--wood);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--wood);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--wood-dark); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover { background: #140d05; }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--wood); color: var(--wood); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.solid {
  background: var(--header-solid-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) {
  .brand-logo { height: 40px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: background .2s ease, color .3s ease;
}
.site-header.solid .main-nav a,
.site-header.always-solid .main-nav a { color: var(--ink-soft); }
.main-nav a:hover { background: rgba(255,255,255,0.12); }
.site-header.solid .main-nav a:hover,
.site-header.always-solid .main-nav a:hover { background: var(--cream-2); color: var(--ink); }
.main-nav a.active { color: var(--wood) !important; font-weight: 600; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  transition: color .3s ease;
}
.site-header.solid .header-phone,
.site-header.always-solid .header-phone { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-header.solid .nav-toggle,
.site-header.always-solid .nav-toggle { color: var(--ink); border-color: var(--line); }

@media (max-width: 940px) {
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .header-cta .btn-primary { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .35s ease, visibility 0s linear .35s;
}
.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s ease;
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.mobile-nav a {
  color: #fff;
  font-family: "Lora", serif;
  font-size: 1.6rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 28px; align-self: flex-start; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--charcoal) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.hero-video {
  position: absolute; top: 100px; left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100% - 100px);
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute; top: 100px; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(18,15,11,.35) 38%, rgba(14,12,9,.85) 100%);
  z-index: -1;
}
@media (max-width: 720px) {
  .hero-video, .hero::before { top: 76px; height: calc(100% - 76px); }
}
.hero-inner {
  padding: 180px 0 88px;
  max-width: 760px;
}
.hero .eyebrow { color: #ffb457; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.hero .eyebrow::before { background: #ffb457; box-shadow: 0 1px 6px rgba(0,0,0,.6); }
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}
.hero-stats div strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 1.6rem;
  color: #fff;
}
.hero-stats div span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 720px) {
  .hero-inner { padding: 150px 0 56px; }
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: 20px; }
}

/* ---------------- Video modal ---------------- */
.video-trigger { background: rgba(255,255,255,0.1); }
.video-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,9,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; }
.video-modal-inner video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.video-modal-close:hover { background: var(--wood); border-color: var(--wood); }
@media (max-width: 640px) { .video-modal { padding: 16px; } }

/* ---------------- Trust strip ---------------- */
.trust-strip {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-strip .container > div { display: flex; align-items: center; gap: 10px; }
.trust-strip svg { color: var(--wood-light); flex-shrink: 0; }

/* ---------------- Section heads ---------------- */
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

/* ---------------- Services ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { box-shadow: 0 0 0 3px var(--wood), var(--shadow-sm); }
.service-card .badge,
.package-card .badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: var(--wood);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 999px;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0) 35%, rgba(15,13,10,.92) 100%);
}
.service-card-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
}
.service-card-content .num {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  color: var(--wood-light);
  display: block;
  margin-bottom: 6px;
}
.service-card-content h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.service-card-content p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-bottom: 0; }

/* ---------------- Packages ---------------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .package-grid { grid-template-columns: 1fr; } }
.package-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package-card.featured { box-shadow: 0 0 0 3px var(--wood), var(--shadow-sm); }
.package-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.package-card-body { padding: 22px; }
.package-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.package-card-body .price {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  color: var(--wood);
  margin-bottom: 2px;
}
.package-card-body .estimate { color: var(--ink-soft); font-size: 1rem; }
.package-card-body .range {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.package-card-body p:last-child { margin-bottom: 0; font-size: 0.92rem; }

/* ---------------- Process ---------------- */
.process-band { background: var(--cream-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-card { position: relative; }
.process-card .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.process-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.process-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--wood);
  color: #fff;
  font-family: "Lora", serif;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-card p { font-size: 0.92rem; }

/* ---------------- Gallery preview / grid ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid a {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.gallery-grid a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid a:hover img { transform: scale(1.08); }

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.section-cta { text-align: center; margin-top: 48px; }

/* ---------------- Trust grid (commercial) ---------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.trust-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.trust-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-family: "Lora", serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.98rem;
  background: linear-gradient(0deg, rgba(15,13,10,.85), transparent);
}

/* ---------------- About ---------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 40px; } }
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-media .badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.about-media .badge strong { display: block; font-family: "Lora", serif; font-size: 1.8rem; color: var(--wood-light); }
.about-media .badge span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
@media (max-width: 600px) { .about-media .badge { left: 16px; bottom: -18px; padding: 14px 18px; } }

.about-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.about-list svg { color: var(--wood); flex-shrink: 0; margin-top: 3px; }

/* ---------------- Testimonials ---------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.testimonial-card .stars { color: var(--wood); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p.quote {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .who { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,98,47,0.35), transparent 70%);
  top: -220px; right: -140px;
}
.cta-banner .container { position: relative; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--charcoal-2); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-logo { height: 56px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--wood); border-color: var(--wood); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  padding: 170px 0 80px;
  background: var(--charcoal) center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(14, 12, 9, 0.72);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }

/* ---------------- Page hero slideshow ---------------- */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.hero-slide-btn:hover { background: var(--wood); border-color: var(--wood); }
.hero-slide-btn.prev { left: 24px; }
.hero-slide-btn.next { right: 24px; }
.hero-zoom-btn {
  position: absolute; bottom: 28px; right: 24px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease;
}
.hero-zoom-btn:hover { background: var(--wood); border-color: var(--wood); }
.hero-slide-dots {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}
.hero-slide-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.hero-slide-dots button.active { background: var(--wood-light); width: 22px; border-radius: 4px; }
@media (max-width: 640px) {
  .hero-slide-btn { display: none; }
  .hero-zoom-btn { right: 12px; bottom: 56px; padding: 8px 14px; font-size: 0.8rem; }
}

/* ---------------- Gallery page ---------------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--wood); color: var(--wood); }
.filter-btn.active { background: var(--wood); border-color: var(--wood); color: #fff; }

.masonry {
  columns: 4 260px;
  column-gap: 16px;
}
.masonry figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: zoom-in;
}
.masonry figure img { width: 100%; display: block; transition: transform .5s ease; }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(15,13,10,.85), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.masonry figure:hover figcaption { opacity: 1; }
.masonry figure[hidden] { display: none; }

@media (max-width: 720px) { .masonry { columns: 2 200px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10,9,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox figure { overflow: hidden; max-width: 100%; }
.lightbox img {
  max-width: 100%; max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: zoom-in;
  transition: transform .3s ease;
  transform-origin: center center;
}
.lightbox img.zoomed { cursor: zoom-out; transform: scale(2.2); }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 16px; font-size: 0.9rem; opacity: .8; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--wood); border-color: var(--wood); }
.lightbox-prev[hidden], .lightbox-next[hidden] { display: none; }
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}

/* ---------------- Contact page ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--wood);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row h4 { margin: 0 0 4px; font-family: "Inter", sans-serif; font-size: 0.95rem; }
.info-row p { margin: 0; font-size: 0.92rem; }
.info-row a:hover { color: var(--wood); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 600; line-height: 1.3; min-height: 2.6em; color: var(--ink-soft); }
.field label.single-line { min-height: 1.3em; }
.field .hint { font-size: 0.78rem; font-weight: 400; color: var(--ink-soft); opacity: .75; margin-top: -4px; }
.field input, .field select, .field textarea {
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--wood);
}
.field textarea { resize: vertical; min-height: 120px; }
fieldset.field { border: 0; padding: 0; margin: 0; }
.field legend { width: 100%; padding: 0; font-size: 0.82rem; font-weight: 600; line-height: 1.3; min-height: 1.3em; color: var(--ink-soft); margin-bottom: 10px; }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-grid input[type="checkbox"],
.checkbox-grid input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--wood);
  flex-shrink: 0;
  cursor: pointer;
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }

/* ---------------- FAQ (about page) ---------------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--wood); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
