@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Karla:wght@400;500;600;700&display=swap");

:root {
  --cal: #f4ebdd;
  --sand: #e7d4b7;
  --ink: #241d1a;
  --wine: #6f1f2c;
  --water: #5f8c88;
  --terracotta: #c66c4c;
  --gold: #b98e4a;
  --mist: #b9dbd6;
  --line: rgba(36, 29, 26, .22);
  --line-light: rgba(244, 235, 221, .25);
  --display: "Fraunces", Georgia, serif;
  --body: "Karla", sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --page: min(86vw, 1440px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: .055;
  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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

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

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

address { font-style: normal; }

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

h1,
h2,
h3 {
  font-weight: 500;
  line-height: .98;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -.045em;
}

h1 em,
h2 em { color: var(--wine); font-weight: 400; }

::selection {
  color: var(--cal);
  background: var(--wine);
}

.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: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 14px;
  color: var(--cal);
  background: var(--wine);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--water);
  outline-offset: 4px;
}

.section-pad { padding: 82px 7vw; }

.eyebrow,
.kicker,
.section-marker {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow { color: var(--wine); }

.kicker { color: var(--water); }

.section-marker { color: var(--ink); }

.body-large {
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.45;
}

.display-large { font-size: clamp(2.7rem, 7vw, 6.8rem); }

.button {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}

.button > * { position: relative; }

.button span {
  font-size: 1rem;
  transition: transform .35s var(--ease);
}

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

.button:hover::before,
.button:focus-visible::before { transform: scaleX(1); }

.button:hover span,
.button:focus-visible span { transform: translate(3px, -3px); }

.button--wine {
  color: var(--cal);
  background: var(--wine);
  border-color: var(--wine);
}

.button--wine::before { background: var(--cal); }

.button--wine:hover,
.button--wine:focus-visible { color: var(--wine); }

.button--outline {
  color: var(--ink);
  background: transparent;
}

.button--outline::before { background: var(--ink); }

.button--outline:hover,
.button--outline:focus-visible { color: var(--cal); }

.button--light {
  color: var(--ink);
  background: var(--cal);
  border-color: var(--cal);
}

.button--light::before { background: var(--ink); }

.button--light:hover,
.button--light:focus-visible {
  color: var(--cal);
  border-color: var(--cal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}

.text-link span {
  font-size: 1rem;
  transition: transform .3s var(--ease);
}

.text-link:hover,
.text-link:focus-visible { color: var(--wine); }

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

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7vw;
  border-bottom: 1px solid rgba(36, 29, 26, .18);
}

.site-header--solid {
  position: relative;
  background: var(--cal);
}

.brand {
  display: flex;
  align-items: center;
  width: min(150px, 42vw);
  min-height: 44px;
}

.brand img {
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 1px;
  display: block;
  background: var(--ink);
  transition: transform .28s var(--ease);
}

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

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

.site-nav {
  position: fixed;
  inset: 78px 0 auto;
  display: none;
  padding: 14px 7vw 28px;
  color: var(--cal);
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.site-nav.is-open { display: grid; }

.site-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 235, 221, .18);
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-nav a.is-active { color: var(--mist); }

.wave-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    radial-gradient(ellipse 110% 22% at 50% 130%, transparent 42%, rgba(95, 140, 136, .48) 43%, rgba(95, 140, 136, .48) 44%, transparent 45%),
    radial-gradient(ellipse 100% 20% at 50% 110%, transparent 42%, rgba(95, 140, 136, .38) 43%, rgba(95, 140, 136, .38) 44%, transparent 45%);
  background-size: 100% 130px, 100% 130px;
  background-position: 0 0, 0 65px;
}

.hero {
  position: relative;
  min-height: 735px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 7vw 56px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 9.4vw, 8.5rem);
}

.hero-intro {
  max-width: 480px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

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

.hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(244, 235, 221, .96) 0%, rgba(244, 235, 221, .46) 46%, rgba(244, 235, 221, .05) 77%),
    linear-gradient(90deg, rgba(244, 235, 221, .34), transparent 60%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: .8;
  mix-blend-mode: multiply;
  transition: transform 1.2s var(--ease);
}

.hero:hover .hero-visual img { transform: scale(1.035); }

