/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terra: #C2654A;
  --terra-dark: #A8523A;
  --terra-light: #D4856F;
  --sand: #F5EDE3;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD0;
  --cream: #FFFDF9;
  --brown: #5C3A2E;
  --brown-light: #7A5244;
  --text: #3D2B24;
  --text-light: #7A655C;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(92,58,46,0.08);
  --shadow-md: 0 4px 20px rgba(92,58,46,0.10);
  --shadow-lg: 0 8px 40px rgba(92,58,46,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  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; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194,101,74,0.08);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--terra);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
  color: var(--text-light);
}

.nav-links a:hover {
  background: var(--sand);
  color: var(--terra);
}

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

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 4px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

.btn-primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,101,74,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 0;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(194,101,74,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--brown);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.badge svg { width: 16px; height: 16px; color: var(--terra); }

/* Hero Images */
.hero-images {
  position: relative;
  height: 580px;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.hero-img--main {
  width: 360px;
  height: 460px;
  top: 0;
  left: 40px;
  z-index: 2;
}

.hero-img--accent {
  width: 220px;
  height: 220px;
  z-index: 3;
  bottom: 100px;
  right: 0;
  border: 5px solid var(--sand-light);
}

.hero-img--bottom {
  width: 260px;
  height: 180px;
  z-index: 1;
  bottom: 0;
  left: 20px;
  border: 5px solid var(--sand-light);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img:hover img { transform: scale(1.05); }

.hero-wave {
  margin-top: auto;
  color: var(--cream);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  padding: 80px 24px;
  background: var(--cream);
}

.highlights-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(194,101,74,0.06);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194,101,74,0.15);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

/* ===== MENU ===== */
.menu {
  padding: 100px 24px;
  background: var(--sand-light);
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(194,101,74,0.06);
  position: relative;
  transition: all var(--transition);
}

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

.menu-card--featured {
  border: 2px solid var(--terra-light);
  background: linear-gradient(135deg, var(--white) 0%, rgba(245,237,227,0.5) 100%);
}

.menu-card-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
}

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

.menu-card-emoji {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
}

.menu-list { list-style: none; }

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--sand-dark);
  gap: 12px;
}

.menu-list li:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
  flex-shrink: 0;
  max-width: 200px;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: var(--cream);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.about-img--1 {
  width: 320px;
  height: 420px;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img--2 {
  width: 240px;
  height: 240px;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--cream);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

.about-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 24px;
  background: var(--sand-light);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/2;
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* ===== VISIT ===== */
.visit {
  padding: 100px 24px;
  background: var(--cream);
}

.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info .section-eyebrow { text-align: left; }
.visit-info .section-title { text-align: left; margin-bottom: 16px; }
.visit-desc {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
}

.visit-details { display: flex; flex-direction: column; gap: 24px; }

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

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

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

.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 4px;
}

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

.visit-detail a {
  color: var(--text);
  transition: color var(--transition);
}

.visit-detail a:hover { color: var(--terra); }

/* Form */
.visit-form-wrap { position: relative; }

.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(194,101,74,0.08);
}

.visit-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--sand-light);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(194,101,74,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  margin-top: 20px;
  padding: 20px;
  background: #E8F5E9;
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-success-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.form-success svg {
  width: 24px;
  height: 24px;
  color: #43A047;
  flex-shrink: 0;
}

.form-success p {
  font-weight: 700;
  color: #2E7D32;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: var(--sand);
  padding: 72px 24px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { color: var(--sand); margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; color: rgba(245,237,227,0.7); max-width: 300px; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

.footer-links li,
.footer-contact li { margin-bottom: 12px; }

.footer-links a,
.footer-contact a {
  font-size: 0.92rem;
  color: rgba(245,237,227,0.7);
  transition: color var(--transition);
}

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

.footer-contact span { font-size: 0.92rem; color: rgba(245,237,227,0.7); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(245,237,227,0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245,237,227,0.5);
}

/* ===== MOBILE NAV ===== */
.nav-links.active {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255,253,249,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  border-bottom: 1px solid rgba(194,101,74,0.1);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.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); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-images { height: 440px; max-width: 480px; margin: 0 auto; }
  .hero-img--main { width: 280px; height: 360px; left: 20px; }
  .hero-img--accent { width: 170px; height: 170px; }
  .hero-img--bottom { width: 200px; height: 140px; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 440px; max-width: 480px; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 90px 24px 0; min-height: auto; }
  .hero-images { height: 360px; }
  .hero-img--main { width: 220px; height: 280px; left: 10px; }
  .hero-img--accent { width: 140px; height: 140px; bottom: 80px; right: 0; }
  .hero-img--bottom { width: 160px; height: 120px; left: 10px; bottom: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .highlights-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 28px 24px; }

  .about-images { height: 360px; }
  .about-img--1 { width: 220px; height: 280px; }
  .about-img--2 { width: 170px; height: 170px; }
  .about-stats { gap: 24px; }

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

  .form-row { grid-template-columns: 1fr; }
  .visit-form-card { padding: 28px 24px; }

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

@media (max-width: 480px) {
  .hero-images { height: 300px; }
  .hero-img--main { width: 170px; height: 220px; left: 5px; }
  .hero-img--accent { width: 120px; height: 120px; }
  .hero-img--bottom { width: 140px; height: 100px; }
  .hero-badges { flex-direction: column; }
  .badge { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
}
