:root {
  --bg: #faf7f2;
  --bg-alt: #f1ebe1;
  --ink: #2b2118;
  --ink-soft: #5c5145;
  --walnut: #5c4432;
  --oak: #b08d5f;
  --line: #e2d8c8;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
}
h1, h2, h3 { font-family: "Lora", Georgia, serif; font-weight: 500; line-height: 1.15; font-variant-ligatures: none; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1.2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p + p { margin-top: 1em; }
a { color: var(--walnut); }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  font-weight: 600; color: var(--oak); margin-bottom: 0.8rem;
}
.emphasis { font-family: "Lora", Georgia, serif; font-size: 1.25rem; color: var(--walnut); margin-top: 1.4em; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.brand {
  font-family: "Lora", Georgia, serif; font-size: 1.25rem; font-weight: 600;
  color: var(--ink); text-decoration: none; letter-spacing: 0.01em;
}
.brand span { color: var(--oak); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft); font-size: 0.92rem; font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--walnut); color: var(--white) !important;
  padding: 8px 18px; border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }

/* Hero */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background:
    linear-gradient(rgba(30, 22, 14, 0.45), rgba(30, 22, 14, 0.55)),
    url("images/hero.jpg") center/cover no-repeat;
  padding: 120px 24px 80px;
}
.hero-inner { max-width: 1120px; margin: 0 auto; width: 100%; color: var(--white); }
.hero-kicker { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem; font-weight: 600; color: #e3cfa9; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 500; letter-spacing: 0.005em; }
.hero-sub { margin-top: 1.2rem; font-size: clamp(1rem, 2vw, 1.25rem); max-width: 560px; color: #f0e9de; }
.hero-actions { margin-top: 2.2rem; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; font-family: inherit; transition: 0.2s;
}
.btn-solid { background: var(--oak); color: var(--white); }
.btn-solid:hover { background: #9a7a4f; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* About */
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.about-side { display: flex; flex-direction: column; gap: 28px; }
.storefront img { border-radius: 12px; box-shadow: 0 12px 32px rgba(43, 33, 24, 0.14); }
.storefront figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.visit-card, .partners {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 24px;
}
.visit-card p + p, .partners p { margin-top: 0.6em; }
.partners a { display: block; margin-top: 0.7em; font-weight: 600; text-decoration: none; }
.partners a:hover { text-decoration: underline; }
.partners p { font-size: 0.92rem; color: var(--ink-soft); }

/* Gallery */
.tabs { display: flex; gap: 10px; margin: 1.6rem 0 2rem; flex-wrap: wrap; }
.tab {
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-family: inherit; font-size: 0.92rem; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: 0.2s;
}
.tab:hover { border-color: var(--oak); color: var(--ink); }
.tab.active { background: var(--walnut); border-color: var(--walnut); color: var(--white); }
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.grid a {
  display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px;
  background: var(--bg-alt);
}
.grid img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease;
}
.grid a:hover img { transform: scale(1.045); }

/* FAQ */
details {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 22px; margin-top: 12px;
}
summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--oak); flex-shrink: 0; transition: 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 0.8em; color: var(--ink-soft); }

/* Testimonials */
.testimonials { background: var(--walnut); color: #f3ece1; padding: 72px 0; }
.quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
blockquote { font-family: "Lora", Georgia, serif; font-size: 1.2rem; line-height: 1.5; }
blockquote cite { display: block; margin-top: 0.9em; font-family: "Open Sans", sans-serif; font-style: normal; font-size: 0.88rem; color: #d8c5a8; }

/* Contact */
.contact-grid { grid-template-columns: 1fr 1.2fr; }
.contact-details { margin-top: 1.4rem; }
.contact-details p { margin-top: 0.4em; }
#contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#contact-form label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 14px;
}
#contact-form input, #contact-form textarea {
  width: 100%; margin-top: 6px; padding: 11px 13px; border: 1.5px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: var(--bg);
  color: var(--ink);
}
#contact-form input:focus, #contact-form textarea:focus {
  outline: none; border-color: var(--oak);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); font-weight: 400; margin-top: 12px; }

/* Footer */
footer { background: var(--ink); color: #b9ad9d; padding: 28px 0; font-size: 0.88rem; }
footer a { color: #d8c5a8; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(20, 15, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
#lb-img { max-width: 92vw; max-height: 86vh; border-radius: 6px; object-fit: contain; }
.lb-caption {
  position: absolute; bottom: 20px; left: 0; right: 0; text-align: center;
  color: #d8c5a8; font-size: 0.9rem;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none; color: #f0e9de;
  font-size: 2.6rem; cursor: pointer; line-height: 1; padding: 16px; z-index: 201;
}
.lb-close { top: 12px; right: 20px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); font-size: 3.4rem; }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); font-size: 3.4rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--oak); }

/* Responsive */
@media (max-width: 860px) {
  .two-col, .contact-grid, .quote-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 20px 24px; gap: 18px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
