@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/baloo-2-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/pacifico-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/quicksand-latin.woff2") format("woff2");
}

:root {
  --coral: #e8604c;
  --coral-dark: #c94738;
  --cream: #fff8f3;
  --blush: #ffeae3;
  --pink: #f7a4ae;
  --gold: #e8a33d;
  --matcha: #8ba66a;
  --coffee: #4a2e1e;
  --muted: #775d4d;
  --white: #fffdfb;
  --shadow: 0 18px 50px rgba(74, 46, 30, 0.13);
  --shadow-small: 0 9px 24px rgba(74, 46, 30, 0.11);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--coffee);
  background: var(--cream);
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image: radial-gradient(rgba(232, 96, 76, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
}

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

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

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

button,
.button {
  font: inherit;
}

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

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  position: relative;
  padding: 105px 0;
}

.section--blush {
  background: var(--blush);
}

.section--wave {
  margin-top: 35px;
  border-radius: 70px 70px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
}

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

h1,
h2,
h3,
h4 {
  font-family: "Baloo 2", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.script {
  display: block;
  color: var(--coral);
  font-family: "Pacifico", cursive;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 8px 0 var(--coral-dark);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 11px 0 var(--coral-dark);
}

.button:active {
  transform: translateY(5px);
  box-shadow: 0 3px 0 var(--coral-dark);
}

.button--secondary {
  color: var(--coffee);
  border-color: var(--coffee);
  background: var(--white);
  box-shadow: 0 8px 0 var(--coffee);
}

.button--secondary:hover {
  box-shadow: 0 11px 0 var(--coffee);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  box-shadow: 0 5px 0 var(--coral-dark);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 46, 30, 0.08);
  background: rgba(255, 248, 243, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-family: "Pacifico", cursive;
  color: var(--coral);
  font-size: 1.38rem;
}

.brand img {
  width: 55px;
  height: 55px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.main-nav > a:not(.button) {
  position: relative;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
  transform: scaleX(0) rotate(-2deg);
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1) rotate(-2deg);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--coffee);
  background: var(--blush);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 760px;
  padding: 70px 0 85px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: 4%;
  width: 35vw;
  height: 35vw;
  border: 2px dashed rgba(232, 96, 76, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 55px;
}

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

.hero-copy h1 strong {
  position: relative;
  color: var(--coral);
  font-weight: 800;
}

.hero-copy h1 strong::after {
  position: absolute;
  right: 3%;
  bottom: 4px;
  left: -2%;
  z-index: -1;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.35;
  transform: rotate(-2deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-art {
  position: relative;
  min-height: 540px;
}

.hero-logo-wrap {
  position: absolute;
  inset: 8% -7% auto 0;
  padding: 18px;
  border: 4px solid var(--white);
  border-radius: 28px;
  background: var(--pink);
  box-shadow: var(--shadow);
}

.hero-logo-wrap img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.dream-cloud {
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 80px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.dream-cloud::before,
.dream-cloud::after {
  position: absolute;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.dream-cloud::before {
  top: -34px;
  left: 33px;
  width: 80px;
  height: 80px;
}

.dream-cloud::after {
  top: -20px;
  right: 17px;
  width: 60px;
  height: 60px;
}

.cloud-one {
  top: 5%;
  left: -16%;
  transform: scale(0.65) rotate(-6deg);
}

.cloud-two {
  right: -15%;
  bottom: 2%;
  transform: scale(0.85) rotate(8deg);
}

.sparkle {
  position: absolute;
  color: var(--gold);
  font-family: "Baloo 2", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  animation: twinkle 2.5s ease-in-out infinite;
}

.sparkle-one {
  top: 4%;
  right: 5%;
}

.sparkle-two {
  bottom: 4%;
  left: -4%;
  color: var(--coral);
  animation-delay: 800ms;
}

.info-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.info-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  padding: 26px 30px;
  border: 3px solid var(--coffee);
  border-radius: var(--radius-lg);
  background: var(--gold);
  box-shadow: 8px 9px 0 var(--coffee);
  transform: rotate(-0.6deg);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 22px;
  border-right: 2px dashed rgba(74, 46, 30, 0.35);
}

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

.mini-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.info-item strong,
.info-item span {
  display: block;
}

.info-item strong {
  font-family: "Baloo 2", sans-serif;
  line-height: 1.2;
}

.info-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

.favorites-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  align-items: stretch;
  gap: 18px;
}

.favorite-card {
  position: relative;
  min-height: 370px;
  padding: 23px;
  border: 3px solid var(--coffee);
  border-radius: 100px 100px 28px 28px;
  background: var(--white);
  box-shadow: 6px 7px 0 var(--coffee);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.favorite-card:nth-child(even) {
  margin-top: 50px;
  border-radius: 28px 28px 100px 100px;
}

.favorite-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 10px 14px 0 var(--coffee);
}

.favorite-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(-1deg);
}

.favorite-card img,
.favorite-visual {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.favorite-visual {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--matcha);
}

.favorite-visual svg {
  width: 58%;
}

.favorite-card h3 {
  margin-top: 18px;
  color: var(--coral);
}

.favorite-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.story-collage {
  position: relative;
  min-height: 570px;
}

.story-collage img {
  position: absolute;
  width: 72%;
  border: 10px solid var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.story-collage img:first-child {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
}

.story-collage img:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(8deg);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.sticker {
  display: inline-flex;
  align-items: center;
  min-height: 75px;
  padding: 14px 20px;
  border: 3px solid var(--coffee);
  border-radius: 50% 45% 52% 44%;
  color: var(--coffee);
  background: var(--gold);
  box-shadow: 4px 5px 0 var(--coffee);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  text-align: center;
  transform: rotate(-4deg);
}

.sticker:nth-child(2) {
  background: var(--pink);
  transform: rotate(4deg);
}

.sticker:nth-child(3) {
  background: var(--white);
  transform: rotate(-2deg);
}

.menu-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-tabs a {
  flex: 0 0 auto;
  padding: 10px 17px;
  border: 2px solid var(--coffee);
  border-radius: 999px;
  background: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.menu-tabs a:hover {
  background: var(--gold);
  transform: rotate(-2deg);
}

.menu-stack {
  display: grid;
  gap: 30px;
}

.menu-panel {
  padding: clamp(25px, 4vw, 45px);
  border: 2px solid rgba(74, 46, 30, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 251, 0.85);
  box-shadow: var(--shadow-small);
}

.menu-panel:nth-child(odd) {
  transform: rotate(-0.25deg);
}

.menu-panel:nth-child(even) {
  transform: rotate(0.25deg);
}

.menu-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 17px;
  border-bottom: 3px dotted var(--pink);
}

.menu-panel-head h3 {
  margin: 0;
  color: var(--coral);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.menu-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 42px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-content: start;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  color: var(--coral-dark);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.vegan-label,
.tiny-label {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 8px;
  border-radius: 99px;
  color: var(--white);
  background: var(--matcha);
  font-family: "Quicksand", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  vertical-align: 3px;
}

.builder-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.builder-intro span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--blush);
  font-size: 0.85rem;
  font-weight: 700;
}

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

.builder-group {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.builder-group h4 {
  margin-bottom: 8px;
  color: var(--coral);
}

.builder-group p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.extras-bar {
  margin-top: 18px;
  padding: 18px 20px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  background: #fff7e8;
  font-weight: 600;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  gap: 30px;
}

.location-card,
.map-wrap {
  border: 3px solid var(--coffee);
  border-radius: var(--radius-xl);
  box-shadow: 7px 8px 0 var(--coffee);
  overflow: hidden;
}

.location-card {
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--coral);
}

.location-card h2 {
  color: var(--white);
}

.address-block {
  margin-bottom: 28px;
  font-size: 1.07rem;
  font-style: normal;
  font-weight: 600;
}

.hours-table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
}

.hours-table td {
  text-align: right;
  font-weight: 700;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
}

.site-footer {
  position: relative;
  padding: 75px 0 28px;
  color: var(--cream);
  background: var(--coffee);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  top: -60px;
  right: 8%;
  width: 210px;
  height: 120px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: rotate(15deg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink);
  font-family: "Pacifico", cursive;
  font-size: 2.1rem;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 1.2rem;
}

.site-footer p,
.site-footer ul {
  color: rgba(255, 248, 243, 0.82);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 248, 243, 0.62);
  font-size: 0.82rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Landing pages */
.subpage-hero {
  padding: 80px 0 90px;
  background: linear-gradient(155deg, var(--blush) 0 72%, var(--cream) 72%);
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.subpage-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.subpage-visual {
  position: relative;
}

.subpage-visual img,
.matcha-illustration {
  width: min(100%, 440px);
  margin-inline: auto;
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.matcha-illustration {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--matcha);
}

.matcha-illustration svg {
  width: 58%;
}

.parking-badge {
  position: absolute;
  right: -15px;
  bottom: 15px;
  max-width: 170px;
  padding: 18px;
  border: 3px solid var(--coffee);
  border-radius: 47% 53% 45% 55%;
  background: var(--gold);
  box-shadow: 5px 6px 0 var(--coffee);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-8deg);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -35px;
}

.feature-chip {
  padding: 25px;
  border: 2px solid var(--coffee);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 5px 6px 0 var(--coffee);
  text-align: center;
}

.feature-chip strong {
  display: block;
  color: var(--coral);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.15rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 3px solid var(--coffee);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 6px 7px 0 var(--coffee);
  transition: transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
}

.product-card .price {
  margin-top: auto;
  padding-top: 15px;
  font-size: 1.25rem;
}

.product-showcase--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 850px;
  margin-inline: auto;
}

