/* ========================================
   WILD TEETH — Global Styles
   ======================================== */

:root {
  --bg: #1a1714;
  --bg-warm: #211e19;
  --cream: #f0ebe3;
  --cream-muted: #c4bdb3;
  --red: #8b2d2d;
  --red-bright: #a63c3c;
  --oak: #b8a48a;
  --charcoal: #2a2622;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--cream);
  text-decoration: none;
}

/* ========================================
   NAV
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(26,23,20,0.9) 0%, rgba(26,23,20,0) 100%);
  pointer-events: none;
}

.nav > * {
  pointer-events: auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--red-bright);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
}

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

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 3rem;
  background: linear-gradient(to top, rgba(26,23,20,0.7) 0%, rgba(26,23,20,0.1) 40%, transparent 60%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.hero-sub {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ========================================
   INTRO
   ======================================== */

.intro {
  padding: 8rem 3rem;
  background: var(--bg);
}

.intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
}

/* ========================================
   IMAGE PAIR
   ======================================== */

.image-pair {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
}

.image-pair img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ========================================
   QUOTE
   ======================================== */

.quote-section {
  padding: 6rem 3rem;
  background: var(--bg-warm);
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  color: var(--cream);
}

.quote-mark {
  color: var(--red);
  font-size: 1.5em;
}

/* ========================================
   FOOD GRID
   ======================================== */

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--bg);
}

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

.food-grid-item {
  overflow: hidden;
}

.food-grid-item:hover img {
  transform: scale(1.03);
}

.food-grid-large img {
  height: 550px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 8rem 3rem;
  background: var(--bg);
  text-align: center;
}

.cta-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--cream-muted);
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

/* ========================================
   FULL IMAGE
   ======================================== */

.full-image {
  width: 100%;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center 40%;
}

/* ========================================
   STORY TEASER
   ======================================== */

.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-teaser-image {
  overflow: hidden;
}

.story-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-teaser-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--bg-warm);
}

.story-teaser-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}

.story-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.story-teaser-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  max-width: 400px;
}

.text-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-muted);
  padding-bottom: 0.25rem;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}

.text-link:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
}

/* ========================================
   RESERVE HOME
   ======================================== */

.reserve-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.reserve-home-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--bg);
}

.reserve-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}

.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.reserve-home-image {
  overflow: hidden;
}

.reserve-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 5rem 3rem 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(240,235,227,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-address,
.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--cream-muted);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(240,235,227,0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--cream-muted);
  opacity: 0.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 0.7rem;
  }

  .hero-overlay {
    padding: 3rem 1.5rem;
  }

  .intro {
    padding: 5rem 1.5rem;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img {
    height: 350px;
  }

  .quote-section {
    padding: 4rem 1.5rem;
  }

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

  .food-grid-item img,
  .food-grid-large img {
    height: 350px;
  }

  .cta-section {
    padding: 5rem 1.5rem;
  }

  .story-teaser {
    grid-template-columns: 1fr;
  }

  .story-teaser-text {
    padding: 3rem 1.5rem;
  }

  .reserve-home {
    grid-template-columns: 1fr;
  }

  .reserve-home-inner {
    padding: 3rem 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
