/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #3D2B2B;
  background: #FDF8F6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush: #F5D5CC;
  --blush-light: #FDF0EC;
  --cream: #FDF8F6;
  --warm-white: #FFFAF8;
  --text-dark: #3D2B2B;
  --text-muted: #7A6060;
  --text-light: #A88989;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-soft: 0 4px 24px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 8px 40px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 16px 64px rgba(123, 45, 59, 0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: linear-gradient(135deg, var(--blush), var(--blush-light));
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag-light {
  color: var(--blush);
  background: rgba(245, 213, 204, 0.2);
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.section-heading-light { color: #FDF0EC; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-secondary:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(253, 248, 246, 0.95);
  box-shadow: var(--shadow-soft);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--burgundy);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--burgundy); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--burgundy);
  color: #fff !important;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all var(--transition);
}
.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(245, 213, 204, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text { max-width: 560px; }
.hero-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.2);
  border-radius: 1px;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 600/750;
}
.hero-img-main img,
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--cream);
}
.hero-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--burgundy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 2rem;
  background: var(--warm-white);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--warm-white);
}
.about-img-accent img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.about-content { max-width: 520px; }
.about-content .section-heading { margin-top: 0.5rem; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}
.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--blush-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}
.value-item span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== MENU ===== */
.menu {
  padding: 8rem 2rem;
  background: var(--cream);
}
.menu-inner { max-width: 1280px; margin: 0 auto; }
.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.menu-header .section-heading { margin-bottom: 1rem; }
.menu-intro {
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.menu-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.menu-card-visual {
  overflow: hidden;
  height: 220px;
}
.menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.menu-card:hover .menu-card-visual img { transform: scale(1.05); }
.menu-card-body { padding: 2rem; }
.menu-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.menu-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.menu-list { display: flex; flex-direction: column; gap: 0.875rem; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list li span:first-child {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
}
.menu-list li span:last-child {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: right;
  flex-shrink: 0;
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ===== SPACE ===== */
.space {
  padding: 8rem 2rem;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}
.space-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(245, 213, 204, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(245, 213, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.space-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.space-content { max-width: 520px; }
.space-content .section-heading { margin-top: 0.5rem; }
.space-desc {
  color: rgba(253, 240, 236, 0.75);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.space-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.space-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(253, 240, 236, 0.9);
}
.space-feature svg { flex-shrink: 0; margin-top: 2px; }

/* Space gallery */
.space-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.space-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.space-gallery-item--tall {
  grid-row: 1 / 3;
}
.space-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.space-gallery-item:hover img { transform: scale(1.04); }
.space-gallery-item--tall img { height: 100%; min-height: 320px; }
.space-gallery-item:not(.space-gallery-item--tall) img { height: 160px; }

/* ===== VISIT ===== */
.visit {
  padding: 8rem 2rem;
  background: var(--warm-white);
}
.visit-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-left { max-width: 560px; }
.visit-left .section-heading { margin-top: 0.5rem; }
.visit-desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--blush-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}
.visit-detail span,
.visit-detail a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--burgundy); text-decoration: underline; }
.visit-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }

/* Contact card */
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.contact-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(123, 45, 59, 0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success svg { margin: 0 auto 1rem; }
.form-success h4 {
  font-size: 1.375rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); font-size: 0.9375rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(253, 240, 236, 0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 240, 236, 0.1);
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  color: #FDF0EC;
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(253, 240, 236, 0.6);
  transition: color var(--transition);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--blush); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(253, 240, 236, 0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 500px; }
  .hero-text { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { max-width: 100%; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .space-inner { grid-template-columns: 1fr; gap: 3rem; }
  .space-content { max-width: 100%; }
  .visit-inner { grid-template-columns: 1fr; gap: 3rem; }
  .visit-left { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 43, 43, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }

  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-img-float { left: -1rem; bottom: -1.5rem; width: 50%; }
  .hero-badge { right: 0; top: 1rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-divider { display: none; }

  .about, .menu, .space, .visit { padding: 5rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .space-features { grid-template-columns: 1fr; }
  .space-gallery { grid-template-columns: 1fr; }
  .space-gallery-item--tall { grid-row: auto; }
  .space-gallery-item--tall img,
  .space-gallery-item:not(.space-gallery-item--tall) img { height: 220px; }
  .about-img-accent { width: 50%; right: -1rem; bottom: -1rem; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-card { padding: 1.5rem; }
}