.hero-visual figcaption {
  position: absolute;
  top: 116px;
  right: 7vw;
  z-index: 1;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-side-note,
.hero-coordinate { display: none; }

.sun-cut {
  position: absolute;
  top: 96px;
  right: -72px;
  z-index: 2;
  width: 180px;
  height: 180px;
  pointer-events: none;
  background: var(--terracotta);
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: .5;
}

.intro-band {
  border-top: 1px solid var(--line);
}

.intro-band__content {
  max-width: 910px;
  margin-top: 60px;
}

.intro-band__content h2 { margin-bottom: 28px; }

.intro-band__content .body-large {
  max-width: 590px;
  margin-left: auto;
}

.ripple-divider {
  height: 48px;
  margin-top: 55px;
  opacity: .7;
  background: repeating-radial-gradient(ellipse at center bottom, transparent 0 9px, var(--water) 10px 11px, transparent 12px 20px);
  background-size: 160px 42px;
}

.zigzag {
  display: grid;
  gap: 42px;
  background: var(--sand);
}

.zigzag__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.zigzag__visual::after,
.image-story__photo::after,
.page-hero__image::after,
.promise-section__image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(125deg, rgba(36, 29, 26, .12), transparent 48%);
}

.zigzag__visual img,
.image-story__photo img,
.page-hero__image img,
.promise-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.zigzag__visual:hover img,
.image-story__photo:hover img,
.page-hero__image:hover img,
.promise-section__image:hover img { transform: scale(1.045); }

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 12px 15px;
  color: var(--cal);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .08em;
}

.zigzag__copy {
  align-self: center;
  max-width: 520px;
}

.zigzag__copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.zigzag__copy > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 26px;
}

.proof-section {
  padding: 84px 0 0;
  color: var(--cal);
  background: var(--ink);
}

.proof-section .eyebrow { color: var(--mist); }

.proof-section__top {
  display: grid;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 48px;
}

.proof-section h2 {
  max-width: 650px;
  font-size: clamp(2.5rem, 6vw, 6rem);
}

.proof-section__text {
  max-width: 380px;
  margin: 0;
  font-size: 1.1rem;
}

.proof-strip { border-top: 1px solid var(--line-light); }

.proof-item {
  min-height: 210px;
  padding: 30px 7vw;
  border-bottom: 1px solid var(--line-light);
}

.proof-item span {
  display: block;
  color: var(--mist);
  font-family: var(--display);
  line-height: .9;
}

.proof-number { font-size: 5rem; }

.proof-word {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-style: italic;
}

.proof-item p {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.image-story {
  display: grid;
  gap: 40px;
  align-items: center;
}

.image-story__copy h2 {
  margin-bottom: 32px;
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
}

.image-story__photo {
  position: relative;
  min-height: 355px;
  margin: 0;
  overflow: hidden;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--cal);
  background: var(--wine);
  text-align: center;
}

.contact-cta .wave-field {
  opacity: .34;
  filter: sepia(1) saturate(.3) brightness(3);
}

.contact-cta > *:not(.wave-field) {
  position: relative;
  z-index: 1;
}

.contact-cta .eyebrow { color: var(--mist); }

.contact-cta h2 {
  margin-bottom: 34px;
  font-size: clamp(3rem, 8vw, 7.5rem);
}

.contact-cta h2 em { color: #d8a894; }

.page-hero {
  position: relative;
  display: grid;
  min-height: 630px;
  overflow: hidden;
  background: var(--sand);
}

.page-hero__copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 126px 7vw 55px;
}

.page-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 8vw, 7.5rem);
}

.page-hero .body-large { max-width: 510px; }

.page-hero__image {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
}

.page-hero--food .page-hero__image { order: -1; }

.page-hero--story {
  color: var(--cal);
  background: var(--ink);
}

.page-hero--story .eyebrow { color: var(--mist); }

.page-hero--story h1 em { color: var(--mist); }

.page-hero--story .wave-field {
  opacity: .19;
  filter: brightness(1.4);
}

.food-statement,
.story-copy {
  display: grid;
  gap: 50px;
}

.food-statement > div:last-child { max-width: 900px; }

.food-statement h2,
.story-copy h2 { margin-bottom: 30px; }

.food-statement .body-large,
.story-copy .body-large {
  max-width: 650px;
  margin-left: auto;
}

