:root {
  --cherry: #8f1719;
  --deep-cherry: #651011;
  --milk: #f7f1e7;
  --paper: #fffaf1;
  --roast: #19110d;
  --gold: #d5a23b;
  --smoke: #8e968c;
  --nav-height: 76px;
}

@font-face {
  font-family: "Naad Lora";
  src: url("fonts/Lora-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 700;
}

@font-face {
  font-family: "Naad Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght%203.ttf") format("truetype");
  font-weight: 300 800;
}

@font-face {
  font-family: "Naad Proxima";
  src: url("fonts/ProximaNova-Light.otf") format("opentype");
  font-weight: 300;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--roast);
  color: var(--milk);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Naad Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

body.is-intro {
  overflow: hidden;
}

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 250, 241, 0.1), transparent 34%),
    linear-gradient(145deg, #2a0d0c, var(--deep-cherry) 42%, #210907);
  animation: introExit 1.15s cubic-bezier(0.78, 0, 0.22, 1) 5.7s forwards;
}

.intro__grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 9px 9px;
  mix-blend-mode: soft-light;
}

.intro__copy {
  position: absolute;
  z-index: 3;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(1.4rem, 2.7vw, 3.2rem);
  line-height: 1;
  color: var(--milk);
  opacity: 0;
  animation: introWords 4.6s ease forwards;
}

.intro__copy--top {
  top: clamp(28px, 8vh, 76px);
  left: clamp(22px, 7vw, 96px);
}

.intro__copy--bottom {
  right: clamp(22px, 7vw, 96px);
  bottom: clamp(28px, 8vh, 76px);
  animation-delay: 0.5s;
}

.intro__bean {
  position: absolute;
  z-index: 4;
  width: min(35vw, 280px);
  min-width: 160px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
  /* Selected intro motion: old solid zoom/fade, dropping from top center. */
  animation: beanDrop 5.7s cubic-bezier(0.72, 0, 0.2, 1) forwards;
  transform-origin: 50% 50%;
}

.intro__mandala {
  position: absolute;
  z-index: 2;
  width: max(115vw, 900px);
  opacity: 0;
  transform: scale(1.05) rotate(-16deg);
  animation: mandalaReveal 3.3s linear 1.25s forwards;
}

.intro__aperture {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.intro--js .intro__bean,
.intro--js .intro__aperture,
.intro--js .intro__video {
  animation: none;
}

.intro__video,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 700ms ease;
}

.intro__video.video-visible {
  opacity: 1;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  width: 100%;
  min-height: var(--nav-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--milk);
  mix-blend-mode: normal;
}

.site-nav::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(25, 17, 13, 0.72), transparent);
  opacity: 0.9;
}


.site-nav {
  transition:
    background-color 300ms ease,
    backdrop-filter 300ms ease,
    padding 300ms ease,
    box-shadow 300ms ease;
}

.site-nav.sticky::after {
  opacity: 0;
}

