:root {
  --cream: #ffeddc;
  --paper: #fffaf4;
  --white: #ffffff;
  --blush: #ffd2c6;
  --peach: #f6b89f;
  --sage: #a9c191;
  --sage-soft: #dbe6ca;
  --sage-deep: #607852;
  --oat: #e8c9a8;
  --cocoa: #93673e;
  --ink: #30251f;
  --muted: #75665c;
  --dark: #151a16;
  --line: rgba(48, 37, 31, 0.16);
  --shadow: 0 24px 70px rgba(74, 48, 31, 0.14);
  --radius: 32px;
  --shell: min(1240px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  width: 100%;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 244, 0.8);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(74, 48, 31, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-order) {
  position: relative;
}

.site-nav > a:not(.nav-order)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-order):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-order {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-order:hover {
  color: var(--dark);
  background: var(--sage);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  padding: clamp(52px, 7vw, 98px) max(24px, calc((100vw - 1240px) / 2)) 92px;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  background:
    radial-gradient(circle at 6% 8%, rgba(255, 210, 198, 0.65) 0 8%, transparent 23%),
    radial-gradient(circle at 96% 92%, rgba(169, 193, 145, 0.45) 0 9%, transparent 25%),
    var(--cream);
  isolation: isolate;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cocoa);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--sage-deep);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(4.2rem, 7.2vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

.hero h1 span {
  display: block;
}

.hero-accent {
  color: var(--sage-deep);
}

.hero-lede {
  max-width: 540px;
  margin: 32px 0 0;
  color: #5f5046;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 14px 30px rgba(21, 26, 22, 0.16);
}

.button-primary:hover {
  background: var(--sage-deep);
}

.button-quiet {
  background: rgba(255, 255, 255, 0.46);
}

.button-quiet:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--dark);
}