.food-image-band {
  color: var(--cal);
  background: var(--water);
}

.food-image-band figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
}

.food-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.food-image-band figure:hover img { transform: scale(1.04); }

.food-image-band__text { padding: 46px 7vw; }

.oversized-number {
  display: block;
  color: var(--sand);
  font-family: var(--display);
  font-size: 8rem;
  font-style: italic;
  line-height: .6;
  opacity: .78;
}

.food-image-band__text p {
  max-width: 430px;
  margin: 42px 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.ritual-section { background: var(--cal); }

.ritual-section__heading {
  max-width: 570px;
  margin-bottom: 45px;
}

.ritual-section__heading h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); }

.ritual-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.ritual-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ritual-list span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: .68rem;
}

.ritual-list strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
}

.ritual-list p {
  grid-column: 2;
  max-width: 390px;
  margin: 4px 0 0;
}

.promise-section {
  display: grid;
  color: var(--cal);
  background: var(--wine);
}

.promise-section__image {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
}

.promise-section__copy {
  align-self: center;
  padding: 70px 7vw;
}

.promise-section .eyebrow { color: var(--mist); }

.promise-section h2 { font-size: clamp(3rem, 6vw, 6.5rem); }

.promise-section .body-large { max-width: 500px; }

.quote-rule {
  width: 100px;
  height: 1px;
  margin-top: 40px;
  background: var(--mist);
}

.values-section { background: var(--sand); }

.values-list { border-top: 1px solid var(--line); }

.value-row {
  min-height: 122px;
  display: grid;
  grid-template-columns: 40px 1fr 25px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.value-row span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: .68rem;
}

.value-row h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 3.25rem);
}

.value-row i {
  color: var(--wine);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform .3s var(--ease);
}

.value-row:hover i { transform: translate(3px, -3px); }

.contact-hero {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  background: var(--sand);
}

.contact-hero > *:not(.wave-field) { position: relative; }

.contact-hero h1 {
  max-width: 880px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
}

.contact-hero .body-large { max-width: 520px; }

.contact-layout {
  display: grid;
  gap: 60px;
}

.contact-aside {
  align-self: start;
  padding: 35px;
  color: var(--cal);
  background: var(--ink);
}

.contact-aside .eyebrow { color: var(--mist); }

.contact-aside address {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.08;
}

.contact-aside .button {
  color: var(--cal);
  border-color: var(--cal);
}

.contact-aside .button::before { background: var(--cal); }

.contact-aside .button:hover,
.contact-aside .button:focus-visible { color: var(--ink); }

.contact-aside__line {
  width: 100%;
  height: 1px;
  margin: 45px 0 24px;
  background: rgba(244, 235, 221, .32);
}

.contact-small {
  max-width: 270px;
  color: rgba(244, 235, 221, .76);
}

.form-wrap h2 {
  margin-bottom: 36px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  padding-bottom: 11px;
  outline: 0;
  border-bottom: 3px solid var(--water);
}

.form-wrap .button {
  justify-self: start;
  margin-top: 8px;
}

.faq-section {
  display: grid;
  gap: 42px;
  background: var(--sand);
}

.faq-heading h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); }

.faq-list { border-top: 1px solid var(--line); }

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

.faq-item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  letter-spacing: -.025em;
}

.faq-item p {
  max-width: 600px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  gap: 38px;
  padding: 60px 7vw 28px;
  color: var(--cal);
  background: var(--ink);
}

.footer-brand img {
  width: auto;
  max-width: 155px;
  max-height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: rgba(244, 235, 221, .78);
}

.footer-details .eyebrow { color: var(--mist); }

.footer-details address {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.footer-map-link {
  display: inline-flex;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--mist);
  color: var(--mist);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-map-link span { transition: transform .3s var(--ease); }

.footer-map-link:hover span,
.footer-map-link:focus-visible span { transform: translate(2px, -2px); }

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  width: fit-content;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--mist);
  transform: translateX(4px);
}

.footer-credit {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 235, 221, .6);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-load {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .82s var(--ease) forwards;
}

.hero-load:nth-child(1) { animation-delay: .08s; }
.hero-load:nth-child(2) { animation-delay: .18s; }
.hero-load:nth-child(3) { animation-delay: .3s; }
.hero-load:nth-child(4) { animation-delay: .42s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .18s; }

