:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6E0;
  --blush-light: #FBF4F1;
  --blush-mid: #F0D5CC;
  --cream: #FFF9F6;
  --warm-white: #FFFDFB;
  --text-dark: #2D1A1E;
  --text-mid: #5C3A42;
  --text-light: #8A6068;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 100px;
}

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

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.nav.scrolled {
  background: rgba(255, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-white);
  transition: color 0.3s ease;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--warm-white);
  transition: color 0.3s ease;
}

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

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

.nav-links a {
  font-size: 0.938rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--warm-white);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blush);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav.scrolled .nav-links a::after {
  background: var(--burgundy);
}

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

.btn-nav {
  background: var(--blush) !important;
  color: var(--burgundy) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-sm);
}

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

.btn-nav:hover {
  background: var(--warm-white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--warm-white);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--burgundy);
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  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);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 31, 44, 0.82) 0%,
    rgba(123, 45, 59, 0.70) 50%,
    rgba(154, 61, 78, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

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

.hero-tag {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 249, 246, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.hero-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 249, 246, 0.8);
  font-size: 0.938rem;
  font-weight: 600;
}

.hero-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--warm-white);
  border-color: var(--burgundy);
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.35);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 45, 59, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255, 249, 246, 0.6);
}

.btn-outline:hover {
  background: var(--warm-white);
  color: var(--burgundy);
  border-color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--warm-white);
  color: var(--burgundy);
  border-color: var(--warm-white);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255, 249, 246, 0.6);
}

.btn-white-outline:hover {
  background: var(--warm-white);
  color: var(--burgundy);
  border-color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.feature-card {
  background: var(--blush-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--burgundy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

/* Menu */
.menu {
  padding: 100px 0;
  background: var(--blush-light);
}

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

.menu-category {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 45, 59, 0.05);
}

.menu-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--blush);
}

.menu-cat-icon {
  width: 52px;
  height: 52px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  flex-shrink: 0;
}

.menu-cat-icon svg {
  width: 24px;
  height: 24px;
}

.menu-cat-header h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.menu-item-desc {
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: right;
  flex-shrink: 0;
  max-width: 220px;
}

.menu-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.938rem;
  font-style: italic;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--warm-white);
  overflow: hidden;
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  z-index: -1;
}

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

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--blush);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Community */
.community {
  padding: 100px 0;
  background: var(--blush-light);
}

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

.community-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

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

.community-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: all 0.3s ease;
}

.community-card:hover .community-icon {
  background: var(--burgundy);
  color: var(--warm-white);
  transform: scale(1.08);
}

.community-icon svg {
  width: 32px;
  height: 32px;
}

.community-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.community-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* Visit */
.visit {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.visit-info .section-tag {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 36px;
}

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

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

.visit-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.visit-detail-icon svg {
  width: 22px;
  height: 22px;
}

.visit-detail h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.visit-detail p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* CTA */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 31, 44, 0.88) 0%,
    rgba(123, 45, 59, 0.78) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 249, 246, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: rgba(255, 249, 246, 0.7);
  padding: 72px 0 0;
}

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

.footer-logo {
  color: var(--warm-white);
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  color: var(--warm-white);
}

.footer-brand p {
  font-size: 0.938rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.938rem;
  color: rgba(255, 249, 246, 0.6);
  transition: color 0.3s ease;
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.938rem;
  line-height: 1.6;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blush);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 249, 246, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 249, 246, 0.4);
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .visit-grid {
    gap: 48px;
  }
}

@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(--warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-links a {
    color: var(--text-mid) !important;
    font-size: 1.1rem;
  }

  .nav-links a::after {
    background: var(--burgundy) !important;
  }

  .nav-links a:hover {
    color: var(--burgundy) !important;
  }

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

  .features-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 350px;
  }

  .about-image-accent {
    display: none;
  }

  .about-content .section-tag,
  .about-content .section-title,
  .visit-info .section-tag,
  .visit-info .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

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

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

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

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

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

@media (max-width: 480px)
{
  .container {
    padding: 0 16px;
  }

  .features,
  .menu,
  .about,
  .community,
  .visit {
    padding: 72px 0;
  }

  .feature-card,
  .menu-category,
  .community-card {
    padding: 28px 24px;
  }

  .menu-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .menu-item-desc {
    max-width: none;
    text-align: left;
  }

  .menu-list li {
    flex-direction: column;
    gap: 4px;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }

  .visit-detail {
    flex-direction: column;
    gap: 12px;
  }
}
