@font-face {
  font-family: "Rosalie Editorial";
  src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Rosalie Sans";
  src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
:root {
  --cream: #f7f3ed;
  --paper: #eee7dd;
  --ink: #29231f;
  --raspberry: #bc1437;
  --line: #d3c8bc;
  --serif: "Rosalie Editorial", Georgia, serif;
  --sans: "Rosalie Sans", Arial, sans-serif;
  --gutter: clamp(24px, 5.6vw, 108px);
  --section: clamp(80px, 10vw, 180px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--raspberry);
  outline-offset: 7px;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
figure,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(48px, 5.5vw, 88px);
}
h3 {
  font-size: clamp(30px, 2.6vw, 44px);
}
.wrap {
  margin-inline: auto;
  width: calc(100% - var(--gutter) * 2);
  max-width: 1600px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  line-height: 1.6;
  margin-bottom: 28px;
}
.body-copy {
  max-width: 380px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
  padding: 12px 0;
  margin-top: 28px;
  position: relative;
}
.text-link:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--raspberry);
  transition: width 0.3s;
}
.text-link:hover:after {
  width: 100%;
}
.text-link span[aria-hidden] {
  font-size: 20px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 27px;
  border: 1px solid var(--raspberry);
  background: var(--raspberry);
  color: var(--cream);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.3;
  transition:
    background 0.25s,
    color 0.25s;
}
.button:hover {
  background: #8d102c;
  border-color: #8d102c;
}
.button.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--cream);
}
.button.light:hover {
  background: var(--cream);
  color: var(--ink);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--cream);
  padding: 12px;
  z-index: 200;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-inline: var(--gutter);
  color: var(--cream);
  border-bottom: 1px solid #ffffff33;
  transition:
    background 0.3s,
    color 0.3s,
    height 0.3s;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 146px;
  height: auto;
  filter: brightness(0) invert(94%) sepia(9%) saturate(219%);
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}
.desktop-nav a {
  font-size: 12px;
  white-space: nowrap;
}
.desktop-nav a:hover {
  border-bottom: 1px solid;
}
.header-book {
  background: transparent;
  border-color: #ffffff88;
  padding: 14px 22px;
}
.scrolled,
.plain .site-header {
  height: 84px;
  background: var(--cream);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.scrolled .brand img,
.plain .brand img {
  filter: none;
}
.scrolled .header-book,
.plain .header-book {
  background: var(--raspberry);
  border-color: var(--raspberry);
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  height: 96svh;
  min-height: 640px;
  color: var(--cream);
  background: #502520;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 7, 0.48),
    rgba(15, 10, 7, 0.06) 42%,
    rgba(15, 10, 7, 0.4)
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 115px 24px 60px;
}
.hero-content .eyebrow {
  margin-bottom: 30px;
}
.hero h1 {
  width: min(560px, 65vw);
  margin-bottom: 45px;
}
.hero h1 img {
  width: 100%;
  height: auto;
}
.hero-address,
.discover {
  position: absolute;
  bottom: 34px;
  font-size: 12px;
  letter-spacing: 0.09em;
}
.hero-address {
  right: var(--gutter);
}
.discover {
  left: var(--gutter);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 26px;
}
.discover span {
  font-size: 24px;
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12%;
  padding-block: var(--section);
}
.editorial-copy h2 {
  margin-bottom: 35px;
  max-width: 650px;
}
.intro .editorial-copy h2 {
  max-width: 600px;
}
.intro-photo {
  width: 85%;
  justify-self: end;
  margin-top: 65px;
}
.intro-photo > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.flower {
  width: 62px;
  height: auto;
  margin-top: 45px;
}
figcaption {
  font-size: 12px;
  color: #6e6258;
  margin-top: 15px;
  letter-spacing: 0.02em;
}
.experience {
  position: relative;
  margin-top: 10px;
  padding-bottom: 70px;
}
.experience-photo {
  width: 84%;
  height: 620px;
}
.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-copy {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  background: var(--paper);
  padding: 64px;
  width: 440px;
}
.experience-copy h2 {
  font-size: clamp(44px, 4.3vw, 65px);
  margin-bottom: 28px;
}
.experience-copy p:not(.eyebrow) {
  max-width: 330px;
}
.menu-section {
  padding-top: calc(var(--section) + 50px);
}
.menu-section figure {
  width: 91%;
  position: relative;
}
.menu-section figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.menu-section .editorial-copy {
  padding-right: 30px;
}
.menu-section h2 {
  font-size: clamp(70px, 8vw, 128px);
}
.dish-section {
  padding-bottom: var(--section);
}
.dish-section > h2 {
  max-width: 700px;
  font-size: clamp(42px, 4.8vw, 70px);
}
.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 65px;
}
.dishes article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.dishes .eyebrow {
  margin-bottom: 22px;
  color: #6e6258;
}
.dishes h3 {
  max-width: 360px;
  margin-bottom: 22px;
}
.dishes article > p:last-child {
  font-size: 14px;
  max-width: 340px;
}
.gallery-section {
  padding-block: 65px var(--section);
  border-top: 1px solid var(--line);
}
.gallery-heading {
  position: relative;
  margin-bottom: 65px;
}
.gallery-heading .text-link {
  position: absolute;
  right: 0;
  bottom: 0;
}
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: 10%;
}
.gallery figure:first-child img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: center 70%;
}
.gallery figure:nth-child(2) {
  margin-top: 160px;
}
.gallery figure:nth-child(2) img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.groups-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.groups-copy {
  padding: 100px var(--gutter);
  align-self: center;
}
.groups-copy h2 {
  margin-bottom: 32px;
}
.groups-copy > p:not(.eyebrow) {
  max-width: 440px;
}
.groups-section > img {
  width: 100%;
  height: 100%;
  max-height: 850px;
  object-fit: cover;
}
.gift-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  padding-block: var(--section);
}
.gift-section > img {
  width: 75%;
  max-width: 440px;
  transform: rotate(-7deg);
  justify-self: center;
}
.gift-section h2 {
  margin-bottom: 24px;
}
.reservation {
  background: #eadfd4;
  text-align: center;
  padding: 100px var(--gutter);
}
.reservation h2 {
  margin: 0 auto 40px;
  max-width: 1000px;
}
.hours {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 60px;
  font-size: 14px;
}
.hours p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours strong {
  font-weight: 400;
}
.hours p span {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10%;
  padding-block: 100px;
}
.contact h2 {
  font-size: clamp(42px, 4.5vw, 68px);
}
address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  overflow-wrap: anywhere;
}
.contact .text-link {
  margin-top: 0;
}
.site-footer {
  background: #352820;
  color: var(--cream);
  padding: 75px var(--gutter) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 45px;
  font-size: 13px;
}
.footer-top img {
  width: 180px;
  height: auto;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-top > div p + p {
  margin-top: 18px;
}
.footer-bottom {
  border-top: 1px solid #ffffff33;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 70px;
  padding-top: 22px;
  font-size: 12px;
}
.footer-bottom > div {
  display: flex;
  gap: 28px;
}
.site-footer a:hover {
  text-decoration: underline;
}
.reveal {
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.waiting {
  opacity: 0;
  transform: translateY(20px);
}
.legal {
  padding-block: 170px 100px;
  max-width: 1000px;
  overflow-wrap: anywhere;
}
.legal h1 {
  font-size: clamp(50px, 6vw, 80px);
  margin-bottom: 50px;
}
.legal h2 {
  font-size: 36px;
  margin-block: 40px 20px;
}
.legal p {
  margin-block: 15px;
}
.legal a:not(.button) {
  text-decoration: underline;
}
@media (min-width: 1700px) {
  .hero > img {
    object-position: center 54%;
  }
  .experience-photo {
    height: 790px;
  }
  .experience-copy {
    width: 530px;
    padding: 80px;
  }
  .groups-copy {
    padding-block: 120px;
  }
}
@media (max-width: 1099px) {
  .desktop-nav {
    display: none;
  }
  .site-header {
    gap: 22px;
    height: 84px;
  }
  .header-book {
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 8px;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    display: block;
    height: 1px;
    background: currentColor;
    width: 28px;
    transition: transform 0.2s;
  }
  .mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--ink);
    padding: 25px var(--gutter) 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100svh - 84px);
    overflow: auto;
    border-bottom: 1px solid var(--line);
  }
  .mobile-panel > a {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.45;
    padding-block: 5px;
  }
  .mobile-panel > p {
    font-size: 12px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 12px;
  }
  .editorial {
    gap: 7%;
  }
  .intro-photo {
    width: 100%;
  }
  .experience-copy {
    width: 400px;
    padding: 42px;
  }
  .experience-photo {
    height: 530px;
    width: 90%;
  }
  .groups-copy {
    padding: 60px var(--gutter);
  }
  .footer-top {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    margin-top: 50px;
  }
}
@media (max-width: 700px) {
  :root {
    --section: 85px;
  }
  .site-header {
    height: 76px;
    gap: 10px;
  }
  .brand img {
    width: 111px;
  }
  .header-book {
    font-size: 10px;
    padding: 12px 14px;
    min-height: 44px;
  }
  .scrolled,
  .plain .site-header {
    height: 76px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 76px;
  }
  .hero > img {
    height: auto;
    object-position: center;
  }
  .hero-shade {
    display: none;
  }
  .hero-content {
    position: relative;
    padding: 32px 24px 28px;
  }
  .hero h1 {
    width: 85vw;
    margin-bottom: 35px;
  }
  .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 27px;
  }
  .hero-address {
    display: none;
  }
  .discover {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    padding-bottom: 24px;
  }
  .editorial {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .editorial-copy h2 {
    margin-bottom: 28px;
  }
  .intro-photo {
    width: 78%;
    margin: 0;
  }
  .intro-photo > img {
    height: auto;
    aspect-ratio: auto;
  }
  .flower {
    margin-top: 30px;
    width: 48px;
  }
  .experience {
    padding-bottom: 0;
  }
  .experience-photo {
    width: 100%;
    height: auto;
  }
  .experience-photo img {
    height: auto;
  }
  .experience-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 48px);
    margin: 0 0 0 auto;
    padding: 38px 30px;
  }
  .menu-section {
    padding-top: 85px;
  }
  .menu-section figure {
    width: 88%;
  }
  .menu-section figure img {
    height: auto;
    aspect-ratio: auto;
  }
  .menu-section .editorial-copy {
    padding: 0 0 0 12%;
  }
  .dishes {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .dishes article {
    padding-top: 24px;
  }
  .dishes h3 {
    margin-bottom: 15px;
  }
  .dishes .eyebrow {
    margin-bottom: 12px;
  }
  .gallery-section {
    padding-top: 45px;
  }
  .gallery-heading {
    margin-bottom: 38px;
  }
  .gallery-heading .text-link {
    position: relative;
    margin-top: 15px;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery figure:first-child {
    width: 100%;
  }
  .gallery figure:first-child img,
  .gallery figure:nth-child(2) img {
    height: auto;
    aspect-ratio: auto;
    object-position: center;
  }
  .gallery figure:nth-child(2) {
    width: 72%;
    margin-top: 0;
    justify-self: end;
  }
  .groups-section {
    grid-template-columns: 1fr;
  }
  .groups-copy {
    padding: 65px var(--gutter);
  }
  .groups-section > img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-position: center;
  }
  .gift-section {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .gift-section > img {
    width: 62%;
  }
  .gift-section > div {
    text-align: center;
  }
  .reservation {
    padding: 75px 24px;
  }
  .reservation h2 {
    font-size: 54px;
  }
  .hours {
    gap: 30px;
    margin-top: 42px;
    font-size: 13px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 75px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .footer-top > a {
    grid-column: 1/-1;
  }
  .footer-top img {
    width: 150px;
    margin-bottom: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    font-size: 11px;
    gap: 15px;
  }
  .footer-bottom > div {
    gap: 16px;
    flex-wrap: wrap;
  }
  .site-footer {
    padding-top: 60px;
  }
  .mobile-panel {
    max-height: calc(100svh - 76px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .reveal.waiting {
    opacity: 1;
    transform: none;
  }
}