.hero-notes {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  list-style: none;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-notes span {
  color: var(--sage-deep);
  font-size: 0.55rem;
}

.hero-visual {
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  z-index: 2;
  top: 4%;
  left: 2%;
  width: min(72%, 430px);
  height: 82%;
  border-radius: 48% 48% 34% 34% / 38% 38% 28% 28%;
  transform: rotate(-2deg);
}

.hero-photo-main img {
  object-position: center 42%;
}

.hero-photo-side {
  right: 0;
  bottom: 2%;
  width: min(48%, 285px);
  height: 55%;
  border-color: rgba(255, 237, 220, 0.8);
  border-radius: 42% 42% 22px 22px;
  transform: rotate(5deg);
}

.hero-photo-side img {
  object-position: center;
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(48, 37, 31, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(10px);
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  transform: rotate(2deg);
}

.photo-label small {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  top: 8%;
  right: 2%;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 2px solid var(--cocoa);
  border-radius: 50%;
  color: var(--cocoa);
  background: var(--blush);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.hero-sticker span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-sticker strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  line-height: 0.95;
}

.bubble {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(147, 103, 62, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.bubble-one {
  top: 13%;
  right: 47%;
  width: 72px;
  height: 72px;
}

.bubble-two {
  right: 43%;
  bottom: 9%;
  width: 34px;
  height: 34px;
  background: rgba(169, 193, 145, 0.32);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--sage);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  align-items: center;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  animation: ticker 24s linear infinite;
  gap: 28px;
}

.ticker-track i {
  color: var(--paper);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.sips {
  padding-block: clamp(92px, 11vw, 160px);
}

.section-heading {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  column-gap: 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.story-copy h2,
.vibe-heading h2,
.visit-intro h2,
.social-copy h2 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-heading > p:last-child {
  max-width: 410px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.sip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sip-card {
  display: grid;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.sip-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.sip-image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.sip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sip-card:hover .sip-image img {
  transform: scale(1.035);
}

.sip-copy {
  display: flex;
  padding: 34px 26px;
  flex-direction: column;
  justify-content: flex-end;
}

.sip-copy span {
  margin-bottom: auto;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.sip-copy h3 {
  margin: 28px 0 12px;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.sip-copy p {
  margin: 0;
  color: rgba(48, 37, 31, 0.72);
  font-size: 0.92rem;
}

.card-watermelon {
  background: #f5b6b3;
}

.card-honey {
  background: #f5c58f;
}

.card-thai {
  background: #eccbaf;
}

.card-matcha {
  background: var(--sage-soft);
}

.section-cta {
  display: flex;
  margin-top: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.story {
  display: grid;
  min-height: 760px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr 1fr;
}

.story-art {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--sage);
}

.story-outlet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.02) 45%, rgba(28, 20, 16, 0.42));
  content: "";
}

.story-orbit {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 7%;
  max-width: 180px;
  margin: 0;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.story-dot {
  position: absolute;
  border: 1px solid rgba(48, 37, 31, 0.26);
  border-radius: 50%;
  background: var(--blush);
}

.dot-one {
  top: 12%;
  left: 11%;
  width: 66px;
  height: 66px;
}

.dot-two {
  top: 21%;
  right: 10%;
  width: 26px;
  height: 26px;
  background: var(--cream);
}

.dot-three {
  bottom: 10%;
  left: 17%;
  width: 42px;
  height: 42px;
  background: #f7c288;
}

.story-copy {
  display: flex;
  padding: clamp(64px, 8vw, 130px);
  flex-direction: column;
  justify-content: center;
  background: var(--blush);
}

.story-copy h2 {
  max-width: 650px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 34px 0 0;
  color: #614e43;
  font-size: 1.1rem;
  line-height: 1.75;
}

.story-values {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.story-values div {
  display: flex;
  min-height: 112px;
  padding: 18px 14px 6px 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.story-values div + div {
  padding-left: 18px;
}

.story-values div:last-child {
  border-right: 0;
}

.story-values strong {
  color: var(--cocoa);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.story-values span {
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.vibe-feed {
  padding-block: clamp(84px, 9vw, 136px);
  border-bottom: 1px solid var(--ink);
}

.vibe-heading {
  display: flex;
  margin-bottom: clamp(40px, 5vw, 72px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.vibe-profile-link {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.vibe-profile-link:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
}

.vibe-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink);
  border-radius: clamp(22px, 2.6vw, 38px);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(71, 47, 34, 0.08);
}

.vibe-card:nth-child(even) {
  margin-top: 34px;
}

.vibe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vibe-card:hover img {
  transform: scale(1.035);
}

.vibe-card figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 10px 15px;
  border: 1px solid rgba(48, 37, 31, 0.58);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  box-shadow: 0 10px 24px rgba(47, 35, 29, 0.12);
  font-family: "Fredoka", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.visit {
  padding-block: clamp(92px, 11vw, 160px);
}

.visit-intro {
  margin-bottom: 56px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.location-card,
.map-card {
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-card {
  display: flex;
  padding: clamp(26px, 4vw, 50px);
  flex-direction: column;
  background: var(--cream);
}

.location-top {
  display: flex;
  align-items: center;
  gap: 28px;
}

.location-top img {
  width: 112px;
  height: 112px;
  border: 7px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(74, 48, 31, 0.14);
}

.location-top span {
  color: var(--cocoa);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.location-top h3 {
  margin: 8px 0 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.location-card address {
  margin: auto 0 38px;
  color: #5c4c42;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.contact-links span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 0.9rem;
  text-align: right;
}

.contact-links a:hover strong {
  color: var(--sage-deep);
}

.map-card {
  position: relative;
  display: block;
  background-color: var(--sage-soft);
  background-image:
    linear-gradient(rgba(96, 120, 82, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 120, 82, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.map-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.map-road {
  position: absolute;
  border: 2px solid rgba(255, 250, 244, 0.92);
  background: rgba(255, 250, 244, 0.52);
  box-shadow: inset 0 0 0 1px rgba(147, 103, 62, 0.12);
}

.road-one {
  top: -8%;
  left: 43%;
  width: 86px;
  height: 122%;
  transform: rotate(28deg);
}

.road-two {
  top: 44%;
  left: -10%;
  width: 120%;
  height: 76px;
  transform: rotate(-9deg);
}

.road-three {
  right: -3%;
  bottom: 8%;
  width: 72%;
  height: 50px;
  transform: rotate(24deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 52%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 2px solid var(--cocoa);
  border-radius: 50% 50% 50% 8px;
  background: var(--blush);
  box-shadow: 0 14px 30px rgba(74, 48, 31, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
  width: 24px;
  height: 24px;
  border: 2px solid var(--cocoa);
  border-radius: 50%;
  background: var(--cream);
}

.map-place {
  position: absolute;
  z-index: 3;
  top: 57%;
  left: 52%;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  transform: translateX(-50%);
}

.map-place small {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-action {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 180px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.social-strip {
  display: grid;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--dark);
  grid-template-columns: 1fr 1fr;
}

.social-copy {
  display: flex;
  min-height: 520px;
  padding: clamp(48px, 7vw, 100px);
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  gap: clamp(24px, 4vw, 56px);
}

.social-copy img {
  width: min(34%, 210px);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 80, 170, 0.2);
}

.social-copy .eyebrow {
  color: var(--blush);
}

.social-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
}

.social-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links a {
  display: grid;
  min-height: 122px;
  padding: 28px clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 0.55fr 1fr auto;
  align-items: center;
  gap: 28px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.social-links a:last-child {
  border-bottom: 0;
}

.social-links a:hover {
  color: var(--dark);
  background: var(--sage);
}

.social-links span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links a:hover span {
  color: rgba(21, 26, 22, 0.65);
}

.social-links strong {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.social-links b {
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  min-height: 180px;
  padding: 42px max(24px, calc((100vw - 1240px) / 2));
  align-items: end;
  background: var(--cream);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.footer-brand {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p:last-child {
  text-align: right;
}

.mobile-order {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 42px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .sip-card {
    min-height: 690px;
    grid-template-columns: 1fr;
  }

  .sip-image {
    min-height: 430px;
  }

  .sip-copy {
    min-height: 240px;
  }

  .story-copy {
    padding: 70px 50px;
  }

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

  .location-card,
  .map-card {
    min-height: 540px;
  }

  .social-strip {
    grid-template-columns: 1fr;
  }

  .social-copy {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
    padding-inline: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 420px);
    height: 100svh;
    padding: 112px 28px 36px;
    align-items: stretch;
    justify-content: flex-start;
    border-left: 1px solid var(--ink);
    background: var(--cream);
    box-shadow: -30px 0 70px rgba(74, 48, 31, 0.14);
    flex-direction: column;
    gap: 0;
    transform: translateX(105%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a {
    padding: 20px 2px;
    border-bottom: 1px solid var(--line);
    font-family: "Fredoka", sans-serif;
    font-size: 1.65rem;
  }

  .nav-order {
    margin-top: 24px;
    justify-content: space-between;
    padding-inline: 22px !important;
    border-bottom: 1px solid var(--dark) !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 1rem !important;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 14vw, 7.4rem);
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 650px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 26px;
  }

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

  .story-art {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .story-copy {
    padding: 90px max(24px, calc((100vw - 720px) / 2));
  }

  .vibe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    min-height: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 24px;
  }

  body {
    padding-bottom: 78px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding: 42px 14px 72px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 19vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-photo {
    border-width: 5px;
  }

  .hero-photo-main {
    left: 0;
    width: 75%;
    height: 86%;
  }

  .hero-photo-side {
    right: -1%;
    width: 47%;
    height: 58%;
  }

  .hero-sticker {
    top: 4%;
    right: 0;
    width: 92px;
    height: 92px;
  }

  .hero-sticker strong {
    font-size: 1.05rem;
  }

  .photo-label {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .ticker-track {
    gap: 20px;
  }

  .sips,
  .visit {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .story-copy h2,
  .vibe-heading h2,
  .visit-intro h2,
  .social-copy h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .sip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sip-card {
    min-height: 660px;
  }

  .sip-image {
    min-height: 430px;
  }

  .sip-copy {
    min-height: 225px;
    padding: 26px 22px;
  }

  .sip-copy h3 {
    font-size: 2.8rem;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-cta .button {
    width: 100%;
    justify-content: space-between;
  }

  .story-art {
    min-height: 500px;
  }

  .story-orbit {
    right: 4%;
    bottom: 5%;
    max-width: 154px;
    padding: 12px 14px;
    font-size: 0.58rem;
  }

  .story-copy {
    padding: 76px 20px;
  }

  .vibe-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .vibe-profile-link {
    width: 100%;
    justify-content: space-between;
  }

  .vibe-grid {
    gap: 12px;
  }

  .vibe-card {
    border-radius: 20px;
  }

  .vibe-card:nth-child(even) {
    margin-top: 18px;
  }

  .vibe-card figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    max-width: calc(100% - 18px);
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .story-values div,
  .story-values div + div {
    min-height: 82px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-values div:last-child {
    border-bottom: 0;
  }

  .location-card,
  .map-card {
    min-height: 510px;
  }

  .location-card {
    padding: 24px 20px;
  }

  .location-top {
    gap: 18px;
  }

  .location-top img {
    width: 86px;
    height: 86px;
  }

  .location-card address {
    font-size: 1.16rem;
  }

  .contact-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-links strong {
    text-align: left;
  }

  .map-action {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .social-copy {
    min-height: 520px;
    padding: 72px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .social-copy img {
    width: 150px;
  }

  .social-links a {
    min-height: 136px;
    padding: 24px 20px;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .social-links span {
    grid-column: 1 / -1;
  }

  .site-footer {
    min-height: 260px;
    padding: 46px 20px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }

  .mobile-order {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    color: var(--white);
    background: rgba(21, 26, 22, 0.94);
    box-shadow: 0 14px 30px rgba(21, 26, 22, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-order span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
  }

  .mobile-order strong {
    font-size: 0.9rem;
  }
}
