/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2B1F;
  background: #FDF6EE;
  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; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }

/* ============ CUSTOM PROPERTIES ============ */
:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FDF6EE;
  --sand-dark: #E8D5C0;
  --brown: #3D2B1F;
  --brown-light: #6B5344;
  --cream: #FFF9F3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61,43,31,0.06);
  --shadow-md: 0 8px 30px rgba(61,43,31,0.10);
  --shadow-lg: 0 16px 50px rgba(61,43,31,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

/* ============ LAYOUT ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,96,58,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-secondary:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 32px; }

/* ============ SECTION HEADERS ============ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--terracotta-light), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,238,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192,96,58,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--brown);
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-light);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.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: all 0.3s ease;
}
.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 {
  padding: 120px 0 0;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,96,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--brown-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--brown-light);
}
.meta-item a { color: var(--terracotta); font-weight: 600; }
.meta-item a:hover { text-decoration: underline; }
.meta-item svg { color: var(--terracotta); flex-shrink: 0; }

/* Hero Images */
.hero-images {
  position: relative;
  height: 600px;
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img:hover img { transform: scale(1.03); }
.hero-img--main {
  width: 340px;
  height: 440px;
  right: 40px;
  top: 0;
  z-index: 2;
}
.hero-img--accent {
  width: 260px;
  height: 200px;
  right: 0;
  bottom: 60px;
  z-index: 3;
  border: 6px solid var(--sand-light);
}
.hero-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  box-shadow: var(--shadow-md);
}
.hero-badge svg { color: var(--terracotta); }
.hero-wave {
  color: var(--sand-light);
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--sand-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 620px;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img--1 {
  width: 280px;
  height: 380px;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-img--2 {
  width: 260px;
  height: 260px;
  right: 0;
  bottom: 0;
  z-index: 3;
  border: 6px solid var(--sand-light);
}
.about-accent-box {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}
.about-accent-box .accent-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 4px;
}
.about-accent-box .accent-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.4;
}
.about-copy .section-title { margin-bottom: 24px; }
.about-text {
  color: var(--brown-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192,96,58,0.1), rgba(192,96,58,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}
.feature-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ============ MENU ============ */
.menu {
  padding: 100px 0;
  background: var(--white);
}
.menu .section-header { margin-bottom: 60px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.menu-card-img {
  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.06); }
.menu-card-body {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.menu-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.menu-card-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}
.menu-note {
  font-size: 0.9rem;
  color: var(--brown-light);
  font-style: italic;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 100px 0;
  background: var(--sand-light);
}
.gallery .section-header { margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--tall img { height: 100%; min-height: 440px; }
.gallery-item--wide { grid-column: span 5; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3; }
.gallery-item:not(.gallery-item--tall) img { height: 210px; }

/* ============ VISIT ============ */
.visit {
  padding: 100px 0;
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info .section-title { margin-bottom: 16px; }
.visit-desc {
  font-size: 1.05rem;
  color: var(--brown-light);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192,96,58,0.1), rgba(192,96,58,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--brown-light);
}
.contact-item a { color: var(--terracotta); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.visit-form-wrapper {
  position: sticky;
  top: 100px;
}
.visit-form-card {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.visit-form-card h3 {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B8A494;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { color: var(--terracotta); margin-bottom: 16px; }
.form-success h4 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--brown-light);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============ 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 { gap: 40px; }
  .hero-images { height: 480px; }
  .hero-img--main { width: 280px; height: 360px; }
  .hero-img--accent { width: 220px; height: 170px; }
  .about-grid { gap: 48px; }
  .about-images { height: 500px; }
  .gallery-item--tall img { min-height: 340px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { align-items: center; }
  .hero-images {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--tall img { min-height: 260px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item:not(.gallery-item--tall) img { height: 200px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-form-wrapper { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,238,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(192,96,58,0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 0; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .about-images { height: 360px; }
  .about-img--1 { width: 200px; height: 280px; }
  .about-img--2 { width: 180px; height: 180px; }
  .about-accent-box { padding: 16px 20px; min-width: 140px; }
  .about-accent-box .accent-number { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall img { min-height: 260px; }
  .visit-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-images { height: 300px; }
  .about-img--1 { width: 160px; height: 220px; }
  .about-img--2 { width: 150px; height: 150px; }
}