.site-nav.sticky {
  background: rgba(25, 17, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.site-nav__brand {
  position: relative;
  justify-self: start;
  display: inline-grid;
  width: 118px;
  height: 40px;
  align-items: center;
  overflow: hidden;
  font-family: "Naad Lora", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transform: scale(1.64);
  transform-origin: center;
}

.site-nav__brand img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  max-height: 100%;
  object-fit: contain;
}

.site-nav__brand span {
  position: relative;
  z-index: 1;
  color: var(--milk);
}

.site-nav__links {
  display: flex;
  gap: clamp(16px, 3vw, 44px);
  justify-self: center;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav__links a,
.site-nav__cta {
  position: relative;
  padding: 8px 0;
}

.site-nav__links a::after,
.site-nav__cta::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav__links a:hover::after,
.site-nav__cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  justify-self: end;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.site-nav__menu,
.menu-drawer__close,
.connect-form button {
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.site-nav__menu {
  padding: 8px 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  visibility: hidden;
  pointer-events: none;
  background: rgba(25, 17, 13, 0);
  transition: background 360ms ease, visibility 360ms ease;
}

.menu-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(25, 17, 13, 0.64);
}

.menu-drawer__surface {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(860px, 100vw);
  min-height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(24px, 5vw, 64px);
  background:
    radial-gradient(circle at 100% 0, rgba(143, 23, 25, 0.2), transparent 34%),
    var(--paper);
  color: var(--roast);
  transform: translateX(100%);
  transition: transform 520ms cubic-bezier(0.78, 0, 0.22, 1);
}

.menu-drawer.is-open .menu-drawer__surface {
  transform: translateX(0);
}

.menu-drawer__close {
  justify-self: end;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-drawer__brand {
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 0.75;
  color: var(--cherry);
}

.menu-drawer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.menu-drawer__grid section {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(25, 17, 13, 0.24);
  padding-top: 18px;
}

.menu-drawer__grid p {
  margin: 0 0 16px;
  color: var(--deep-cherry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-drawer__grid a {
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1.06;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  background: var(--roast);
}

.hero__video {
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 17, 13, 0.82), rgba(25, 17, 13, 0.14) 52%, rgba(101, 16, 17, 0.42)), radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(25, 17, 13, 0.48) 72%), rgba(0,0,0,.5)
}

.hero__content {
  position: relative;
  width: min(1120px, calc(100vw - 36px));
  padding-top: var(--nav-height);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(6rem, 22vw, 20rem);
  font-weight: 500;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero__line {
  width: min(620px, 86vw);
  margin: 30px auto 0 auto;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 3.5rem);
  line-height: 1.05;
  text-align: center;
}

.hero__meta {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 5vh, 54px);
  left: clamp(18px, 4vw, 54px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(247, 241, 231, 0.38);
  padding-top: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.opening-composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.35fr) minmax(180px, 0.62fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: end;
  min-height: 92svh;
  padding: clamp(86px, 10vw, 140px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: var(--paper);
  color: var(--roast);
}

.opening-composition::before {
  position: absolute;
  inset: 0 auto auto -10vw;
  width: 36vw;
  min-width: 320px;
  aspect-ratio: 1;
  content: "";
  background: var(--cherry);
  clip-path: circle(50%);
  transform: translateY(-42%);
}

.opening-composition__text {
  position: relative;
  padding-bottom: 7vh;
}

.opening-composition h2 {
  margin: 0;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.opening-composition__text p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  font-family: "Naad Proxima", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.editorial-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  height: min(68svh, 690px);
  overflow: hidden;
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-panel {
  display: grid;
  align-content: end;
  min-height: 62svh;
  border-left: 1px solid rgba(25, 17, 13, 0.24);
  padding-left: clamp(16px, 2vw, 30px);
}

.identity-panel img {
  width: min(44vw, 360px);
  max-width: none;
  transform: translateX(-22%) rotate(6deg);
}

.identity-panel p {
  margin: 24px 0 0;
  color: var(--deep-cherry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.55;
  text-transform: uppercase;
}

.section-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) clamp(18px, 4vw, 54px);
  background: var(--roast);
  color: var(--milk);
}

.ecosystem__intro {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(220px, 0.75fr);
  gap: clamp(26px, 5vw, 90px);
  align-items: end;
  margin-top: 32px;
}

.ecosystem h2,
.coffee-focus h2,
.journey h2,
.feature-split h2,
.experience-band h2,
.commerce-gateway h2,
.knowledge h2,
.events-business h2,
.visit-connect h2 {
  margin: 0;
  font-family: "Naad Lora", Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
}

.ecosystem h2 {
  /* max-width: 980px; */
  font-size: clamp(3.4rem, 8.5vw, 10.5rem);
}

.ecosystem__intro p {
  margin: 0;
  max-width: 520px;
  font-family: "Naad Proxima", Arial, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.55;
}

.pillar-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: minmax(260px, 1fr);
  grid-auto-flow: column;
  gap: 1px;
  margin-top: clamp(56px, 8vw, 112px);
  overflow-x: auto;
  border-top: 1px solid rgba(247, 241, 231, 0.26);
  border-bottom: 1px solid rgba(247, 241, 231, 0.26);
  scrollbar-width: thin;
}

.pillar {
  min-height: 300px;
  padding: 22px 24px 28px;
  background: rgba(247, 241, 231, 0.035);
}

.pillar.is-active {
  background: var(--cherry);
}

.pillar span {
  display: block;
  margin-bottom: 82px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.pillar h3 {
  margin: 0 0 18px;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
}

.pillar p {
  margin: 0;
  font-family: "Naad Proxima", Arial, sans-serif;
  line-height: 1.45;
}

.ecosystem__rings {
  position: absolute;
  right: -10vw;
  bottom: 0vw;
  width: min(760px, 58vw);
  opacity: 0.16;
}

.coffee-focus {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr minmax(64px, 0.2fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding: clamp(80px, 10vw, 150px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: var(--paper);
  color: var(--roast);
}

.coffee-focus__image {
  height: min(76svh, 760px);
  overflow: hidden;
}

.coffee-focus__image img,
.feature-split > img,
.experience-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-focus h2 {
  font-size: clamp(2.8rem, 6vw, 7rem);
}

.coffee-focus__text p:not(.eyebrow),
.feature-split p:not(.eyebrow),
.experience-band p,
.knowledge p,
.events-business p,
.visit-connect p {
  font-family: "Naad Proxima", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--deep-cherry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vertical-motif {
  display: grid;
  gap: 34px;
  justify-items: center;
}

.vertical-motif img {
  width: clamp(62px, 8vw, 110px);
  opacity: 0.84;
}

.journey {
  padding: clamp(80px, 10vw, 150px) 0;
  overflow: hidden;
  background: var(--milk);
  color: var(--roast);
}

.journey__head {
  padding: 0 clamp(18px, 4vw, 54px);
}

.journey h2 {
  font-size: clamp(3.8rem, 10vw, 12rem);
}

.journey__rail {
  display: grid;
  grid-auto-columns: minmax(220px, 24vw);
  grid-auto-flow: column;
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(44px, 6vw, 82px);
  overflow-x: auto;
  padding: 0 clamp(18px, 4vw, 54px) 28px;
}

.journey__rail article {
  position: relative;
  display: grid;
  min-height: 290px;
  align-content: space-between;
  border-top: 1px solid rgba(25, 17, 13, 0.28);
  padding-top: 28px;
}

.journey__rail article::after {
  position: absolute;
  top: -7px;
  right: -22px;
  width: 44px;
  height: 13px;
  content: "";
  background: var(--deep-cherry);
  clip-path: polygon(0 43%, 74% 43%, 74% 0, 100% 50%, 74% 100%, 74% 57%, 0 57%);
}

.journey__rail article:last-child::after {
  display: none;
}

.journey__rail img {
  width: min(180px, 62%);
  justify-self: center;
}

.journey__rail span {
  color: var(--deep-cherry);
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-split,
.experience-band,
.knowledge,
.events-business,
.visit-connect {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(80px, 10vw, 150px) clamp(18px, 4vw, 54px);
}

.feature-split {
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  background: var(--deep-cherry);
  color: var(--milk);
}

.feature-split h2,
.experience-band h2,
.commerce-gateway h2,
.knowledge h2,
.events-business h2,
.visit-connect h2 {
  font-size: clamp(2.6rem, 6.2vw, 7.4rem);
}

.feature-split > img {
  height: min(72svh, 740px);
}

.experience-band {
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.75fr;
  align-items: end;
  background-color: var(--paper);
  color: var(--roast);
  background-image: url(imgs/MandalaLinear_NaadP_CherryGold.png);
  background-repeat: repeat-y;
  background-position: 98% center;
  background-size: auto 50%;
}

.experience-band img {
  height: clamp(280px, 48vw, 560px);
}

.commerce-gateway {
  padding: clamp(80px, 10vw, 150px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(25, 17, 13, 0.82), rgba(25, 17, 13, 0.35)),
    url("imgs/3X5A5230.jpg") center / cover;
  color: var(--milk);
}

.commerce-gateway h2 {
  max-width: 980px;
}

.commerce-gateway__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(42px, 7vw, 90px);
  border: 1px solid rgba(247, 241, 231, 0.36);
  background: rgba(247, 241, 231, 0.08);
}

.commerce-gateway__links a {
  padding:48px 24px;
  text-align: center;
  font-family: "Naad Lora", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3.3rem);
  line-height: 1;
  border-right: 1px solid rgba(247, 241, 231, 0.36);
  transition: all .5s ease;
}

.commerce-gateway__links a:hover {
  padding-top: 24px;
}

.knowledge {
  grid-template-columns: 1fr 1fr;
  background: var(--milk);
  color: var(--roast);
  position: relative;
  overflow: hidden;
}

.knowledge::before{
  position: absolute;
  inset: 0 auto auto -10vw;
  width: 36vw;
  min-width: 320px;
  aspect-ratio: 1;
  content: "";
  background: var(--cherry);
  clip-path: circle(50%);
  transform: translateY(-42%);
  z-index: 1;
}

.knowledge article {
  border-top: 1px solid rgba(25, 17, 13, 0.24);
  padding-top: 24px;
  z-index: 2;
}

.events-business {
  grid-template-columns: 1fr 1fr;
  background: var(--roast);
  color: var(--milk);
}

.events-business > div {
  border-top: 1px solid rgba(247, 241, 231, 0.32);
  padding-top: 24px;
}

.visit-connect {
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  color: var(--roast);
}

.connect-form {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(25, 17, 13, 0.24);
  padding-left: clamp(24px, 4vw, 58px);
}

.connect-form label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.connect-form input,
.connect-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(25, 17, 13, 0.42);
  border-radius: 0;
  padding: 12px 0;
  color: var(--roast);
  font: 1rem "Naad Proxima", Arial, sans-serif;
  background: transparent;
}

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

.connect-form button {
  justify-self: start;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  padding: 0 0 6px;
  color: var(--deep-cherry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--deep-cherry);
  color: var(--milk);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes beanDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -58vh, 0) rotate(-18deg) scale(0.54);
  }
  24% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  48% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.86);
  }
  78% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(24deg) scale(13);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(24deg) scale(18);
  }
}

