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

:root {
  --forest: #2D5A3D;
  --forest-light: #3A7250;
  --forest-dark: #1E3F2A;
  --forest-muted: #E8F0EB;
  --cream: #FAFAF6;
  --cream-warm: #F5F0E8;
  --sand: #EDE8DC;
  --sand-light: #F2EDE3;
  --sage: #B8C5B4;
  --moss: #7A9B7E;
  --text: #1A2E1F;
  --text-light: #4A5E4F;
  --text-muted: #7A8E7F;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 90, 61, 0.10);
  --shadow-lg: 0 16px 64px rgba(45, 90, 61, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

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

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forest);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

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

.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--forest);
  background: var(--forest-muted);
}

.nav-link--cta {
  background: var(--forest);
  color: var(--cream) !important;
  font-weight: 500;
}

.nav-link--cta:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 250, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-menu-link {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  color: var(--forest);
  background: var(--forest-muted);
}

.mobile-menu-link--cta {
  background: var(--forest);
  color: var(--cream) !important;
  margin-top: 8px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--forest-muted) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--forest) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--forest) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--forest);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-detail svg {
  color: var(--forest);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25);
}

.btn--primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 61, 0.3);
}

.btn--ghost {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--sand);
}

.btn--ghost:hover {
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  aspect-ratio: 520/680;
}

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

.hero-img-float {
  position: absolute;
  bottom: -40px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 340px;
  max-width: 70%;
  aspect-ratio: 340/260;
  border: 4px solid var(--cream);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  animation: float 4s ease-in-out infinite;
}

.hero-badge svg {
  color: #E8836B;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section Shared ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 600px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

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

.about-text .about-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--forest-muted);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.about-feature strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text);
}

.about-feature span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
}

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

.menu-header .section-tag {
  justify-content: center;
}

.menu-header .section-tag::before {
  display: none;
}

.menu-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.menu-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--moss));
}

.menu-card--pastry .menu-card-accent {
  background: linear-gradient(90deg, #C49A6C, #E8C49A);
}

.menu-card--bar .menu-card-accent {
  background: linear-gradient(90deg, #6B5B95, #9B8EC4);
}

.menu-card-content {
  padding: 32px;
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  background: var(--forest-muted);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 20px;
}

.menu-card--pastry .menu-card-icon {
  background: #F5EDE0;
  color: #A0784C;
}

.menu-card--bar .menu-card-icon {
  background: #EDE8F5;
  color: #6B5B95;
}

.menu-card-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.menu-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-card-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-card-list li:last-child {
  border-bottom: none;
}

.menu-card-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-tag {
  justify-content: center;
}

.gallery-header .section-tag::before {
  display: none;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  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(30, 63, 42, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-overlay span {
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 1.1rem;
}

.gallery-item--wide {
  grid-column: span 7;
  aspect-ratio: 8/5;
}

.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
  aspect-ratio: 1;
}

.gallery-item--tall {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ── Testimonial ── */
.testimonial {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 50%, var(--cream) 1px, transparent 1px);
  background-size: 40px 40px;
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  color: var(--cream);
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(250, 250, 246, 0.9);
  margin-bottom: 32px;
}

.testimonial-divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.testimonial-attr {
  font-size: 0.9rem;
  color: var(--sage);
  font-weight: 500;
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--forest-muted);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.visit-detail strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.visit-detail span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--forest-muted) 0%, var(--sand-light) 100%);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--text);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  color: var(--forest);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--forest);
  animation: fadeIn 0.4s ease;
}

.form-success svg {
  color: var(--forest);
}

.form-success span {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 250, 246, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  background: rgba(250, 250, 246, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(250, 250, 246, 0.5);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(250, 250, 246, 0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(250, 250, 246, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(250, 250, 246, 0.55);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(250, 250, 246, 0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-details {
    align-items: center;
  }

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

  .about-img-stack {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .gallery-item--tall {
    grid-column: span 6;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

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

  .visit-map {
    min-height: 320px;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-headline {
    font-size: 2rem;
  }

  .hero-img-float {
    left: -10px;
    bottom: -20px;
    width: 220px;
  }

  .hero-badge {
    right: 0;
    top: 20px;
  }

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

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

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

  .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
    aspect-ratio: 1;
  }

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

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

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

@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 60px;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-img-float {
    width: 170px;
    bottom: -16px;
    left: -8px;
  }

  .hero-img-main {
    border-radius: var(--radius-lg);
  }

  .about-img-stack {
    height: 340px;
  }

  .menu-card-content {
    padding: 24px;
  }

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

  .gallery-item--tall {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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