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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5A1F2B;
  --burgundy-light: #9B3D4E;
  --blush: #F5E6D3;
  --blush-light: #FBF5EE;
  --blush-mid: #E8D5C4;
  --cream: #FDF8F3;
  --warm-white: #FFFAF7;
  --text-dark: #2A1A1E;
  --text-mid: #5C3D44;
  --text-light: #8A656B;
  --text-muted: #A8898E;
  --gold: #C4956A;
  --gold-light: #D4AA82;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
  --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.1);
  --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', 'Palatino Linotype', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--burgundy-deep);
}

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

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  margin: 0 auto 20px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
  font-family: var(--font-display);
  color: var(--blush);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav.scrolled {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(123, 45, 59, 0.08);
}

.nav.scrolled .nav-logo {
  color: var(--burgundy);
}

.nav.scrolled .nav-link {
  color: var(--text-mid);
}

.nav.scrolled .nav-link:hover {
  color: var(--burgundy);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blush);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-logo svg {
  opacity: 0.9;
}

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

.nav-link {
  color: rgba(245, 230, 211, 0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blush);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--blush);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  background: rgba(245, 230, 211, 0.15);
  border: 1px solid rgba(245, 230, 211, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  background: var(--blush);
  color: var(--burgundy) !important;
}

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

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blush);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 31, 43, 0.82) 0%,
    rgba(123, 45, 59, 0.72) 40%,
    rgba(90, 31, 43, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.8;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--blush);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(245, 230, 211, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 230, 211, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245, 230, 211, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--blush);
  color: var(--burgundy);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(245, 230, 211, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 149, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blush);
  border: 1.5px solid rgba(245, 230, 211, 0.5);
}

.btn-outline:hover {
  background: rgba(245, 230, 211, 0.1);
  border-color: var(--blush);
  color: var(--blush);
  transform: translateY(-2px);
}

/* ─── SECTION TAGS ─── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--burgundy);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.8;
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--warm-white);
}

.about-img-secondary img {
  width: 260px;
  height: 210px;
  object-fit: cover;
  display: block;
}

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  color: var(--burgundy);
  opacity: 0.2;
  animation: floatAccent 4s ease-in-out infinite;
}

@keyframes floatAccent {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.about-text {
  padding: 20px 0;
}

.about-text .section-tag {
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.85;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ─── DIVIDER ─── */
.divider-section {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.divider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 149, 106, 0.15) 0%, transparent 70%);
}

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

.divider-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--blush);
  line-height: 1.6;
  margin-bottom: 20px;
}

.divider-attr {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

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

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

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

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

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.menu-card {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  overflow: hidden;
  height: 220px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 28px;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.menu-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.menu-note {
  text-align: center;
  padding: 28px 40px;
  background: rgba(123, 45, 59, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(123, 45, 59, 0.08);
}

.menu-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
  margin-top: 60px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

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

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

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blush);
  font-style: italic;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 5 / 7; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 7 / 10; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 10 / 13; grid-row: 2 / 3; }

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

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

.visit-info .section-tag {
  margin-bottom: 16px;
}

.visit-description {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

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

.visit-icon {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--burgundy);
  font-weight: 500;
}

.visit-detail a:hover {
  color: var(--burgundy-deep);
  text-decoration: underline;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--blush-mid) 0%, var(--blush) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
}

.map-placeholder:hover .map-icon {
  stroke: var(--blush);
}

.map-placeholder:hover p {
  color: var(--blush);
}

.map-placeholder:hover .map-hint {
  color: rgba(245, 230, 211, 0.7);
}

.map-icon {
  transition: stroke var(--transition);
}

.map-placeholder p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.map-hint {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

/* ─── CTA / CONTACT ─── */
.cta {
  padding: 120px 0;
  background: var(--warm-white);
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blush-mid), var(--burgundy), var(--gold), var(--burgundy), var(--blush-mid));
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-content .section-tag {
  justify-content: center;
}

.cta-content .section-tag::before {
  display: none;
}

.cta-description {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--blush-mid);
  border-radius: 12px;
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B2D3B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 0.95rem;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  animation: fadeInUp 0.5s ease;
}

.form-success.show {
  display: flex;
}

.form-success p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-mid);
  font-style: italic;
}

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

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  color: var(--blush);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blush);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-logo svg {
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.75;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blush);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(245, 230, 211, 0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.55);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(245, 230, 211, 0.55);
}

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

.footer-bottom {
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 230, 211, 0.35);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }

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

  .gallery-grid {
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 7 / 13; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 1 / 7; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 7 / 13; grid-row: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 1 / 7; grid-row: 3 / 4; }
  .gallery-item:nth-child(6) { grid-column: 7 / 13; grid-row: 3 / 4; }

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--burgundy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: var(--blush) !important;
    font-size: 1.1rem;
  }

  .nav-link::after {
    background: var(--blush);
  }

  .btn-nav {
    border-color: rgba(245, 230, 211, 0.4);
  }

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

  .about-img-secondary {
    right: 0;
    bottom: -30px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-img-secondary {
    right: -10px;
    bottom: -20px;
  }

  .about-img-secondary img {
    width: 180px;
    height: 150px;
  }

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

  .gallery-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 240px;
  }

  .gallery-item:nth-child(1) {
    height: 300px;
  }
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
