:root {
  --maroon-900: #5a1f2b;
  --maroon-800: #3e1720;
  --brown-700: #49352a;
  --emerald-900: #174a3a;
  --emerald-800: #10352b;
  --ivory: #f5efe5;
  --cream: #ede2d2;
  --gold: #b79b62;
  --gold-soft: rgba(183, 155, 98, 0.18);
  --text: #2f211d;
  --muted: #6f5d55;
  --white: #fffdf9;
  --shadow: rgba(32, 14, 17, 0.15);
  --max-width: 1180px;
  --section-space: 7rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3,
.brand-wordmark,
.hero-script {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.7rem, 4vw, 4.3rem);
  color: var(--maroon-800);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  color: var(--brown-700);
}

p {
  color: rgba(47, 33, 29, 0.8);
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d5bf82);
  color: var(--maroon-800);
  box-shadow: 0 18px 35px rgba(92, 35, 45, 0.15);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.full-width {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 229, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 31, 43, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.85;
}

.brand-wordmark {
  font-family: 'Lavishly Yours', cursive;
  font-size: clamp(2.3rem, 2vw, 3.1rem);
  color: var(--maroon-900);
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.42rem;
  color: var(--maroon-900);
  font-weight: 700;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  position: relative;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--maroon-800);
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(90, 31, 43, 0.14);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--maroon-800);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 12, 16, 0.72) 0%, rgba(32, 12, 16, 0.32) 38%, rgba(32, 12, 16, 0.48) 100%),
    radial-gradient(circle at top left, rgba(183, 155, 98, 0.15), transparent 25%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(183, 155, 98, 0.12) 0%, transparent 12%, transparent 88%, rgba(183, 155, 98, 0.14) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 12px
    );
  opacity: 0.7;
}

.hero-inner,
.scroll-indicator {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  padding: 7rem 0 5rem;
  color: var(--white);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2rem;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7vw, 8rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}

.hero-script {
  font-family: 'Lavishly Yours', cursive;
  font-size: clamp(4.2rem, 6vw, 7rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.94);
  margin: -0.8rem 0 1rem;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.45rem;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.section-head {
  margin-bottom: 2.5rem;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.batik-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 52px rgba(61, 27, 30, 0.12);
  background: rgba(183, 155, 98, 0.12);
  padding: 1.2rem;
}

.batik-frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(183, 155, 98, 0.42);
  border-radius: 12px;
  pointer-events: none;
}

.batik-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(90, 31, 43, 0.15), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(23, 74, 58, 0.12), transparent 16%),
    linear-gradient(135deg, transparent 41%, rgba(90, 31, 43, 0.06) 42%, transparent 44%, transparent 57%, rgba(23, 74, 58, 0.08) 58%, transparent 60%);
  opacity: 0.7;
}

.batik-frame img {
  position: relative;
  z-index: 1;
  height: 620px;
  object-fit: cover;
  border-radius: 12px;
}

.intro-copy {
  padding-left: 0.6rem;
}

.signature-line {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  letter-spacing: 0.08em;
  color: var(--emerald-900);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(90, 31, 43, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(29, 19, 17, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(29, 19, 17, 0.08);
}

.menu-card.active {
  border-color: rgba(183, 155, 98, 0.7);
  box-shadow: 0 22px 42px rgba(29, 19, 17, 0.12);
}

.menu-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.menu-card.active img {
  transform: scale(1.02);
}

.photo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}

.photo-modal.visible {
  display: flex;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 11, 13, 0.72);
}

.photo-modal-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.photo-modal-content img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: rgba(17, 12, 12, 0.3);
}

.photo-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.menu-card.tall img {
  height: 330px;
}

.card-content {
  padding: 1.4rem 1.2rem 1.7rem;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.card-topline h3 {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  color: var(--maroon-800);
}

.price {
  color: var(--emerald-900);
  font-weight: 800;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.catalog {
  background: rgba(255, 255, 255, 0.22);
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(90, 31, 43, 0.14);
  color: var(--maroon-800);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--maroon-900);
  color: var(--white);
  border-color: transparent;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(90, 31, 43, 0.08);
  border-radius: 18px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-item-copy h3 {
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  color: var(--maroon-800);
  margin-bottom: 0.25rem;
}

.menu-item-copy p {
  font-size: 0.96rem;
}

.menu-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--emerald-900);
  white-space: nowrap;
}

.menu-item.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  display: none;
}

