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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --blush: #F5E6E0;
  --blush-light: #FAF3F0;
  --cream: #FDF9F7;
  --text-dark: #1A1214;
  --text-mid: #4A3638;
  --text-light: #8A7074;
  --line: rgba(123, 45, 59, 0.12);
  --line-strong: rgba(123, 45, 59, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

.loader-line {
  width: 60px;
  height: 2px;
  background: var(--blush);
  animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(253, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--burgundy);
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width var(--transition);
}

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

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

.nav-cta {
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burgundy) !important;
  border: 1px solid var(--burgundy);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition) !important;
}

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

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

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

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Hero */
.hero {
  min-height: 100vh;
  padding: 120px clamp(1.5rem, 4vw, 4rem) 0;
  position: relative;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.hero-headline em.accent {
  color: var(--burgundy);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--blush);
  border-color: var(--burgundy);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--line-strong);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Image Stack */
.hero-right {
  position: relative;
  height: 700px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(26, 18, 20, 0.12);
}

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

.hero-img-main {
  width: 75%;
  height: 82%;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero-img-accent {
  width: 55%;
  height: 38%;
  bottom: 18%;
  left: 0;
  z-index: 2;
  border: 4px solid var(--cream);
}

.hero-img-small {
  width: 42%;
  height: 26%;
  bottom: 0;
  right: 10%;
  z-index: 3;
  border: 4px solid var(--cream);
}

/* Hero Divider */
.hero-divider {
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: var(--line);
  margin-top: 0;
}

/* Hero Meta */
.hero-meta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.meta-dot {
  color: var(--burgundy);
  font-weight: 500;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* Section Eyebrow */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 1.25rem;
}

/* Section Title */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* About */
.about {
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 18, 20, 0.1);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Menu */
.menu {
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--blush-light);
}

.menu > .container {
  text-align: center;
  margin-bottom: 4rem;
}

.menu > .container .section-title {
  margin-bottom: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.menu-col {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-col:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(26, 18, 20, 0.06);
}

.menu-col-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

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

.menu-item-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 3rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* Visit */
.visit {
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.hours-table {
  margin: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-day {
  color: var(--text-mid);
  font-weight: 400;
}

.hours-time {
  color: var(--burgundy);
  font-weight: 400;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.detail-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition);
}

.detail-value:hover {
  color: var(--burgundy);
}

.visit-map {
  border-radius: 4px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(26, 18, 20, 0.08);
  border: 1px solid var(--line);
}

/* Contact */
.contact {
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--burgundy);
  color: var(--blush);
}

.contact .section-eyebrow {
  color: var(--blush);
  opacity: 0.7;
}

.contact .section-title {
  color: var(--blush);
}

.contact-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 230, 224, 0.7);
  max-width: 420px;
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 230, 224, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--blush);
  background: rgba(253, 249, 247, 0.08);
  border: 1px solid rgba(245, 230, 224, 0.2);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 230, 224, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blush);
  background: rgba(253, 249, 247, 0.12);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  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='%23F5E6E0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--burgundy);
  color: var(--blush);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  gap: 1rem;
}

.form-success svg {
  color: var(--blush);
  opacity: 0.8;
}

.form-success p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--blush);
  font-weight: 400;
}

/* Footer */
.footer {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--text-dark);
  color: var(--blush);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--blush);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(245, 230, 224, 0.3);
  border-radius: 50%;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blush);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245, 230, 224, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

.footer-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 230, 224, 0.4);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(245, 230, 224, 0.6);
  text-decoration: none;
  font-weight: 300;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 230, 224, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245, 230, 224, 0.35);
  font-weight: 300;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-right {
    height: 500px;
  }

  .hero-img-main {
    width: 70%;
    height: 75%;
  }

  .hero-img-accent {
    width: 55%;
    height: 35%;
  }

  .hero-img-small {
    width: 45%;
    height: 28%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    height: 400px;
    order: -1;
  }

  .hero-img-main {
    width: 65%;
    height: 70%;
  }

  .hero-img-accent {
    width: 55%;
    height: 32%;
  }

  .hero-img-small {
    width: 50%;
    height: 28%;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.78rem;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .about-stats {
    gap: 2rem;
  }

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

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

  .visit-map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .hero-right {
    height: 300px;
  }

  .hero-img-main {
    width: 70%;
    height: 70%;
  }

  .hero-img-accent {
    width: 60%;
    height: 35%;
  }

  .hero-img-small {
    width: 55%;
    height: 30%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
