/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #57493f;
  background: #fefefb;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c4785a;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #483d35;
  margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: #c4785a;
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 120, 90, 0.3);
}
.btn-primary:hover {
  background: #a85e45;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 120, 90, 0.4);
}
.btn-ghost {
  background: transparent;
  color: #57493f;
  border: 1.5px solid #e8dfd0;
}
.btn-ghost:hover {
  border-color: #c4785a;
  color: #c4785a;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(254, 254, 251, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(232, 223, 208, 0.5);
}
.nav-inner {
  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;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: #483d35;
}
.nav-logo-icon { color: #c4785a; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b5a4b;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #c4785a;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #c4785a; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #c4785a;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a85e45; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #57493f;
  padding: 4px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(254, 254, 251, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #57493f;
  padding: 4px;
}
.mobile-link {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: #483d35;
  padding: 12px 0;
  transition: color 0.3s ease;
}
.mobile-link:hover { color: #c4785a; }
.mobile-link-cta {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 16px;
  padding: 14px 32px;
  background: #c4785a;
  color: #fff;
  border-radius: 50px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  background: linear-gradient(160deg, #fefefb 0%, #fdf8ee 50%, #fdf0eb 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 120, 90, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c4785a;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #483d35;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #c4785a;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #85725e;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #483d35;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: #9e8a72;
  letter-spacing: 0.02em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: #e8dfd0;
}
.hero-visual {
  position: relative;
  height: 700px;
}
.hero-img-main {
  width: 100%;
  height: 560px;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(72, 61, 53, 0.12);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: 40px;
  left: -40px;
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(72, 61, 53, 0.15);
  border: 4px solid #fefefb;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 60px;
  right: -20px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(72, 61, 53, 0.1);
  font-size: 0.85rem;
  font-weight: 500;
  color: #57493f;
}
.hero-badge svg { color: #c4785a; }
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fefefb;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── About ── */
.about {
  padding: 120px 0;
  background: #fefefb;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(72, 61, 53, 0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(72, 61, 53, 0.15);
  border: 4px solid #fefefb;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  color: #c4785a;
  opacity: 0.3;
}
.about-content { max-width: 480px; }
.about-content p {
  color: #6b5a4b;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fdf0eb, #f9ddd3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4785a;
}
.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #483d35;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.9rem;
  color: #85725e;
  margin: 0;
  line-height: 1.6;
}

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, #fefefb 0%, #fdf8ee 100%);
}
.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.menu-header .section-title { margin-bottom: 16px; }
.menu-intro { color: #85725e; font-size: 1.05rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(72, 61, 53, 0.06);
  transition: all 0.4s ease;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(72, 61, 53, 0.12);
}
.menu-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.menu-card--featured .menu-card-img { height: 100%; min-height: 400px; }
.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c4785a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: #483d35;
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: #85725e;
  line-height: 1.7;
  margin-bottom: 16px;
}
.menu-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c4785a;
  letter-spacing: 0.02em;
}

/* ── Story ── */
.story {
  padding: 120px 0;
  background: #fdf8ee;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-images { position: relative; }
.story-img-1 {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(72, 61, 53, 0.1);
  margin-bottom: 24px;
}
.story-img-2 {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(72, 61, 53, 0.12);
}
.story-pattern {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  color: #c4785a;
  opacity: 0.15;
}
.story-content { max-width: 480px; }
.story-content p {
  color: #6b5a4b;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.story-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  border-left: 3px solid #c4785a;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.story-quote blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: #483d35;
  line-height: 1.6;
  font-style: italic;
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: #fefefb;
}
.visit .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit-intro {
  font-size: 1.05rem;
  color: #85725e;
  margin-bottom: 48px;
  line-height: 1.8;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fdf0eb, #f9ddd3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4785a;
}
.visit-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #483d35;
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 0.9rem;
  color: #85725e;
  line-height: 1.6;
  white-space: nowrap;
}
.visit-detail a { color: #c4785a; transition: color 0.3s; }
.visit-detail a:hover { color: #a85e45; }
.visit-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.visit-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(72, 61, 53, 0.1);
  height: 600px;
}
.visit-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: linear-gradient(160deg, #fdf8ee 0%, #fdf0eb 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  color: #85725e;
  font-size: 1.02rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.contact-method:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(72, 61, 53, 0.08);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fdf0eb, #f9ddd3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4785a;
  flex-shrink: 0;
}
.contact-method span {
  font-size: 0.95rem;
  color: #57493f;
}
.contact-form-wrap { position: relative; }
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(72, 61, 53, 0.08);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #57493f;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e8dfd0;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #483d35;
  background: #fefdf8;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c4785a;
  box-shadow: 0 0 0 4px rgba(196, 120, 90, 0.1);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #cfbfa8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(72, 61, 53, 0.08);
}
.form-success.show { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fdf0eb, #f9ddd3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #c4785a;
}
.form-success h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #483d35;
  margin-bottom: 8px;
}
.form-success p { color: #85725e; font-size: 0.95rem; }

/* ── Footer ── */
.footer {
  background: #483d35;
  color: #e8dfd0;
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: #b5a087;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: #f5f0e8;
}
.footer-logo svg { color: #e06e56; }
.footer-links h4,
.footer-hours h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4785a;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: #b5a087;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #e06e56; }
.footer-hours p {
  font-size: 0.9rem;
  color: #b5a087;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(232, 223, 208, 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.8rem;
  color: #9e8a72;
}
.footer-bottom a {
  color: #b5a087;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: #e06e56; }

/* ── Scroll 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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 500px; order: -1; }
  .hero-img-main { height: 400px; }
  .hero-img-float { left: 0; width: 200px; bottom: 20px; }
  .hero-text { text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { max-width: 100%; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card--featured { grid-column: span 2; grid-row: span 1; }
  .menu-card--featured .menu-card-img { min-height: 280px; }
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .visit .container { grid-template-columns: 1fr; gap: 48px; }
  .visit-visual { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 0; min-height: auto; }
  .hero-visual { height: 400px; }
  .hero-img-main { height: 320px; border-radius: 160px 160px 16px 16px; }
  .hero-img-float { width: 160px; left: -10px; bottom: 10px; }
  .hero-badge { top: 30px; right: 0; font-size: 0.75rem; padding: 10px 14px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .about-img-secondary { width: 160px; right: -10px; bottom: -20px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--featured { grid-column: span 1; }
  .story-img-2 { width: 70%; }
  .story-pattern { width: 100px; height: 100px; }
  .contact-form { padding: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .visit-actions { flex-direction: column; }
  .visit-detail p { white-space: normal; }
}