.accent-section {
  background: linear-gradient(135deg, rgba(90, 31, 43, 0.98), rgba(23, 74, 58, 0.96));
  color: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.story-copy h2,
.story-copy .eyebrow,
.story-copy p,
.story-copy blockquote {
  color: var(--white);
}

.story-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.story-copy blockquote {
  margin-top: 2rem;
  font-family: 'Lavishly Yours', cursive;
  font-size: clamp(2.6rem, 4vw, 5rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.story-visual {
  position: relative;
  padding: 1.2rem;
}

.story-photo-pattern {
  position: absolute;
  inset: 1.4rem 0.8rem 0.8rem 1.4rem;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(183, 155, 98, 0.35), transparent 16%),
    linear-gradient(45deg, rgba(183, 155, 98, 0.12), transparent 40%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(183, 155, 98, 0.38);
  border-radius: 18px;
}

.story-visual img {
  position: relative;
  z-index: 1;
  height: 640px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(10, 10, 10, 0.25);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.experience-card {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(92, 35, 45, 0.08);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: 0 16px 28px rgba(32, 14, 17, 0.04);
}

.icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, rgba(183, 155, 98, 0.16), rgba(23, 74, 58, 0.12));
  border: 1px solid rgba(90, 31, 43, 0.1);
}

.icon-wrap svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--maroon-900);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-card h3 {
  margin-bottom: 0.7rem;
  color: var(--maroon-800);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(31, 18, 15, 0.08);
}

.gallery-item img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.location-copy {
  color: var(--white);
}

.location-copy h2,
.location-copy .eyebrow,
.location-copy p,
.location-copy a,
.location-copy h3,
.location-copy span {
  color: var(--white);
}

.location-copy h2 {
  margin-bottom: 1.5rem;
}

.location-detail {
  margin-top: 1.5rem;
}

.location-detail h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.location-detail p {
  color: rgba(255, 255, 255, 0.8);
}

.map-panel {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(183, 155, 98, 0.32);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 2rem;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 42, 35, 0.2), rgba(58, 18, 27, 0.52));
}

.map-route {
  position: absolute;
  inset: 0;
}

.map-route span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.map-route span:nth-child(1) {
  width: 220px;
  height: 150px;
  left: 16%;
  top: 15%;
}

.map-route span:nth-child(2) {
  width: 260px;
  height: 120px;
  right: 15%;
  bottom: 18%;
}

.map-route span:nth-child(3) {
  width: 140px;
  height: 140px;
  left: 42%;
  top: 26%;
}

.map-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--gold);
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(183, 155, 98, 0.2);
  left: 52%;
  top: 40%;
}

.map-panel .btn {
  position: relative;
  z-index: 1;
}

.reservation-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2.6rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 53, 43, 0.96), rgba(90, 31, 43, 0.96));
  box-shadow: 0 25px 60px rgba(20, 13, 17, 0.22);
  position: relative;
  overflow: hidden;
}

.reservation-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(183, 155, 98, 0.16), transparent 35%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 16px
    );
  opacity: 0.7;
}

.reservation-copy,
.reservation-form {
  position: relative;
  z-index: 1;
}

.reservation-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.reservation-copy h2,
.reservation-copy p {
  color: var(--white);
}

.reservation-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(183, 155, 98, 0.2);
  border-radius: 22px;
  padding: 1.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reservation-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 700;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--white);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 110px;
}

.success-message {
  display: none;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.success-message.visible {
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(90, 31, 43, 0.08);
  padding: 2rem 1.8rem;
  border-radius: 22px;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(90, 31, 43, 0.24);
  position: absolute;
  right: 1rem;
  top: 0.4rem;
}

.testimonial p {
  margin-bottom: 1.2rem;
  font-size: 1.12rem;
}

.testimonial h3 {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--emerald-900);
}

.final-cta {
  position: relative;
  min-height: 520px;
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 12, 16, 0.74), rgba(32, 12, 16, 0.26));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  color: var(--white);
  padding: 4rem 0;
}

.cta-content h2,
.cta-content p,
.cta-content .eyebrow {
  color: var(--white);
}

.site-footer {
  background: linear-gradient(180deg, var(--maroon-800), var(--emerald-800));
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
}

.footer-links,
.footer-social,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-social a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.2rem 0 2rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .signature-grid,
  .experience-grid,
  .testimonials-grid,
  .location-layout,
  .reservation-shell,
  .intro-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(245, 239, 229, 0.98);
    padding: 1.2rem 1rem 1rem;
    border: 1px solid rgba(90, 31, 43, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(39, 20, 25, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-script {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .section {
    padding: 5rem 0;
  }

  .field-row,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .reservation-shell {
    padding: 2rem 1rem;
  }

  .btk-frame,
  .story-visual img,
  .batik-frame img {
    height: auto;
  }
}
