 @font-face {
            font-family: 'NoirPro';
            src: url('fonts/NoirPro-Light.woff2') format('woff2'),
                 url('fonts/NoirPro-Light.woff') format('woff'),
                 url('fonts/NoirPro-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'NoirPro';
            src: url('fonts/NoirPro-LightItalic.woff2') format('woff2'),
                 url('fonts/NoirPro-LightItalic.woff') format('woff'),
                 url('fonts/NoirPro-LightItalic.ttf') format('truetype');
            font-weight: 300;
            font-style: italic;
            font-display: swap;
        }
        @font-face {
            font-family: 'NoirPro';
            src: url('fonts/NoirPro-Regular.woff2') format('woff2'),
                 url('fonts/NoirPro-Regular.woff') format('woff'),
                 url('fonts/NoirPro-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'NoirPro';
            src: url('fonts/NoirPro-Italic.woff2') format('woff2'),
                 url('fonts/NoirPro-Italic.woff') format('woff'),
                 url('fonts/NoirPro-Italic.ttf') format('truetype');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }
:root {
  --red: #CB565D;
  --red-dark: #a84249;
  --black: #000000;
  --white: #ffffff;
  --grey-light: #F7F7F8;
  --grey-mid: #CDCDBC;
  --grey-dark: #3A746F;
  --navy: #F7F7F8;
  --text: #1a1a1a;
  --text-muted: #666;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.header-logo {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
header.scrolled .header-logo { color: var(--black); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}
header.scrolled .header-nav a { color: var(--text-muted); }
.header-nav a:hover { color: var(--red) !important; }

.header-book-btn {
  padding: 10px 24px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.header-book-btn:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
header.scrolled .hamburger span { background: var(--black); }

.side-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--black);
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
  overflow-y: auto;
}
.side-menu.open { right: 0; }

.side-menu-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.side-menu-close:hover { opacity: 1; }

.side-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.side-menu nav a {
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.side-menu nav a:hover { color: var(--red); padding-left: 12px; }

.side-menu-footer {
  margin-top: auto;
  padding-top: 40px;
}
.side-menu-footer p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.side-social {
  display: flex;
  gap: 20px;
}
.side-social a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.side-social a:hover { color: var(--red); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.overlay.active { opacity: 1; pointer-events: all; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1515 40%, #1a0505 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-bg-text {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 120px;
  width: 3px;
  height: 45%;
  background: var(--red);
}

.hero-elephant {
  position: absolute;
  right: 60px;
  bottom: 100px;
  width: clamp(100px, 12vw, 180px);
  opacity: 0.15;
  filter: invert(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  border-left: 2px solid var(--red);
  padding-left: 12px;
}

.hero-title {
  
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 40px;
  background: var(--red);
  color: var(--white);
  font-family: 'NoirPro', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  padding: 15px 40px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'NoirPro', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

section { padding: 100px 60px; }

.section-tag {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
}

.section-title {
  
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 500px;
}

.about-strip {
  background: var(--black);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.about-stat {
  padding: 30px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.about-stat:last-child { border-right: none; }

.stat-num {
  
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a0505 0%, #2d1010 50%, #CB565D22 100%);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: 'ATMOSPHERE';
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.2);
}

.about-elephant-dec {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 120px;
  height: 120px;
}

.about-quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--red);
  padding: 30px;
  max-width: 240px;
}
.about-quote p {
  
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.about-text { }
.about-values {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-item {
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.08);
}
.value-item h4 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.value-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-section {
  background: var(--grey-light);
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin: 40px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.menu-tab {
  padding: 14px 28px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.menu-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.menu-tab:hover { color: var(--red); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.menu-card {
  background: var(--white);
  padding: 30px;
  transition: box-shadow 0.2s;
}
.menu-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--grey-light), #e0d8d0);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.menu-card-img::after {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.2;
}

.menu-card h3 {
  
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.menu-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-price {
  
  font-size: 1.4rem;
  color: var(--red);
}
.menu-weight {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.menu-pdf-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-pdf-row p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.special-card {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.special-card:hover { transform: translateY(-4px); }
.special-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 60px;
  background: var(--red);
}
.special-card h3 {
  
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.special-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.special-card .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.events-section { background: var(--grey-light); }

.events-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: padding-left 0.2s;
}
.event-item:hover { padding-left: 12px; }
.event-item:hover .event-title { color: var(--red); }

.event-date-box {
  text-align: center;
  background: var(--red);
  padding: 16px 12px;
  color: var(--white);
}
.event-date-day {
  
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.event-date-month {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.event-title {
  
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.event-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.event-btn {
  padding: 10px 24px;
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
  white-space: nowrap;
}
.event-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.gallery-section { padding: 100px 0; }
.gallery-header { padding: 0 60px; margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-thumb {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #1a0505, #3d1515);
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }

.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(203,86,93,0);
  transition: background 0.3s;
}
.gallery-item:hover .gallery-thumb::after { background: rgba(203,86,93,0.2); }

.g1 { background: linear-gradient(135deg, #2d1010, #4a1a1a) !important; }
.g2 { background: linear-gradient(135deg, #0d1a1a, #1a2f2f) !important; }
.g3 { background: linear-gradient(135deg, #1a1a0d, #2f2f1a) !important; }
.g4 { background: linear-gradient(135deg, #1a0d1a, #2f1a2f) !important; }
.g5 { background: linear-gradient(135deg, #0d1a0d, #1a2f1a) !important; }
.g6 { background: linear-gradient(135deg, #1a0d0d, #2f1a1a) !important; }
.g7 { background: linear-gradient(135deg, #0d0d1a, #1a1a2f) !important; }
.g8 { background: linear-gradient(135deg, #1a1a1a, #2f2f2f) !important; }

.banquets-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.banquets-visual {
  background: linear-gradient(135deg, #1a0505 0%, #3d1010 100%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.banquets-visual::before {
  content: 'EVENTS';
  position: absolute;
  top: 40px; left: 60px;
  
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.1em;
}
.banquets-visual h2 {
  
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.banquets-visual p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 36px;
}

.banquets-content {
  background: var(--grey-light);
  padding: 80px 60px;
}
.banquets-types {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.banquet-type {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: padding-left 0.2s;
}
.banquet-type:hover { padding-left: 8px; }
.banquet-type:hover .bt-title { color: var(--red); }
.bt-num {
  
  font-size: 0.9rem;
  color: var(--red);
  opacity: 0.6;
  min-width: 30px;
}
.bt-title {
  font-size: 1.2rem;
  transition: color 0.2s;
}
.bt-arrow {
  margin-left: auto;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.banquet-type:hover .bt-arrow { opacity: 1; transform: translateX(4px); }

.loyalty-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.loyalty-section .section-tag { justify-content: center; }
.loyalty-section .section-tag::before { display: none; }
.loyalty-section .section-title { color: var(--white); }
.loyalty-section .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 60px; }

.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 60px;
}
.loyalty-tier {
  background: rgba(255,255,255,0.03);
  padding: 40px 30px;
  transition: background 0.2s;
}
.loyalty-tier:hover { background: rgba(203,86,93,0.15); }
.tier-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.tier-name {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.tier-bonus {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.tier-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.delivery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.delivery-visual {
  background: linear-gradient(135deg, var(--grey-light), #e8e0d8);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.delivery-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.booking-section {
  background: var(--grey-light);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--red);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.form-consent a { color: var(--red); }

.booking-info h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.booking-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--text);
}

.map-section {
  height: 350px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 30px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: all 0.2s;
}
.footer-social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

.float-book {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 8px 30px rgba(203,86,93,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-book:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(203,86,93,0.5); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  background: var(--white);
  padding: 60px;
  max-width: 560px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--red); }
.modal-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .tick {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.form-success p { font-size: 0.82rem; color: var(--text-muted); }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.news-card {
  cursor: pointer;
}
.news-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--grey-light), #e0d8d0);
  margin-bottom: 20px;
  overflow: hidden;
}
.news-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}
.news-card:hover .news-thumb-inner { transform: scale(1.05); }
.n1 { background: linear-gradient(135deg, #1a0505, #3d1515) !important; }
.n2 { background: linear-gradient(135deg, #05101a, #153d3d) !important; }
.n3 { background: linear-gradient(135deg, #0d1a05, #1a3d15) !important; }

.news-date {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.news-card:hover h3 { color: var(--red); }
.news-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 900px) {
  section { padding: 70px 30px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  header { padding: 0 24px; }
  
  .hero-content { padding: 0 30px 60px; }
  .hero-scroll { right: 30px; }
  
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .about-quote { bottom: -20px; right: -10px; }
  
  .banquets-section { grid-template-columns: 1fr; }
  .banquets-visual { padding: 60px 30px; }
  .banquets-content { padding: 60px 30px; }
  
  .delivery-section { grid-template-columns: 1fr; }
  
  .booking-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  footer { padding: 60px 30px 30px; }
  
  .gallery-section { padding: 70px 0; }
  .gallery-header { padding: 0 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  
  .about-strip { padding: 40px 30px; }
  .about-stat { padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-stat:last-child { border-bottom: none; }
  
  .modal-box { padding: 40px 24px; }
  .float-book { bottom: 20px; right: 20px; padding: 12px 20px; }
  
  .event-item { grid-template-columns: 70px 1fr; }
  .event-btn { display: none; }
  
  .about-values { grid-template-columns: 1fr; }
  
  .hero-bg-text { font-size: 18vw; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  
  .specials-grid { grid-template-columns: 1fr; }
  .loyalty-tiers { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  
  .menu-tabs { gap: 0; }
  .menu-tab { padding: 12px 16px; font-size: 0.58rem; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}