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

:root {
  --terracotta: #B85D38;
  --terracotta-dark: #9A4B2C;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FFF8F0;
  --sand-dark: #E8D5C0;
  --cream: #FFFDF9;
  --brown-dark: #3D2117;
  --brown-mid: #5C3A2E;
  --text-primary: #2C1810;
  --text-secondary: #6B4234;
  --text-muted: #8B6555;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(60, 33, 23, 0.08);
  --shadow-md: 0 4px 20px rgba(60, 33, 23, 0.12);
  --shadow-lg: 0 8px 40px rgba(60, 33, 23, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-display: 'Playfair 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-primary);
  background-color: var(--sand-light);
  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;
}

/* === NAVBAR === */
.navbar {
  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(184, 93, 56, 0.1);
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-dark);
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
  background: rgba(184, 93, 56, 0.08);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: 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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--sand-light);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(184, 93, 56, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 132, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(245, 230, 211, 0.5) 0%, transparent 40%);
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 93, 56, 0.1);
  color: var(--terracotta);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--terracotta);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 93, 56, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 93, 56, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--brown-dark);
  border: 2px solid var(--sand-dark);
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-stat .stat-number {
  font-size: 1.2rem;
}

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 640px;
}

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

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

.hero-img-main {
  width: 380px;
  height: 480px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-float {
  width: 260px;
  height: 180px;
  bottom: 140px;
  right: -30px;
  z-index: 3;
  border: 4px solid var(--white);
}

.hero-img-accent {
  width: 200px;
  height: 140px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  border: 4px solid var(--white);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* === FEATURE STRIP === */
.feature-strip {
  background: var(--terracotta);
  padding: 0;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 8px;
}

.feature-item span {
  font-weight: 700;
  font-size: 0.95rem;
}

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

.section-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.menu-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.menu-card-featured .menu-card-img {
  height: 100%;
  min-height: 320px;
}

.menu-card-featured .menu-card-body {
  padding: 32px;
}

.menu-card-featured h3 {
  font-size: 1.6rem;
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.menu-card-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.menu-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 20px;
  background: rgba(184, 93, 56, 0.06);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--sand-dark);
}

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

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-main {
  position: absolute;
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: -20px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.12;
  z-index: -1;
}

.about-content {
  max-width: 480px;
}

.about-content .section-tag {
  text-align: left;
}

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

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-dark);
}

.value-icon {
  background: rgba(184, 93, 56, 0.1);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 1 / 3; }

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

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info .section-tag {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-row span,
.contact-row a {
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 600;
}

.contact-row a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-map {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--sand-light);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--sand-dark);
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--sand-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--terracotta-light);
  padding-left: 6px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--sand-dark);
  line-height: 1.6;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: var(--sand-dark);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === SCROLL REVEAL (progressive enhancement) === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-stack {
    height: 480px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img-main {
    width: 280px;
    height: 360px;
  }

  .hero-img-float {
    width: 200px;
    height: 140px;
  }

  .hero-img-accent {
    width: 160px;
    height: 110px;
  }

  .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: 260px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-values {
    align-items: center;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-info .section-tag,
  .visit-info .section-title {
    text-align: left;
  }

  .visit-map {
    height: 360px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    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(184, 93, 56, 0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-left: 0 !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 40px 24px;
  }

  .hero-image-stack {
    height: 380px;
  }

  .hero-img-main {
    width: 220px;
    height: 280px;
  }

  .hero-img-float {
    width: 160px;
    height: 110px;
    right: -10px;
  }

  .hero-img-accent {
    width: 130px;
    height: 90px;
  }

  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .menu-card-featured {
    grid-column: span 1;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-item:nth-child(1) { grid-column: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; }
  .gallery-item:nth-child(3) { grid-column: 1 / 2; }
  .gallery-item:nth-child(4) { grid-column: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 1 / 3; }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .hero-image-stack {
    height: 300px;
  }

  .hero-img-main {
    width: 180px;
    height: 230px;
  }

  .hero-img-float {
    width: 130px;
    height: 90px;
  }

  .hero-img-accent {
    width: 110px;
    height: 75px;
  }

  .hero-stats {
    gap: 20px;
  }

  .feature-strip-inner {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .about-images {
    height: 340px;
  }

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

  .about-img-secondary {
    width: 60%;
    height: 45%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
