@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --bg: #f6f0e6;
  --surface: #fff9f0;
  --text: #2c211b;
  --muted: #76675c;
  --primary: #9e3f2f;
  --primary-dark: #713024;
  --accent: #d49a45;
  --white: #fff;
  --display: "Playfair Display", serif;
  --body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -.035em;
}

p {
  color: var(--muted);
}

.logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary);
}

.site-header {
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

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

.nav-links a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
  transition: color .2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(44,33,27,.15);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-content h1 {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-content h1 em,
.discover-heading h2 em {
  color: var(--primary);
  font-style: italic;
}

.hero-description {
  max-width: 380px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  transition: .25s ease;
}

.primary-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: 180px 180px 24px 24px;
  box-shadow: 0 30px 60px rgba(44,33,27,.16);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-caption span:first-child {
  color: var(--primary);
}

.hero-caption span:last-child {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-caption span:last-child::before {
  content: "";
  width: 35px;
  height: 1px;
  background: var(--accent);
}

.hero-decoration {
  position: absolute;
  right: 3%;
  bottom: 12%;
  display: flex;
  gap: 6px;
}

.hero-decoration span {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.discover {
  padding: 8rem 0;
  background: var(--surface);
}

.discover-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.discover-heading h2 {
  margin-bottom: 1.5rem;
}

.discover-intro {
  max-width: 500px;
}

.section-number {
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
}

.mood-list {
  border-top: 1px solid rgba(44,33,27,.15);
}

.mood-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 118px;
  padding: 1.25rem 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  border-bottom: 1px solid rgba(44,33,27,.15);
  transition: padding .3s ease, color .3s ease, background .3s ease;
}

.mood-row::before {
  content: "";
  position: absolute;
  inset: 0 -1.5rem;
  z-index: -1;
  background: var(--primary);
  opacity: 0;
  transform: scaleY(.7);
  transition: opacity .3s ease, transform .3s ease;
}

.mood-row:hover,
.mood-row.active {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #fff;
  background: var(--primary);
}

.mood-row:hover::before,
.mood-row.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.mood-number {
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  transition: color .3s ease;
}

.mood-row:hover .mood-number,
.mood-row.active .mood-number {
  color: #fff;
}
.mood-copy {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mood-copy strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}
.mood-row:hover .mood-copy strong,
.mood-row.active .mood-copy strong {
  color: #fff;
}
.mood-copy small {
  color: var(--muted);
  font-size: .8rem;
  transition: color .3s ease;
}

.mood-row:hover .mood-copy small,
.mood-row.active .mood-copy small {
  color: rgba(255,255,255,.9);
}

.mood-indicator {
  justify-self: end;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(44,33,27,.2);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform .3s ease, color .3s ease, border-color .3s ease;
}

.mood-row:hover .mood-indicator,
.mood-row.active .mood-indicator {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  transform: rotate(45deg);
}

.recommendation {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 360px;
  margin-top: 4rem;
  background: var(--text);
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(44,33,27,.14);
}

.recommendation-image-wrap {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.recommendation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .5s ease;
}

.recommendation-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,33,27,0) 60%, rgba(44,33,27,.25));
}

.recommendation-image-label {
  position: absolute;
  z-index: 1;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: .55rem .8rem;
  background: rgba(44,33,27,.72);
  color: var(--white);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.recommendation-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.recommendation-label {
  margin-bottom: .75rem;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.recommendation-content h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.recommendation-description {
  max-width: 430px;
  color: rgba(255,255,255,.72);
}

.recommendation-hint {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dishes {
  padding: 8rem 0;
}

.dishes .section-heading {
  margin-bottom: 4rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dish-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44,33,27,.08);
}

.dish-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.04);
}

.dish-content {
  padding: 2rem;
}

.dish-number {
  margin-bottom: .75rem;
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.dish-content h3 {
  margin-bottom: 1rem;
}

.story {
  padding: 8rem 1.5rem;
  background: var(--primary);
}

.story-content {
  width: min(100%, 900px);
  margin-inline: auto;
}

.story .eyebrow,
.story h2,
.story p {
  color: var(--white);
}

.story h2 {
  margin-bottom: 2rem;
}

.story-content > p {
  max-width: 650px;
  margin-bottom: 1rem;
  opacity: .9;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1.5rem;
  background: var(--text);
}

.site-footer .logo,
.site-footer p {
  color: var(--white);
}

.site-footer > p {
  text-align: right;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    aspect-ratio: 16 / 10;
    border-radius: 100px 100px 20px 20px;
  }

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

  .recommendation-image-wrap {
    min-height: 300px;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 2.5rem, 1200px);
  }

  .navbar {
    min-height: 76px;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 1.25rem;
    left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: .5rem;
    background: var(--surface);
    border: 1px solid rgba(44,33,27,.1);
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(44,33,27,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .nav-links a {
    padding: .9rem;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero-image-wrapper {
    border-radius: 70px 70px 16px 16px;
  }

  .discover,
  .dishes,
  .story {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .discover-heading {
    align-items: flex-start;
  }

  .section-number {
    display: none;
  }

  .mood-row {
    grid-template-columns: 42px 1fr 34px;
    gap: .75rem;
    min-height: 105px;
  }

  .mood-row:hover,
  .mood-row.active {
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .mood-row::before {
    inset: 0 -.9rem;
  }

  .mood-copy strong {
    font-size: 1.45rem;
  }

  .mood-copy small {
    font-size: .72rem;
  }

  .recommendation {
    margin-top: 3rem;
    border-radius: 20px;
  }

  .recommendation-image-wrap {
    min-height: 240px;
  }

  .recommendation-content {
    min-height: 270px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer > p {
    text-align: left;
  }

  .hero-decoration {
    display: none;
  }
}
