:root {
  --ink: #24140f;
  --wine: #681f25;
  --wine-dark: #3b1015;
  --clay: #b75b3e;
  --cream: #f3ead9;
  --paper: #faf5eb;
  --sage: #67715b;
  --line: rgba(36, 20, 15, 0.2);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--clay) var(--cream);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--wine-dark);
  color: var(--cream);
}

.loader__mark {
  display: grid;
  width: clamp(110px, 14vw, 180px);
  height: clamp(110px, 14vw, 180px);
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: white;
}

.loader__mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.loader__line {
  position: absolute;
  bottom: 12%;
  width: min(280px, 60vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.loader__line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cream);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--clay);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--clay);
  transition: width 0.25s, height 0.25s, background 0.25s;
}

.cursor-ring.is-hovering {
  width: 54px;
  height: 54px;
  background: rgba(183, 91, 62, 0.12);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1rem 3vw;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

.site-header.is-scrolled {
  background: rgba(250, 245, 235, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.brand__icon img {
  width: 78%;
}

.desktop-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  overflow: hidden;
  padding: 0.85rem 1.3rem;
  border-radius: 100px;
  background: var(--wine);
  color: white;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition: transform 0.3s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 7vw 3rem;
  visibility: hidden;
  background: var(--wine-dark);
  color: var(--cream);
  opacity: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 0.2rem 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 12vw, 5rem);
}

.mobile-menu p {
  margin-top: auto;
  font-size: 0.8rem;
  line-height: 1.7;
  opacity: 0.65;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100svh;
  padding: 8.5rem 3vw 2.5rem;
  overflow: hidden;
  background: var(--cream);
}

.hero__grain {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.hero__copy {
  z-index: 1;
  align-self: center;
  padding-right: 4vw;
}

.eyebrow,
.section-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.7rem 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 9.1vw, 9.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.72;
}

.title-line {
  display: block;
  padding: 0.06em 0;
  overflow: hidden;
}

.title-line > span {
  display: block;
}

.title-line--offset {
  padding-left: 7vw;
}

.title-line--italic {
  padding-left: 20vw;
  color: var(--wine);
  font-style: italic;
}

.hero__intro {
  max-width: 400px;
  margin-left: 7vw;
  color: rgba(36, 20, 15, 0.72);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 0 7vw;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid;
  font-size: 0.78rem;
  font-weight: 600;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 560px;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 47% 47% 3px 3px;
  clip-path: inset(0 0 100% 0);
}

.hero__image {
  height: 115%;
  object-fit: cover;
  object-position: 50% 58%;
}

.hero__stamp {
  position: absolute;
  bottom: -1rem;
  left: -4.5rem;
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
}

.hero__stamp svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 16s linear infinite;
}

.hero__stamp text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.hero__stamp span {
  font-family: var(--serif);
  font-size: 2.5rem;
}

