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

:root {
  --terracotta: #B56C4F;
  --terracotta-dark: #9A5A3F;
  --terracotta-deep: #7D4A33;
  --sand: #F5E6D3;
  --sand-light: #FBF5ED;
  --sand-mid: #E8D5C0;
  --cream: #FDF8F2;
  --brown-dark: #3D2B1F;
  --brown-mid: #5C4033;
  --brown-text: #4A3728;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 43, 31, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.16);
  --shadow-xl: 0 16px 60px rgba(61, 43, 31, 0.20);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --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(--brown-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: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta-dark);
}

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

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181, 108, 79, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

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

.text-accent {
  color: var(--terracotta);
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(181, 108, 79, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181, 108, 79, 0.45);
}

.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-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(181, 108, 79, 0.1);
  transition: all 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;
}

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

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-mid);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width var(--transition);
}

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

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

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 242, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-dark);
  padding: 8px;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--terracotta);
  background: rgba(181, 108, 79, 0.08);
}

.mobile-nav-cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
}

.mobile-nav-cta:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(181, 108, 79, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 230, 211, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(181, 108, 79, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

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

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

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

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracotta);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--brown-mid);
  font-weight: 600;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-mid);
}

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

.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: 500px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 190px;
  bottom: 160px;
  left: -30px;
  z-index: 3;
  border: 4px solid var(--sand);
}

.hero-img-float {
  width: 220px;
  height: 160px;
  bottom: 20px;
  right: 40px;
  z-index: 4;
  border: 4px solid var(--sand);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 1;
}

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

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

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

.about-img-main {
  position: absolute;
  width: 300px;
  height: 420px;
  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: 240px;
  height: 170px;
  bottom: 40px;
  right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

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

.about-accent-card {
  position: absolute;
  width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  top: 200px;
  right: -20px;
  z-index: 2;
}

.about-accent-card svg {
  margin-bottom: 12px;
}

.about-accent-text {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

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

.about-body {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.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 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(181, 108, 79, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: var(--brown-mid);
}

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

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu-intro {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.8;
}

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

.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.menu-category-featured {
  background: var(--brown-dark);
}

.menu-category-featured .menu-cat-header h3,
.menu-category-featured .menu-item-name,
.menu-category-featured .menu-cat-badge {
  color: var(--white);
}

.menu-category-featured .menu-item-desc {
  color: rgba(255, 255, 255, 0.7);
}

.menu-category-featured .menu-cat-icon {
  background: rgba(255, 255, 255, 0.15);
}

.menu-cat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.menu-cat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(181, 108, 79, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-cat-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-dark);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.5;
}

.menu-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.menu-footer p {
  font-size: 0.9rem;
  color: var(--brown-mid);
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 120px 0;
  background: var(--cream);
}

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

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

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.experience-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.experience-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sand-mid);
  line-height: 1;
  min-width: 60px;
}

.experience-item-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.experience-item-content p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

.experience-images {
  position: relative;
  height: 620px;
}

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

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

.exp-img-1 {
  width: 260px;
  height: 380px;
  top: 0;
  right: 0;
  z-index: 2;
}

.exp-img-2 {
  width: 240px;
  height: 180px;
  bottom: 140px;
  left: 0;
  z-index: 3;
  border: 4px solid var(--cream);
}

.exp-img-3 {
  width: 200px;
  height: 150px;
  bottom: 0;
  right: 60px;
  z-index: 4;
  border: 4px solid var(--cream);
}

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

.gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 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;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.gallery-item-wide {
  grid-column: span 8;
  height: 320px;
}

.gallery-item-tall {
  grid-column: span 4;
  grid-row: span 2;
  height: 100%;
  min-height: 640px;
}

.gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
  height: 240px;
}

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

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

.visit-info {
  max-width: 480px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

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

.visit-detail-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(181, 108, 79, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong {
  display: block;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.visit-detail p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

.visit-note {
  display: block;
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 4px;
}

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

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--sand);
}

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

.contact-content {
  max-width: 560px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-dark);
  background: var(--white);
  border: 2px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(181, 108, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8a090;
}

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

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.contact-card-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-card-item:last-child {
  margin-bottom: 0;
}

.contact-card-item svg {
  min-width: 20px;
  margin-top: 2px;
}

.contact-card-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.contact-card-item p {
  font-size: 0.88rem;
  color: var(--brown-mid);
}

.contact-card-accent {
  background: var(--brown-dark);
}

.contact-card-accent h3 {
  color: var(--white);
}

.contact-card-accent p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  gap: 16px;
}

.footer-hours li span:first-child {
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours li span:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
}

.footer-contact svg {
  min-width: 16px;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 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.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .about-grid,
  .experience-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .experience-images {
    height: 480px;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-item-wide {
    grid-column: span 12;
  }

  .gallery-item-tall {
    grid-column: span 6;
    min-height: 400px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

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

  .hero-img-main {
    width: 260px;
    height: 340px;
  }

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

  .hero-img-float {
    width: 160px;
    height: 120px;
  }

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

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

  .menu-category-featured {
    order: -1;
  }

  .gallery-item-tall {
    grid-column: span 12;
    min-height: 300px;
  }

  .gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
    height: 200px;
  }

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

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

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

  .about-accent-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .about-images {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-img-main {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .about-img-secondary {
    position: relative;
    width: 100%;
    height: 180px;
    bottom: auto;
    left: auto;
  }

  .exp-img-1 {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .exp-img-2,
  .exp-img-3 {
    position: relative;
    width: 100%;
    height: 160px;
  }

  .experience-images {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

@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 {
    grid-template-columns: 1fr;
  }

  .about-img-secondary {
    grid-column: span 2;
  }

  .experience-images {
    grid-template-columns: 1fr;
  }

  .exp-img-2,
  .exp-img-3 {
    grid-column: span 2;
  }

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

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
    height: 240px;
  }
}

@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;
  }
}
