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

:root {
  --bg:         #f7f3ed;
  --surface:    #eeebe4;
  --surface-2:  #e4e0d8;
  --border:     #d8d3c8;
  --accent:     #8b4513;
  --accent-dim: #c8864a;
  --text:       #1a1713;
  --muted:      #6b6355;
  --muted-2:    #a89f92;
  --font-head:  'Cabinet Grotesk', sans-serif;
  --font-body:  'Satoshi', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.75; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* === ANIMATIONS === */
.animate {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* === NAV === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  position: sticky;
  top: 0;
  background: rgba(247, 243, 237, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg) !important;
  background: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.8 !important; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}

.hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,19,0.85) 0%, rgba(26,23,19,0.1) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #f7f3ed;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(247,243,237,0.7);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #f7f3ed;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; color: #f7f3ed; transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn.full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247,243,237,0.8);
  border: 1px solid rgba(247,243,237,0.3);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { color: #f7f3ed; border-color: rgba(247,243,237,0.7); opacity: 1; }

/* === INTRO STRIP === */
.intro-strip {
  background: var(--text);
  color: var(--bg);
  padding: 2.5rem 0;
}

.intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bg);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(247,243,237,0.5);
}

.intro-divider {
  width: 1px;
  height: 40px;
  background: rgba(247,243,237,0.15);
  flex-shrink: 0;
}

/* === SECTION LABEL === */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.25rem;
}

/* === MENU === */
.menu {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.menu-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.menu-note {
  font-size: 0.82rem;
  color: var(--muted-2);
  max-width: 180px;
  text-align: right;
  line-height: 1.5;
  align-self: flex-end;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.menu-cat {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.mi-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mi-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.mi-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.mi-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 0.05rem;
}

/* === FEATURE === */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  border-top: 1px solid var(--border);
}

.feature-img {
  overflow: hidden;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.feature-img:hover img { transform: scale(1.03); }

.feature-text {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.feature-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.feature-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 1rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.feature-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* === GALLERY === */
.gallery {
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3px;
  background: var(--border);
}

.gallery-item {
  overflow: hidden;
  background: var(--surface-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.3s;
  filter: brightness(0.95);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }

.gallery-item.tall { grid-row: span 2; min-height: 500px; }
.gallery-col { display: contents; }
.gallery-col .gallery-item { min-height: 248px; }

/* === RESERVE === */
.reserve {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.reserve-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.reserve-left > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.reserve-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rh-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

input, textarea, select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
textarea { resize: vertical; }

/* === VISIT === */
.visit {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--text);
}

.visit-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vd-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,237,0.4);
}

.visit-detail span:last-child {
  font-size: 0.9rem;
  color: rgba(247,243,237,0.85);
}

/* === FOOTER === */
footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(247,243,237,0.1);
  background: var(--text);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(247,243,237,0.9);
}

.footer-loc {
  font-size: 0.75rem;
  color: rgba(247,243,237,0.4);
}

.footer-right {
  font-size: 0.78rem;
  color: rgba(247,243,237,0.4);
}
.footer-right a { color: rgba(247,243,237,0.6); }
.footer-right a:hover { color: rgba(247,243,237,0.9); opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  h1 { font-size: 2.75rem; }

  .intro-inner { flex-wrap: wrap; gap: 1.5rem; }
  .intro-divider { display: none; }

  .menu-header { flex-direction: column; align-items: flex-start; }
  .menu-note { text-align: left; max-width: none; }
  .menu-grid { grid-template-columns: 1fr; gap: 3rem; }

  .feature { grid-template-columns: 1fr; }
  .feature-img { min-height: 300px; }
  .feature-text { padding: 3rem 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; min-height: 200px; }
  .gallery-col { display: contents; }

  .reserve-grid { grid-template-columns: 1fr; gap: 3rem; }
  .field-row { grid-template-columns: 1fr; }

  .visit-inner { gap: 2rem; }
}