@keyframes mandalaReveal {
  0% {
    opacity: 0;
    transform: scale(1.05) rotate(-16deg);
  }
  18% {
    opacity: 0.82;
    transform: scale(1.05) rotate(-10deg);
  }
  70% {
    opacity: 0.72;
    transform: scale(1.05) rotate(9deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.05) rotate(20deg);
  }
}



@keyframes introWords {
  0%, 14% {
    opacity: 0;
    transform: translateY(12px);
  }
  28%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

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

  .site-nav__links {
    display: none;
  }

  .site-nav__brand {
    width: 96px;
  }

  .site-nav__actions {
    gap: 14px;
  }

  .site-nav__cta {
    display: none;
  }

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

  .hero__content {
    align-self: end;
    padding-bottom: 128px;
  }

  .hero__line {
    margin-left: 0;
  }

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

  .opening-composition {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .opening-composition__text {
    padding-bottom: 0;
  }

  .editorial-frame {
    height: 58svh;
  }

  .identity-panel {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(25, 17, 13, 0.24);
    padding: 24px 0 0;
  }

  .identity-panel img {
    width: 92vw;
    transform: translateX(-18%) rotate(6deg);
  }

  .ecosystem__intro,
  .coffee-focus,
  .feature-split,
  .experience-band,
  .knowledge,
  .events-business,
  .visit-connect {
    grid-template-columns: 1fr;
  }

  .coffee-focus__image,
  .feature-split > img,
  .experience-band img {
    height: 58svh;
  }

  .vertical-motif {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .commerce-gateway__links {
    grid-template-columns: 1fr;
  }

  .connect-form {
    border-left: 0;
    border-top: 1px solid rgba(25, 17, 13, 0.24);
    padding: 26px 0 0;
  }

  .site-footer {
    display: grid;
  }
}

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

  body.is-intro {
    overflow: auto;
  }

  .intro {
    display: none;
  }
}