.wave-field--hero {
  animation: waterShift 14s ease-in-out infinite alternate;
}

@keyframes waterShift {
  to { transform: translateY(-34px) scale(1.06); }
}

@media (min-width: 720px) {
  .site-header {
    min-height: 85px;
    padding: 16px 7vw;
  }

  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
  }

  .site-nav a {
    position: relative;
    min-height: 44px;
    padding: 0;
    border: 0;
  }

  .site-nav a::after {
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a.is-active::after { transform: scaleX(1); }

  .site-nav a.is-active { color: var(--wine); }

  .section-pad { padding: 115px 7vw; }

  .hero {
    min-height: min(850px, 100vh);
    padding: 154px 7vw 78px;
  }

  .hero-visual { left: 46%; }

  .hero-visual::after {
    background:
      linear-gradient(90deg, var(--cal) 0%, rgba(244, 235, 221, .94) 7%, rgba(244, 235, 221, .12) 45%),
      linear-gradient(0deg, rgba(244, 235, 221, .18), transparent 35%);
  }

  .hero-visual figcaption {
    top: 140px;
    right: 4vw;
  }

  .hero-side-note {
    position: absolute;
    right: 5vw;
    bottom: 48px;
    z-index: 2;
    display: block;
    margin: 0;
    color: var(--cal);
    font-family: var(--display);
    font-size: 2rem;
    font-style: italic;
    line-height: .88;
  }

  .hero-coordinate {
    position: absolute;
    top: 150px;
    left: calc(46% - 35px);
    z-index: 4;
    display: block;
    margin: 0;
    color: var(--wine);
    font-family: var(--mono);
    font-size: .61rem;
    letter-spacing: .08em;
    writing-mode: vertical-rl;
  }

  .sun-cut {
    top: 106px;
    right: -64px;
    width: 220px;
    height: 220px;
  }

  .intro-band {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 8vw;
  }

  .intro-band__content { margin-top: 0; }

  .ripple-divider { grid-column: 2; }

  .zigzag {
    grid-template-columns: 1.1fr .9fr;
    gap: 8vw;
    align-items: center;
    padding: 0 7vw;
  }

  .zigzag__visual { min-height: 570px; }

  .zigzag__copy { padding: 60px 0; }

  .proof-section__top {
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item {
    padding: 37px 3vw;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .proof-item:last-child { border-right: 0; }

  .image-story {
    grid-template-columns: .82fr 1.18fr;
    gap: 9vw;
  }

  .image-story__photo { min-height: 520px; }

  .page-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 690px;
  }

  .page-hero__copy { padding: 145px 7vw 75px; }

  .page-hero__image { min-height: auto; }

  .page-hero--food .page-hero__image { order: initial; }

  .food-statement,
  .story-copy {
    grid-template-columns: .6fr 1.4fr;
    gap: 7vw;
  }

  .food-image-band {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
  }

  .food-image-band figure { height: 610px; }

  .food-image-band__text {
    align-self: center;
    padding: 60px 7vw 60px 5vw;
  }

  .ritual-section {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 8vw;
  }

  .ritual-list { align-self: end; }

  .promise-section { grid-template-columns: 1.05fr .95fr; }

  .promise-section__image { min-height: 580px; }

  .promise-section__copy { padding: 80px 7vw; }

  .value-row {
    min-height: 150px;
    grid-template-columns: 70px 1fr 30px;
  }

  .contact-hero {
    padding-top: 165px;
    padding-bottom: 120px;
  }

  .contact-layout {
    grid-template-columns: .75fr 1.25fr;
    gap: 9vw;
  }

  .contact-aside { padding: 43px; }

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

  .faq-section {
    grid-template-columns: .75fr 1.25fr;
    gap: 8vw;
  }

  .site-footer {
    grid-template-columns: 1.3fr 1fr .7fr;
    column-gap: 6vw;
    padding: 70px 7vw 28px;
  }

  .footer-credit { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .hero-copy { max-width: 770px; }

  .hero-visual { left: 51%; }

  .hero-coordinate { left: calc(51% - 35px); }

  .contact-cta {
    padding-top: 145px;
    padding-bottom: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-load,
  .reveal {
    opacity: 1;
    transform: none;
  }
}