/* ------------------------------
   Savora Restaurant - One Page
------------------------------ */

:root {
  --cream: #f5f0e8;
  --paper: #fbf8f2;
  --ink: #1e211c;
  --muted: #6e7169;
  --olive: #4d5b42;
  --olive-dark: #35402e;
  --gold: #c7a66a;
  --line: rgba(30, 33, 28, 0.14);
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(18, 23, 16, 0.36), rgba(18, 23, 16, 0.72)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=85")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 19, 13, 0.66) 0%,
    rgba(15, 19, 13, 0.22) 58%,
    rgba(15, 19, 13, 0.18) 100%
  );
}

.navbar,
.hero-content,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.navbar {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.88;
  transition: 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-btn {
  border: 1px solid rgba(255,255,255,0.65);
  padding: 11px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.nav-btn:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  max-width: 1120px;
}

.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -2px;
}

.hero h1 em {
  font-weight: 500;
}

.hero-copy {
  max-width: 570px;
  margin-top: 32px;
  font-size: 17px;
  color: rgba(255,255,255,0.84);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #191b17;
}

.btn-primary:hover {
  background: #d8ba82;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.hero-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.section-label {
  color: #a17f46;
}

.about h2,
.section-heading h2,
.reserve h2,
.experience h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}

.about-copy > p:not(.section-label) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.text-link span {
  margin-left: 8px;
}

.about-card {
  background: var(--olive);
  color: var(--white);
  padding: 44px;
}

.about-number {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 24px;
}

.about-card p {
  margin-top: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.25;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin: 30px 0;
}

/* MENU */

.menu-section {
  background: var(--cream);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.menu-intro {
  max-width: 430px;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
  border-top: 1px solid var(--line);
}

.menu-item {
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.menu-top h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
}

.menu-top span {
  white-space: nowrap;
  color: #83683a;
  font-size: 14px;
  font-weight: 600;
}

.menu-item p {
  margin-top: 7px;
  max-width: 500px;
  font-size: 14px;
  color: var(--muted);
}

/* EXPERIENCE */

.experience {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 31, 21, 0.54), rgba(24, 31, 21, 0.62)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=85")
    center/cover no-repeat;
}

.experience-content {
  padding: 100px 0;
}

.section-label.light {
  color: #ead6ae;
}

.experience h2 {
  max-width: 720px;
  font-size: clamp(56px, 7vw, 88px);
}

.experience p:last-child {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(255,255,255,0.82);
}

/* RESERVATION */

.reserve {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  align-items: center;
}

.reserve-copy > p:last-child {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
}

.reserve-box {
  border: 1px solid var(--line);
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reserve-note {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
}

.reserve-phone {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
}

.reserve-email {
  margin: 4px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

/* FOOTER */

footer {
  background: #1f251c;
  color: rgba(255,255,255,0.78);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  color: var(--white);
  margin-bottom: 16px;
}

footer h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

footer p,
footer a {
  font-size: 14px;
}

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

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.48);
}

/* RESPONSIVE */

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

  .about,
  .reserve {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1120px);
  }

  .section {
    padding: 78px 0;
  }

  .navbar {
    height: 78px;
  }

  .logo {
    font-size: 25px;
  }

  .nav-btn {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bottom {
    display: none;
  }

  .about-card,
  .reserve-box {
    padding: 30px;
  }

  .about-card p {
    font-size: 24px;
  }

  .menu-top {
    flex-direction: column;
    gap: 3px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }
}