.faq-item {
  border: 2px solid rgba(74, 46, 30, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 24px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  content: "+";
  line-height: 28px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.crosslinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 45px;
}

.crosslinks a {
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--blush);
  font-weight: 700;
}

.legal-page {
  padding: 70px 0 100px;
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 70px);
  border: 3px solid var(--coffee);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 8px 9px 0 var(--coffee);
}

.legal-card h1 {
  color: var(--coral);
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-13px) rotate(1.5deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.85) rotate(0); }
  50% { opacity: 1; transform: scale(1.15) rotate(15deg); }
}

@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;
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 25px;
    border: 2px solid var(--coffee);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 6px 7px 0 var(--coffee);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav .button {
    justify-self: start;
  }

  .hero-grid,
  .story-grid,
  .location-grid,
  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(620px, 100%);
    min-height: 500px;
    margin-inline: auto;
  }

  .hero-logo-wrap {
    inset: 3% 3% auto 3%;
  }

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

  .info-item {
    border-right: 0;
    border-bottom: 2px dashed rgba(74, 46, 30, 0.35);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

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

  .favorite-card:nth-child(even) {
    margin-top: 35px;
  }

  .story-grid {
    gap: 35px;
  }

  .story-collage {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .section {
    padding: 76px 0;
  }

  .section--wave {
    border-radius: 42px 42px 0 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 55px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-art {
    min-height: 355px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .info-strip {
    margin-top: -30px;
  }

  .info-strip-inner {
    padding: 18px;
    box-shadow: 5px 6px 0 var(--coffee);
  }

  .info-item {
    padding: 12px 5px;
  }

  .favorites-grid,
  .menu-items,
  .builder-grid,
  .product-showcase,
  .product-showcase--three,
  .feature-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .favorite-card,
  .favorite-card:nth-child(even) {
    min-height: 0;
    margin-top: 0;
    border-radius: var(--radius-lg);
  }

  .favorite-card img,
  .favorite-visual {
    aspect-ratio: 1.35;
    border-radius: var(--radius-md);
  }

  .story-collage {
    min-height: 390px;
  }

  .menu-panel,
  .menu-panel:nth-child(n) {
    transform: none;
  }

  .menu-panel-head {
    display: block;
  }

  .menu-note {
    margin-top: 8px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price {
    grid-row: auto;
  }

  .location-card,
  .map-wrap,
  .legal-card {
    border-radius: var(--radius-lg);
    box-shadow: 5px 6px 0 var(--coffee);
  }

  .map-wrap iframe {
    min-height: 430px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .subpage-hero {
    padding: 60px 0 80px;
  }

  .subpage-hero-grid {
    gap: 35px;
  }

  .parking-badge {
    right: 0;
    max-width: 140px;
    font-size: 0.88rem;
  }
}
