:root {
  --cream: #f7f1e6;
  --sand: #e9ddc8;
  --clay: #b6552f;
  --clay-dark: #8f3f20;
  --brown: #3f2d20;
  --ink: #2a2018;
  --sage: #7c8a6a;
  --muted: #6f6151;
  --maxw: 1180px;
  --r: 14px;
  --shadow: 0 18px 50px -22px rgba(63, 45, 32, 0.45);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(rgba(63, 45, 32, 0.035) 1px, transparent 1px);
  background-size: 4px 4px;
}

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

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1rem; }
a { color: var(--clay-dark); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--clay);
  margin: 0 0 1rem;
}
.eyebrow-light { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--clay);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { background: var(--clay-dark); border-color: var(--clay-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 45, 32, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-logo { height: 46px; width: auto; display: block; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.8rem; margin: 0; padding: 0; }
.nav-menu a { color: var(--brown); text-decoration: none; font-weight: 500; font-size: 0.98rem; }
.nav-menu a:not(.btn):hover { color: var(--clay); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 860px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,32,24,.25) 0%, rgba(42,32,24,.15) 40%, rgba(42,32,24,.78) 100%); }
.hero-content { position: relative; padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 6rem; max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.08rem; }

/* About */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-text p { color: var(--brown); font-size: 1.06rem; }
.about-points { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.about-points li { padding: 0.7rem 0; border-top: 1px solid rgba(63,45,32,.14); color: var(--muted); }
.about-points span { color: var(--ink); font-weight: 600; font-family: "Fraunces", serif; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.about-media figcaption { margin-top: 0.8rem; font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* Workshops */
.workshop-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.workshop-feature-media img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.workshop-feature-text { padding: clamp(1.8rem, 4vw, 3rem); }
.workshop-feature-text p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; }
.card { background: #fff; border: 1px solid rgba(63,45,32,.1); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.2rem; }
.card-price { font-family: "Fraunces", serif; font-weight: 600; color: var(--clay-dark); font-size: 1.1rem; margin: 0 0 1.1rem; }
.card-date { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; margin-top: auto; }
.card-date input { display: block; width: 100%; margin-top: 0.35rem; padding: 0.55rem 0.7rem; border: 1px solid rgba(63,45,32,.22); border-radius: 8px; font: inherit; background: #fff; color: var(--ink); }
.card-date input:focus { outline: 2px solid var(--clay); border-color: var(--clay); }
.card-book { margin-top: 0.9rem; text-align: center; }
.workshops-note { text-align: center; color: var(--muted); margin-top: 2.5rem; }

/* Gallery */
.masonry { columns: 3; column-gap: 1rem; }
.masonry-item { display: block; width: 100%; margin: 0 0 1rem; padding: 0; border: 0; background: none; cursor: zoom-in; break-inside: avoid; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.masonry-item img { display: block; width: 100%; height: auto; transition: transform .4s ease; }
.masonry-item:hover img { transform: scale(1.04); }

/* Visit */
.visit { background: var(--brown); color: var(--cream); }
.visit h2 { color: var(--cream); }
.visit .eyebrow { color: #e2a07f; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-list li { padding: 0.7rem 0; border-top: 1px solid rgba(247,241,230,.16); color: rgba(247,241,230,.85); }
.contact-label { display: inline-block; min-width: 96px; color: #e2a07f; font-weight: 600; }
.contact-list a { color: var(--cream); }
.contact-list em, .form-note, .visit-form em { color: rgba(247,241,230,.45); font-size: 0.82rem; font-style: italic; }
.socials { display: flex; gap: 1.2rem; margin-top: 1.2rem; }
.socials a { color: var(--cream); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

.visit-form { background: var(--cream); color: var(--ink); padding: clamp(1.8rem, 4vw, 2.6rem); border-radius: var(--r); }
.visit-form h3 { margin-bottom: 1.2rem; }
.visit-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 1rem; }
.visit-form input, .visit-form select, .visit-form textarea {
  display: block; width: 100%; margin-top: 0.35rem; padding: 0.7rem 0.85rem;
  border: 1px solid rgba(63,45,32,.22); border-radius: 8px; font: inherit; background: #fff; color: var(--ink);
}
.visit-form input:focus, .visit-form select:focus, .visit-form textarea:focus { outline: 2px solid var(--clay); border-color: var(--clay); }
.form-note { color: var(--muted) !important; margin-top: 0.8rem; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(247,241,230,.7); padding: 3.5rem 0; text-align: center; }
.footer-logo { height: 54px; filter: invert(1) brightness(1.8); margin-bottom: 1rem; }
.footer-tag { font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 1rem; }
.footer-meta { font-size: 0.85rem; }
.footer-shop { display: inline-block; color: #e2a07f; margin-left: .4rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20,14,10,.92); display: none; align-items: center; justify-content: center; padding: 4vh 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 18px; right: 26px; font-size: 2.6rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 76px; right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); padding: 0.5rem 24px 1.2rem;
    border-bottom: 1px solid rgba(63,45,32,.1);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.8rem 0; }
  .nav-menu .btn { margin-top: 0.6rem; }
  .nav.open .nav-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .about-grid, .workshop-feature, .visit-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
}
@media (max-width: 540px) {
  .masonry { columns: 1; }
  .hero { min-height: 92vh; }
}