.hero__aside {
  position: absolute;
  z-index: 2;
  right: 1.1vw;
  bottom: 2.5rem;
  display: flex;
  gap: 5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.manifesto {
  padding: 10rem 7vw;
  background: var(--paper);
}

.manifesto__top,
.manifesto__details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.manifesto__side {
  max-width: 250px;
  color: rgba(36, 20, 15, 0.55);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.manifesto__text {
  max-width: 1150px;
  margin: 7rem auto;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.7vw, 7.4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.manifesto__text .word {
  display: inline-block;
  opacity: 0.16;
}

.manifesto__details {
  margin-left: 43%;
}

.manifesto__details > p {
  max-width: 360px;
  color: rgba(36, 20, 15, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}

.round-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
  text-align: center;
  transition: background 0.35s, color 0.35s;
}

.round-link i {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-style: normal;
}

.round-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.feature {
  position: relative;
  height: 90vh;
  min-height: 650px;
  overflow: hidden;
}

.feature__image,
.feature__image img {
  width: 100%;
  height: 100%;
}

.feature__image {
  clip-path: inset(0 4%);
}

.feature__image img {
  object-fit: cover;
}

.feature__card {
  position: absolute;
  right: 7vw;
  bottom: 7vw;
  width: min(420px, 40vw);
  padding: 3.4rem;
  background: var(--cream);
}

.feature__icon {
  color: var(--clay);
  font-size: 1.5rem;
}

.feature__card p {
  margin: 2rem 0 3rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.feature__card small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section {
  padding: 10rem 7vw;
  background: var(--wine-dark);
  color: var(--cream);
}

.menu-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.menu-section__head h2 {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.menu-section__head h2 em {
  color: #d99071;
  font-weight: 500;
}

.menu-section__head > p {
  max-width: 340px;
  color: rgba(243, 234, 217, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.menu-tabs {
  display: flex;
  gap: 2rem;
  margin: 6rem 0 3rem;
  border-bottom: 1px solid rgba(243, 234, 217, 0.2);
}

.menu-tab {
  position: relative;
  padding: 0 0 1rem;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 0.75rem;
  opacity: 0.45;
}

.menu-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #d99071;
  content: "";
  transform: scaleX(0);
  transition: transform 0.35s;
}

.menu-tab.is-active {
  opacity: 1;
}

.menu-tab.is-active::after {
  transform: scaleX(1);
}

.menu-content {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 9vw;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(243, 234, 217, 0.16);
}

.menu-item__index {
  color: #d99071;
  font-size: 0.62rem;
}

.menu-item h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
}

.menu-item p {
  max-width: 430px;
  color: rgba(243, 234, 217, 0.5);
  font-size: 0.75rem;
  line-height: 1.6;
}

.menu-item__price {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.menu-photo {
  position: relative;
}

.menu-photo__frame {
  height: 560px;
  overflow: hidden;
  border-radius: 50% 50% 3px 3px;
}

.menu-photo__frame img {
  height: 110%;
  object-fit: cover;
}

.menu-photo__note {
  position: absolute;
  right: -2rem;
  bottom: 1.5rem;
  padding: 1.4rem;
  background: var(--clay);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.4;
  transform: rotate(-4deg);
}

.experience {
  overflow: hidden;
  background: var(--clay);
  color: var(--cream);
}

.experience__track {
  display: flex;
  width: max-content;
  height: 100vh;
  min-height: 700px;
  padding: 5vw;
  gap: 3vw;
}

.experience__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 42vw;
  min-width: 460px;
}

.experience__intro h2 {
  margin: 2rem 0 3rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.experience__intro > p:last-child {
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
}

.experience-card {
  display: flex;
  flex-direction: column;
  width: 35vw;
  min-width: 420px;
  padding: 1.2rem;
  background: var(--wine-dark);
}

.experience-card--light {
  background: var(--cream);
  color: var(--ink);
}

.experience-card__image {
  height: 68%;
  overflow: hidden;
}

.experience-card__image img {
  height: 115%;
  object-fit: cover;
}

.experience-card > div:last-child {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.8rem 1rem 1rem;
}

.experience-card span {
  align-self: flex-start;
  font-size: 0.65rem;
  opacity: 0.6;
}

.experience-card h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.reservations {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  color: white;
}

.reservations__backdrop {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(rgba(35, 10, 9, 0.45), rgba(35, 10, 9, 0.68)),
    url("https://images.unsplash.com/photo-1516211697506-8360dbcfe9a4?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.reservations__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 8rem 2rem;
  text-align: center;
}

.reservations h2 {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.reservations h2 em {
  color: #f1c3aa;
  font-weight: 500;
}

.reservations__content > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.75;
}

.reservation-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.2rem 1.4rem 1.2rem 1.8rem;
  border-radius: 100px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.8rem;
}

.reservation-button i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: white;
  font-style: normal;
}

.reservations__info {
  position: absolute;
  z-index: 1;
  right: 3vw;
  bottom: 2.5rem;
  left: 3vw;
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  padding: 7rem 4vw 2rem;
  background: var(--ink);
  color: var(--cream);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 7rem;
}

.footer__brand {
  display: grid;
  width: clamp(110px, 12vw, 170px);
  height: clamp(110px, 12vw, 170px);
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: white;
}

.footer__brand img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer__column p {
  margin-bottom: 1rem;
  color: #d99071;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__column a {
  opacity: 0.75;
  transition: opacity 0.25s;
}

.footer__column a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 234, 217, 0.15);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7.5rem 5vw 5vw;
  }

  .hero__copy {
    z-index: 2;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .title-line--offset {
    padding-left: 8vw;
  }

  .title-line--italic {
    padding-left: 32vw;
  }

  .hero__intro,
  .text-link {
    margin-left: 8vw;
  }

  .hero__visual {
    min-height: 65vh;
    margin-top: 3rem;
  }

  .hero__stamp {
    left: auto;
    right: -1rem;
  }

  .hero__aside {
    display: none;
  }

  .manifesto {
    padding: 7rem 5vw;
  }

  .manifesto__text {
    margin: 5rem 0;
  }

  .manifesto__details {
    margin-left: 20%;
  }

  .feature__card {
    right: 5vw;
    bottom: 5vw;
    width: min(480px, 70vw);
  }

  .menu-section {
    padding: 7rem 5vw;
  }

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

  .menu-photo {
    order: -1;
  }

  .menu-photo__frame {
    height: 60vh;
  }

  .experience__track {
    height: 90vh;
    min-height: 650px;
  }

  .experience__intro {
    width: 70vw;
  }

  .experience-card {
    width: 60vw;
  }

  .footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.8rem 5vw;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero h1 {
    margin-top: 1.2rem;
    font-size: 17vw;
    line-height: 0.77;
  }

  .hero__intro {
    max-width: 80%;
    font-size: 0.9rem;
  }

  .hero__visual {
    min-height: 54vh;
  }

  .hero__stamp {
    width: 100px;
    height: 100px;
  }

  .manifesto__top {
    gap: 2rem;
  }

  .manifesto__side {
    font-size: 0.8rem;
  }

  .manifesto__text {
    font-size: 12vw;
  }

  .manifesto__details {
    flex-direction: column;
    gap: 3rem;
    margin-left: 0;
  }

  .round-link {
    align-self: flex-end;
    width: 110px;
    height: 110px;
  }

  .feature {
    height: 80vh;
    min-height: 600px;
  }

  .feature__image {
    clip-path: none;
  }

  .feature__card {
    right: 5vw;
    bottom: 5vw;
    left: 5vw;
    width: auto;
    padding: 2rem;
  }

  .menu-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .menu-section__head h2 {
    font-size: 15vw;
  }

  .menu-tabs {
    gap: 1.2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex: none;
  }

  .menu-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .menu-item__price {
    grid-column: 2;
  }

  .menu-photo__frame {
    height: 55vh;
  }

  .menu-photo__note {
    right: 0;
  }

  .experience__track {
    gap: 5vw;
    padding: 7vw 5vw;
  }

  .experience__intro {
    width: 85vw;
    min-width: 85vw;
  }

  .experience__intro h2 {
    font-size: 16vw;
  }

  .experience-card {
    width: 82vw;
    min-width: 82vw;
  }

  .experience-card h3 {
    font-size: 8vw;
  }

  .reservations h2 {
    font-size: 18vw;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
    padding-bottom: 5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
