/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #FDF8F4;
  color: #3d1a37;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ── Section Labels & Headlines ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #3d1a37;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: #6B2F5B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(107, 47, 91, 0.3);
}

.btn-primary:hover {
  background: #5a2750;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 47, 91, 0.4);
}

.btn-outline {
  background: transparent;
  color: #3d1a37;
  border: 1.5px solid rgba(61, 26, 55, 0.25);
}

.btn-outline:hover {
  border-color: #6B2F5B;
  color: #6B2F5B;
  transform: translateY(-2px);
}

.btn-amber {
  background: #F5A623;
  color: #3d1a37;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.btn-amber:hover {
  background: #e09010;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.45);
}

.btn-outline-light {
  background: transparent;
  color: #ebd9f0;
  border: 1.5px solid rgba(235, 217, 240, 0.4);
}

.btn-outline-light:hover {
  border-color: #ebd9f0;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  box-shadow: 0 1px 20px rgba(61, 26, 55, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3d1a37;
  z-index: 1001;
}

.nav-logo-icon {
  color: #6B2F5B;
}

.nav-logo-text {
  transition: color 0.3s;
}

.nav.scrolled .nav-logo-text {
  color: #3d1a37;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5a2750;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #F5A623;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #6B2F5B;
}

.nav-cta {
  background: #6B2F5B;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 60px;
  font-weight: 600;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: #5a2750;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #3d1a37;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  display: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #FDF8F4 0%, #f5eef8 40%, #ebd9f0 100%);
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(107, 47, 91, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(61, 26, 55, 0.08), 0 1px 3px rgba(61, 26, 55, 0.04);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 60px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A623;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: #3d1a37;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #5a2750;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.stat-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61, 26, 55, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card--1 {
  background: linear-gradient(135deg, #6B2F5B 0%, #8b3a8e 100%);
  animation: float-1 6s ease-in-out infinite;
}

.stat-card--2 {
  background: linear-gradient(135deg, #3d1a37 0%, #5a2750 100%);
  animation: float-2 7s ease-in-out infinite;
}

.stat-card--3 {
  background: linear-gradient(135deg, #F5A623 0%, #e09010 100%);
  animation: float-3 5s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: #fff;
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
}

.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
}

/* ── Marquee ── */
.marquee {
  background: #3d1a37;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ebd9f0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee-sep {
  color: #F5A623;
  font-size: 0.625rem;
  opacity: 0.6;
}

/* ── About ── */
.about {
  background: #FDF8F4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61, 26, 55, 0.12);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #FDF8F4;
  box-shadow: 0 12px 40px rgba(61, 26, 55, 0.15);
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: #F5A623;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3d1a37;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
  z-index: 2;
}

.about-stamp span:first-child {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.about-stamp span:last-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 2px;
}

.about-content {
  padding: 16px 0;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #5a2750;
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3d1a37;
}

.feature-item svg {
  color: #F5A623;
  flex-shrink: 0;
}

/* ── Menu ── */
.menu {
  background: linear-gradient(180deg, #f5eef8 0%, #FDF8F4 100%);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #5a2750;
  opacity: 0.8;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5a2750;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid transparent;
  transition: all 0.3s;
}

.menu-tab:hover {
  border-color: rgba(107, 47, 91, 0.2);
  color: #6B2F5B;
}

.menu-tab.active {
  background: #6B2F5B;
  color: #fff;
  border-color: #6B2F5B;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(107, 47, 91, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.menu-panel {
  display: none;
  grid-column: 1 / -1;
}

.menu-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.menu-item {
  background: #FDF8F4;
  padding: 28px 32px;
  transition: background 0.3s;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #3d1a37;
}

.menu-item-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5A623;
  background: rgba(245, 166, 35, 0.12);
  padding: 3px 10px;
  border-radius: 60px;
}

.menu-item-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5a2750;
  opacity: 0.75;
}

/* ── Gallery ── */
.gallery {
  background: #FDF8F4;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 26, 55, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

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

.gallery-item--tall img {
  height: 100%;
  min-height: 500px;
}

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

.gallery-item--wide img {
  height: 100%;
  min-height: 250px;
}

.gallery-item:not(.gallery-item--tall) img {
  height: 240px;
}

/* ── Hours ── */
.hours {
  background: linear-gradient(135deg, #3d1a37 0%, #5a2750 50%, #6B2F5B 100%);
  color: #fff;
}

.hours-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hours-card .section-label {
  color: #F5A623;
}

.hours-card .section-headline {
  color: #fff;
}

.hours-table {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(235, 217, 240, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: #ebd9f0;
}

.hours-time {
  color: #F5A623;
  font-weight: 500;
}

.hours-note {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(235, 217, 240, 0.6);
  line-height: 1.6;
}

.hours-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hours-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact ── */
.contact {
  background: #FDF8F4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 47, 91, 0.08);
  border-radius: 12px;
  color: #6B2F5B;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.6;
  color: #3d1a37;
}

.contact-value a {
  color: #6B2F5B;
  text-decoration: underline;
  text-decoration-color: rgba(107, 47, 91, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}

.contact-value a:hover {
  text-decoration-color: #6B2F5B;
}

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(61, 26, 55, 0.08);
  border: 1px solid rgba(107, 47, 91, 0.06);
}

.contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3d1a37;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #5a2750;
  opacity: 0.7;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a2750;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(107, 47, 91, 0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #3d1a37;
  background: #FDF8F4;
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #6B2F5B;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107, 47, 91, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(61, 26, 55, 0.35);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  color: #734809;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  color: #F5A623;
  flex-shrink: 0;
}

/* ── CTA Section ── */
.cta-section {
  background: #6B2F5B;
  padding: 100px 0;
}

.cta-card {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(235, 217, 240, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .section-label {
  color: #F5A623;
}

.cta-headline {
  color: #fff;
}

.cta-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(235, 217, 240, 0.7);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #2a1025;
  color: #ebd9f0;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(235, 217, 240, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo svg {
  color: #F5A623;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #F5A623;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-addr,
.footer-phone {
  font-size: 0.9375rem;
  color: rgba(235, 217, 240, 0.6);
  line-height: 1.6;
}

.footer-phone a {
  color: rgba(235, 217, 240, 0.6);
  transition: color 0.3s;
}

.footer-phone a:hover {
  color: #F5A623;
}

.footer-nav h4,
.footer-hours h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(235, 217, 240, 0.6);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #F5A623;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9375rem;
  color: rgba(235, 217, 240, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(235, 217, 240, 0.4);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
    max-width: 560px;
  }

  .stat-card {
    flex: 1;
    min-width: 160px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image-accent {
    right: -16px;
    bottom: -24px;
  }

  .hours-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hours-visual {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-item--tall {
    grid-column: span 6;
    grid-row: span 1;
  }

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

  .gallery-item--tall img,
  .gallery-item:not(.gallery-item--tall) img {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile menu overlay */
  .menu-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 244, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3d1a37;
    transition: color 0.3s;
  }

  .menu-link:hover {
    color: #F5A623;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-card {
    padding: 36px 28px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    max-width: 100%;
  }

  .stat-card {
    animation: none;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 220px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .about-image-accent {
    width: 65%;
    right: -8px;
    bottom: -16px;
  }

  .about-stamp {
    width: 72px;
    height: 72px;
    top: -12px;
    left: -12px;
  }

  .about-stamp span:first-child {
    font-size: 0.5625rem;
  }

  .about-stamp span:last-child {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
