:root {
  --bg: #f1f1f0;
  --bg-soft: #e8e8e6;
  --paper: #ffffff;
  --ink: #2b2a27;
  --muted: #6d6a64;
  --line: #dddcd7;
  --accent: #756c63;
  --accent-dark: #524c46;
  --footer: #1b1a18;
  --footer-text: #c8c4bc;
  --radius: 10px;
  --header-h: 64px;
  --shadow: 0 8px 28px rgba(24, 22, 18, 0.06);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

img { pointer-events: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  color: #fff;
}

.site-header.is-over-hero { background: transparent; }

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(243, 243, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.header-bar {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.brand-text {
  position: absolute;
  left: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #111;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.04);
}

.hero-shield {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 24px 40px;
}

.hero-logo {
  width: min(340px, 72vw);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.35));
  margin-bottom: 22px;
}

.hero-kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-place {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.92;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-soft); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--ink);
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 1.02rem;
}

.ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.ornament::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--accent);
  align-self: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.about-text p { margin-bottom: 18px; font-size: 1.05rem; }

.portrait {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.owner-note {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.highlight {
  text-align: center;
  padding: 28px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.highlight h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.highlight p { color: var(--muted); font-size: 0.92rem; }

.center { text-align: center; }
.mt { margin-top: 36px; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: var(--accent-dark); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery.dense {
  grid-template-columns: repeat(4, 1fr);
}

.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  background: #ddd;
  aspect-ratio: 1;
}

.gallery figure.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery figure.tall { aspect-ratio: 3/4; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery figure:hover img { transform: scale(1.04); }

.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery figure:hover figcaption { opacity: 1; }

/* Boutique impressions */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.boutique-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.boutique-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.boutique-card h3 {
  padding: 18px 16px 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* Info strip */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-block {
  text-align: center;
  padding: 8px;
}

.info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.info-block p { color: var(--muted); }

/* Subpage */
.page-hero {
  padding: 128px 0 48px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.page-hero p { color: var(--muted); margin-top: 8px; }

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin: 24px 0;
}

.menu-category {
  font-size: 1.7rem;
  margin: 8px 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}

.menu-item-name { font-weight: 400; }
.menu-item-price { color: var(--accent); white-space: nowrap; }
.menu-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: -4px 0 8px;
}

.note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.value {
  text-align: center;
  padding: 28px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value h3 { margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-top: 14px;
  min-height: 1.4em;
  font-size: 0.95rem;
}

.form-status.ok { color: #2d6a4f; }
.form-status.err { color: #9b2226; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.check input { margin-top: 4px; }

.hours { max-width: 360px; margin: 0 auto; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.map-link {
  display: block;
  margin-top: 28px;
  padding: 28px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}

.faq summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
}

.faq details p { margin-top: 10px; color: var(--muted); }

.legal h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.legal p, .legal li { margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); }

/* Floating */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
  transition: transform 0.15s;
}

.float-btn:hover { transform: translateY(-2px); }
.float-btn.wa { background: #128c7e; }
.float-btn.tel { background: #3a3a3a; }
.float-btn.ig { background: #5a4a4a; }
.float-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Footer */
footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer p { margin-bottom: 8px; }
footer a {
  color: #ddd8d0;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }
footer nav { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 10, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav a { font-size: 0.76rem; letter-spacing: 0.1em; }
}

@media (max-width: 900px) {
  .about-grid, .story { grid-template-columns: 1fr; }
  .highlights, .info-row, .boutique-grid, .values { grid-template-columns: 1fr 1fr; }
  .gallery, .gallery.dense { grid-template-columns: 1fr 1fr; }
  .gallery figure.wide { grid-column: span 2; }
  .menu-grid, .form-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) - 8px);
    right: 0;
    left: auto;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    padding: 18px 22px;
    border: 1px solid var(--line);
    gap: 14px;
    min-width: 220px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .header-bar { justify-content: flex-start; }
  .brand-text { position: static; }
}

@media (max-width: 560px) {
  .highlights, .info-row, .boutique-grid, .values, .gallery, .gallery.dense {
    grid-template-columns: 1fr;
  }
  .gallery figure.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .section { padding: 64px 0; }
  .panel { padding: 22px 18px; }
  .hero-logo { width: min(250px, 78vw); }
  .float-btn { width: 42px; height: 42px; }
}
