:root {
  --ivory: #fbf7ee;
  --cream: #f3eadc;
  --espresso: #2a140d;
  --espresso-soft: #563526;
  --coral: #e8654b;
  --coral-dark: #cf523c;
  --pistachio: #637155;
  --glass: #c9e2e5;
  --glass-deep: #a9cdd3;
  --line: rgb(42 20 13 / 18%);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--espresso);
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(42 20 13 / 24%);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .88rem;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2.4rem;
}

nav a,
.section-kicker,
.button {
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 6.9ch;
  margin-bottom: 24px;
  font-size: 8.8rem;
  line-height: .78;
}

h2 {
  margin-bottom: 0;
  font-size: 4.8rem;
  line-height: .92;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.05;
}

p {
  margin-top: 0;
  color: var(--espresso-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--coral);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(28px, 1fr) minmax(0, 450px) minmax(420px, 690px) minmax(28px, 1fr);
  align-items: center;
  height: min(100svh, 880px);
  max-height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: var(--ivory);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgb(251 247 238 / 97%) 0 33%, rgb(251 247 238 / 86%) 43%, rgb(251 247 238 / 10%) 74%),
    linear-gradient(0deg, rgb(42 20 13 / 5%), transparent 30%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 450px;
  padding-top: 34px;
  animation: hero-rise 720ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-line {
  max-width: 31ch;
  margin-bottom: 34px;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 680;
  letter-spacing: .16em;
  line-height: 1.75;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgb(42 20 13 / 24%);
  text-decoration: none;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.button::after {
  margin-left: 18px;
  content: "->";
  letter-spacing: 0;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  color: #fffaf2;
  background: var(--coral);
  border-color: var(--coral);
}

.primary:hover,
.primary:focus-visible {
  background: var(--coral-dark);
}

.secondary:hover,
.secondary:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 54px;
  border: 1px solid rgb(42 20 13 / 24%);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  animation: cue 1.6s ease-in-out infinite;
}

.signature {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(320px, .78fr);
  gap: 64px;
  align-items: center;
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
  padding: 92px 0 74px;
}

.signature-image {
  margin: 0;
  align-self: stretch;
}

.signature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.signature-copy {
  max-width: 490px;
}

.signature-copy p {
  margin-top: 30px;
}

.tasting-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tasting-notes div {
  padding: 22px 18px 20px 0;
}

.tasting-notes dt {
  margin-bottom: 8px;
  color: var(--pistachio);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tasting-notes dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.menu {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.menu-intro {
  max-width: 780px;
  margin: 0 0 54px;
}

.menu-intro h2 {
  max-width: 10.8ch;
  font-size: 4.35rem;
}

.menu-intro .section-kicker {
  margin-bottom: 26px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.22fr repeat(3, minmax(0, .68fr));
  gap: 32px;
  align-items: start;
}

.drink-feature,
.drink-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.drink-feature img,
.drink-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.drink-feature img {
  aspect-ratio: 4 / 4.62;
}

.drink-feature h3 {
  margin: 24px 0 12px;
}

.drink-card h3 {
  margin: 24px 0 12px;
}

.drink-feature p,
.drink-card p {
  max-width: 24ch;
  margin-bottom: 0;
  font-size: .94rem;
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  background: linear-gradient(90deg, var(--cream) 0 50%, var(--glass) 50% 100%);
}

.process-art,
.process-copy {
  display: flex;
  align-items: center;
}

.process-art {
  justify-content: center;
  padding: 72px 72px 84px;
}

.process-art img {
  width: min(100%, 560px);
}

.process-copy {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 72px 72px 84px;
}

.process-copy h2 {
  max-width: 8.2ch;
  margin-bottom: 68px;
  font-size: 6.4rem;
  line-height: .86;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(42 20 13 / 18%);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 32px 0 36px;
  border-bottom: 1px solid rgb(42 20 13 / 18%);
}

.steps span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.steps p {
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.7;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 560px;
  background: var(--glass);
}

.visit-image {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.visit-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 82px;
  overflow: hidden;
}

.visit-copy h2,
.visit-copy p,
.visit-actions {
  position: relative;
  z-index: 1;
}

.visit-copy h2 {
  max-width: 8ch;
}

.visit-copy p {
  max-width: 39ch;
  margin: 28px 0 36px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue {
  0%,
  100% {
    opacity: .3;
    transform: translateY(-8px);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 7.2rem;
  }

  h2 {
    font-size: 4rem;
  }

  .process-copy h2 {
    font-size: 5.2rem;
  }

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

  .drink-feature {
    grid-row: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 32px, var(--max));
    padding-top: 22px;
  }

  nav {
    gap: 1rem;
  }

  .hero {
    display: block;
    height: min(100svh, 760px);
    padding: 100px 20px 42px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(251 247 238 / 98%) 0 34%, rgb(251 247 238 / 74%) 57%, rgb(251 247 238 / 20%) 100%),
      linear-gradient(90deg, rgb(251 247 238 / 74%), transparent);
  }

  .hero-copy {
    max-width: 430px;
    padding-top: 0;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2,
  .process-copy h2 {
    font-size: 3.35rem;
  }

  .signature,
  .menu,
  .menu-intro,
  .process,
  .visit {
    grid-template-columns: 1fr;
  }

  .signature,
  .menu {
    width: min(100% - 32px, var(--max));
  }

  .signature {
    gap: 36px;
    padding: 64px 0 60px;
  }

  .signature-image img {
    min-height: 420px;
  }

  .menu {
    padding: 56px 0 76px;
  }

  .menu-intro {
    max-width: none;
    margin: 0 0 34px;
  }

  .menu-intro h2 {
    max-width: 10ch;
  }

  .process {
    min-height: 0;
    background: none;
  }

  .process-art {
    background: var(--cream);
  }

  .process-copy {
    background: var(--glass);
  }

  .process-art,
  .process-copy,
  .visit-copy {
    padding: 54px 24px 62px;
  }

  .process-copy h2 {
    max-width: 9ch;
    margin-bottom: 42px;
  }

  .visit-image {
    min-height: 420px;
  }

}

@media (max-width: 580px) {
  .site-header {
    align-items: flex-start;
  }

  .mark {
    width: 42px;
    height: 42px;
  }

  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: .68rem;
  }

  .hero {
    height: min(100svh, 700px);
  }

  h1 {
    font-size: 4.15rem;
  }

  h2,
  .process-copy h2 {
    font-size: 2.75rem;
  }

  .hero-line {
    max-width: 28ch;
  }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .tasting-notes div + div {
    border-top: 1px solid var(--line);
  }

  .drink-feature {
    grid-row: auto;
  }

  .drink-feature img,
  .drink-card img {
    aspect-ratio: 4 / 3.15;
    min-height: 0;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps p {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
