:root {
  --rose: #8f4776;
  --ink: #1c181a;
  --ink-soft: #5a5558;
  --ink-faint: #9a9498;
  --bg: #f9f7f5;
  --bg-warm: #f3eeea;
  --line: rgba(28, 24, 26, 0.1);
  --white: #fff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --header: 72px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header);
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(249, 247, 245, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark img {
  height: 38px;
  width: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
}

.header-lang {
  padding: 4px 5px;
  border-radius: 999px;
  background: rgba(28, 24, 26, 0.07);
  border: 1px solid var(--line);
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  min-width: 38px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(28, 24, 26, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--ink);
}

.nav-book {
  color: var(--rose);
}

.nav-book:hover {
  color: var(--ink);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-btn.active span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-btn.active span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: calc(var(--header) + 56px) 0 80px;
  text-align: center;
  background: var(--bg-warm);
}

.hero-note {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 32px;
}

.hero-logo {
  width: min(440px, 88vw);
  margin: 0 auto 36px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.btn-main {
  display: inline-block;
  padding: 15px 32px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s var(--ease);
}

.btn-main:hover {
  background: var(--rose);
  transform: translateY(-1px);
}

.btn-main-block {
  display: block;
  text-align: center;
  margin-top: 8px;
}

.btn-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
  color: var(--rose);
  border-color: var(--rose);
}

/* Sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.split-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.split-head p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 340px;
}

/* Hours */
.hours {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.hours-list {
  border-top: 1px solid var(--line);
}

.hours-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.hours-line dt {
  font-size: 15px;
  font-weight: 500;
}

.hours-line dd {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
  font-variant-numeric: tabular-nums;
}

.hours-line-off dd {
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--bg-warm);
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 2px;
  object-fit: cover;
}

.about-body {
  min-width: 0;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.about-text p + p {
  margin-top: 20px;
}

/* Gallery */
.gallery {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.gallery-head {
  margin-bottom: 24px;
}

.gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.gallery-head p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 480px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-warm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-more {
  margin-top: 20px;
  text-align: center;
}

.gallery-more a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-more a:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.gallery-more-dot {
  margin: 0 10px;
  color: var(--line);
}

/* Prices */
.prices {
  padding: 80px 0;
  background: var(--bg);
}

.prices-intro {
  margin-bottom: 48px;
}

.prices-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.prices-intro p {
  font-size: 15px;
  color: var(--ink-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
  margin-inline: auto;
}

.menu-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 20px;
  color: var(--ink);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.menu-list li span:first-child {
  color: var(--ink-soft);
}

.menu-list li span:last-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.menu-list li small {
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-faint);
}

.menu-sub {
  font-weight: 600;
  color: var(--ink);
  padding-top: 16px;
  border-bottom: none;
}

.menu-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--rose);
  font-style: italic;
}

/* Booking */
.booking {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.book-wrap {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.book-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.15;
  margin-bottom: 12px;
}

.book-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.book-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.book-option:hover {
  border-color: rgba(143, 71, 118, 0.28);
  transform: translateY(-1px);
}

.book-option-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--rose);
  overflow: hidden;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.book-option-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.book-option-icon-wa {
  background: var(--bg-warm);
  border-color: var(--line);
  color: var(--rose);
}

.book-wa-svg {
  width: 26px;
  height: 26px;
}

.book-option-icon-phone svg {
  width: 21px;
  height: 21px;
}

.book-option--wa:hover {
  border-color: rgba(143, 71, 118, 0.28);
}

.book-option--wa:hover .book-option-icon-wa,
.book-option--phone:hover .book-option-icon-phone {
  background: var(--white);
  border-color: rgba(143, 71, 118, 0.35);
  color: var(--rose);
  box-shadow: 0 4px 14px rgba(28, 24, 26, 0.06);
}

.book-option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.book-option-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.book-option-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.25;
  color: var(--ink);
}

.book-option-hint {
  font-size: 14px;
  color: var(--ink-soft);
}

.book-note {
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 24px;
}

/* Contact */
.contact {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-warm);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Voucher */
.voucher-section {
  padding: 72px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}

.voucher-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.voucher-panel {
  padding: 44px 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: center;
}

.voucher-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.voucher-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.voucher-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.voucher-panel .btn-main {
  min-width: 200px;
}

.voucher-hint {
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 14px;
}

.location-card {
  padding: 28px 0 32px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.location-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.location-business {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.location-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}

.location-address span {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.location-address span:last-child {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 4px;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.location-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.location-route::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.location-route:hover {
  color: var(--rose);
  border-color: rgba(143, 71, 118, 0.35);
}

.location-route:hover::after {
  transform: translateX(3px);
}

.spotlight {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  margin-bottom: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.spotlight:hover {
  border-color: rgba(143, 71, 118, 0.28);
  transform: translateY(-1px);
}

.spotlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--rose);
}

.spotlight-icon svg {
  width: 22px;
  height: 22px;
}

.spotlight-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.spotlight-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.2;
  color: var(--ink);
}

.spotlight-cta {
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.spotlight:hover .spotlight-cta {
  color: var(--rose);
  border-color: rgba(143, 71, 118, 0.35);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.contact-row:hover {
  color: var(--rose);
}

.contact-kind {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.contact-val {
  font-size: 17px;
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--bg);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin: 0 auto 12px;
  opacity: 0.9;
}

.footer p {
  font-size: 13px;
  color: var(--ink-faint);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-top: 16px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--ink-faint);
  padding: 4px 10px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--rose);
}

.footer-legal a[aria-current="page"] {
  color: var(--rose);
  font-weight: 500;
}

.footer-legal-dot {
  color: var(--ink-faint);
  font-size: 13px;
  padding: 0 2px;
  user-select: none;
}

/* Legal pages */
.legal-page .header-legal {
  border-bottom: 1px solid var(--line);
  background: rgba(249, 247, 245, 0.92);
  backdrop-filter: blur(12px);
}

.legal-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--rose);
}

.legal-main {
  padding: calc(var(--header) + 48px) 0 80px;
  background: var(--bg);
}

.legal-content {
  max-width: 680px;
  margin-inline: auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.15;
  margin-bottom: 20px;
}

.legal-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px 1.2em;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--rose);
  border-bottom: 1px solid rgba(143, 71, 118, 0.25);
  transition: border-color 0.2s;
}

.legal-content a:hover {
  border-color: var(--rose);
}

.legal-content code {
  font-size: 13px;
  padding: 2px 6px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
}

/* WhatsApp */
.wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease);
}

.wa svg {
  width: 26px;
  height: 26px;
}

.wa:hover {
  transform: scale(1.05);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .header-right {
    gap: 8px;
  }

  .header-lang {
    padding: 3px 4px;
  }

  .header-lang .lang-btn {
    min-width: 32px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-text {
    font-size: 16px;
  }

  .spotlight {
    padding: 20px 18px;
    gap: 14px;
  }

  .spotlight-title {
    font-size: 18px;
  }

  .location-address span {
    font-size: 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hours,
  .about,
  .gallery,
  .prices,
  .voucher-section,
  .contact {
    padding: 64px 0;
  }

  .voucher-panel {
    padding: 32px 24px;
  }

  .gallery {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}
