:root {
  --color-bg: #FBF4E7;
  --color-bg-alt: #F3E6C9;
  --color-surface: #FFFFFF;
  --color-text: #2B2118;
  --color-text-muted: #6B5D4D;
  --color-green: #3C7A34;
  --color-green-dark: #2B5A26;
  --color-red: #C4262A;
  --color-red-dark: #A31E22;
  --color-border: #E6D9BC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-card: 0 6px 18px rgba(43, 33, 24, 0.08);
  --container-w: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }
::selection { background: var(--color-green); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; text-wrap: balance; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-align: center; }
p { margin: 0 0 1em; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-green);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--color-green-dark); outline-offset: 2px; }

.btn-primary { background: var(--color-red); color: #fff; }
.btn-primary:hover { background: var(--color-red-dark); }

.btn-outline { background: transparent; border-color: var(--color-text); color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-on-dark { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-on-dark:hover { background: #fff; color: var(--color-green-dark); }

.btn-lg { padding: 14px 26px; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 231, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 200ms ease;
}
.site-header.scrolled { box-shadow: 0 4px 14px rgba(43, 33, 24, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; border-radius: 5px; box-shadow: 0 0 0 1px rgba(43,33,24,0.08); }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a { color: var(--color-text); padding: 8px 2px; }
.main-nav a:hover { color: var(--color-green-dark); }
.main-nav a:focus-visible { outline: 2px solid var(--color-green); outline-offset: 4px; border-radius: 4px; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--color-text); border-radius: 2px; }

/* Hero */
.hero { background: var(--color-bg); padding: 56px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-kicker {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.hero-lead { color: var(--color-text-muted); font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* Before / after compare */
.compare {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.compare-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 14px rgba(43,33,24,0.28);
}
.compare-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(36, 27, 20, 0.55);
  color: #fff;
  pointer-events: none;
}
.compare-tag-before { left: 16px; }
.compare-tag-after { right: 16px; }
.compare-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: opacity 300ms ease;
}
.compare.dragged .compare-hint { opacity: 0; }

@media (max-width: 640px) {
  .hero { min-height: 560px; }
}

/* Sections */
section { padding: 64px 0; }
.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto 40px;
}

.assortment { background: var(--color-bg); }

.swatch-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px 24px;
}
.swatch-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.swatch-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.swatch:hover .swatch-photo img { transform: scale(1.06); }
.swatch h3 { font-size: 1.1rem; margin-bottom: 4px; }
.swatch p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

.assortment-note {
  text-align: center;
  margin: 44px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Gallery */
.gallery { background: var(--color-bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-feature { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms ease; min-height: 200px; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(180deg, rgba(43,33,24,0) 0%, rgba(43,33,24,0.75) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* Locations */
.locations { background: var(--color-bg); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.location-body { padding: 20px 22px 24px; }
.location-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.location-body p { color: var(--color-text-muted); }
.link-arrow {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--color-green-dark);
  border-bottom: 1.5px solid transparent;
  transition: border-color 180ms ease;
}
.link-arrow:hover { border-color: var(--color-green-dark); }

/* CTA band */
.cta-band { background: var(--color-green-dark); color: #fff; text-align: center; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: #DCE9D8; max-width: 50ch; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Footer */
.site-footer { background: #241B14; color: #C9BBA6; padding: 40px 0; text-align: center; }
.footer-logo { height: 38px; margin: 0 auto 14px; border-radius: 5px; box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }
.footer-phone a { font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-links { font-size: 0.92rem; margin: 6px 0 0; }
.footer-links a { color: #C9BBA6; }
.footer-links a:hover { color: #fff; }
.footer-addr { font-size: 0.88rem; max-width: 52ch; margin: 16px auto 0; }
.footer-copy { font-size: 0.8rem; color: #8A7A64; margin-top: 18px; }

/* Reveal on scroll (progressive enhancement) */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.swatch-row .reveal:nth-child(2) { transition-delay: 60ms; }
.swatch-row .reveal:nth-child(3) { transition-delay: 120ms; }
.swatch-row .reveal:nth-child(4) { transition-delay: 180ms; }
.location-grid .reveal:nth-child(2) { transition-delay: 100ms; }

/* Mobile */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare { order: -1; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-feature { grid-row: auto; }
  .gallery-grid img { aspect-ratio: 4/3; min-height: 0; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 12px; border-radius: 8px; }
  .main-nav a:hover { background: var(--color-bg-alt); }
  .nav-toggle { display: flex; }
  .header-actions .btn span { display: none; }
  .header-actions .btn-primary { padding: 12px; border-radius: 50%; width: 44px; }
}

@media (min-width: 861px) {
  .nav-toggle { display: none; }
}
