:root {
  --primary-dark: #354a39;
  --primary: #4f6b52;
  --primary-soft: #a8b9a5;
  --primary-surface: #e7ede5;
  --rice-cream: #f3eee4;
  --hojicha: #b28a63;
  --background: #faf8f3;
  --surface: #f3eee4;
  --border: #dcd7cc;
  --text: #292d29;
  --text-secondary: #6b716b;
  --text-disabled: #a4a9a3;
  --font-sans: "DM Sans", Arial, sans-serif;
  --font-serif: "Noto Serif JP", Georgia, serif;
  --container: 1280px;
  --page-gutter: clamp(24px, 5vw, 80px);
  --section-space: clamp(96px, 10vw, 144px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

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,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.16;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
}

em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(79, 107, 82, 0.3);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--primary-dark);
  color: var(--background);
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: height 300ms var(--ease), background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  height: 72px;
  border-color: rgba(220, 215, 204, 0.8);
  background: rgba(250, 248, 243, 0.94);
  box-shadow: 0 4px 16px rgba(41, 45, 41, 0.035);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 196px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(24px, 2.8vw, 44px);
  list-style: none;
}

.site-nav ul a {
  position: relative;
  padding-block: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.site-nav ul a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--primary);
  content: "";
  transition: transform 250ms var(--ease);
}

.site-nav ul a:hover,
.site-nav ul a.active {
  color: var(--primary);
}

.site-nav ul a:hover::after,
.site-nav ul a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.cart-trigger {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.cart-trigger:hover {
  border-color: var(--primary);
  background: var(--primary-surface);
}

.cart-trigger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 5px;
  place-items: center;
  border: 2px solid var(--background);
  border-radius: 99px;
  background: var(--primary);
  color: var(--background);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.cart-count:empty,
.cart-count[data-count="0"] {
  opacity: 0;
}

.cart-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  background: rgba(41, 45, 41, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  display: grid;
  width: min(100%, 470px);
  height: 100dvh;
  padding: 32px;
  transform: translateX(100%);
  background: var(--background);
  box-shadow: -12px 0 32px rgba(41, 45, 41, 0.1);
  grid-template-rows: auto minmax(0, 1fr) auto;
  transition: transform 380ms var(--ease);
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .cart-backdrop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  padding-bottom: 24px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.cart-header p {
  margin-bottom: 4px;
  color: var(--text-disabled);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-header h2 {
  margin: 0;
  font-size: 28px;
}

.cart-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.cart-close:hover {
  border-color: var(--primary);
  background: var(--primary-surface);
}

.cart-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.cart-items {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-empty {
  display: grid;
  height: 100%;
  min-height: 280px;
  place-content: center;
  text-align: center;
}

.cart-empty svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  fill: none;
  stroke: var(--primary-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.cart-empty h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.cart-empty p {
  max-width: 270px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cart-item {
  display: grid;
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 78px 1fr;
  gap: 16px;
}

.cart-thumb {
  width: 78px;
  height: 92px;
  border-radius: 10px;
  background-color: var(--rice-cream);
  background-image: url("assets/images/greenmatch-menu.webp");
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.cart-thumb.product-crop-1 {
  background-position: 0% 64%;
}

.cart-thumb.product-crop-2 {
  background-position: 34% 64%;
}

.cart-thumb.product-crop-3 {
  background-position: 67% 64%;
}

.cart-thumb.product-crop-4 {
  background-position: 100% 64%;
}

.cart-item-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-heading h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.cart-item-heading strong {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-control {
  display: inline-grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  grid-template-columns: 32px 30px 32px;
}

.quantity-control button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
}

.quantity-control button:hover {
  background: var(--primary-surface);
}

.quantity-control span {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 12px;
}

.remove-item {
  padding: 5px;
  border: 0;
  background: transparent;
  color: var(--text-disabled);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.remove-item:hover {
  color: var(--text);
}

.cart-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  margin-bottom: 4px;
  align-items: center;
  justify-content: space-between;
}

.cart-subtotal span {
  color: var(--text-secondary);
  font-size: 14px;
}

.cart-subtotal strong {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
}

.cart-footer > p {
  margin-bottom: 18px;
  color: var(--text-disabled);
  font-size: 11px;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout.is-disabled {
  background: var(--text-disabled);
  opacity: 0.7;
  pointer-events: none;
}

.checkout-note {
  display: block;
  margin-top: 10px;
  color: var(--text-disabled);
  font-size: 10px;
  text-align: center;
}

.cart-status {
  position: fixed;
  z-index: 250;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 12px 16px;
  visibility: hidden;
  transform: translateY(12px);
  border-radius: 8px;
  background: var(--primary-dark);
  color: var(--background);
  box-shadow: 0 12px 32px rgba(41, 45, 41, 0.14);
  font-size: 12px;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.cart-status.show {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

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

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

.button-secondary {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

.button-secondary:hover {
  background: var(--primary-surface);
}

.text-link {
  display: inline-flex;
  padding-block: 4px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(79, 107, 82, 0.35);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: gap 200ms ease, border-color 200ms ease;
}

.text-link:hover {
  gap: 14px;
  border-color: var(--primary);
}

.hero {
  min-height: 780px;
  padding-top: 88px;
  background: var(--background);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 88px);
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.88fr);
  gap: clamp(56px, 7vw, 112px);
}

.hero-copy {
  max-width: 650px;
  padding-block: 64px;
}

.eyebrow {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 36px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-proof {
  display: grid;
  max-width: 570px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-proof > div {
  display: grid;
  gap: 2px;
}

.proof-value {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
}

.proof-label {
  color: var(--text-secondary);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  height: min(76vh, 760px);
  min-height: 610px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background: var(--rice-cream);
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: rgba(53, 74, 57, 0.03);
  content: "";
  pointer-events: none;
}

.image-note {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-width: 190px;
  padding: 16px;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(250, 248, 243, 0.45);
  border-radius: 10px;
  background: rgba(250, 248, 243, 0.9);
  color: var(--primary-dark);
}

.image-note span {
  font-family: var(--font-serif);
  font-size: 12px;
}

.image-note p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.vertical-note {
  position: absolute;
  top: 50%;
  right: -5px;
  margin: 0;
  transform: translateY(-50%);
  color: var(--primary-soft);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.introduction {
  border-top: 1px solid var(--border);
}

.intro-heading {
  display: grid;
  margin-bottom: 88px;
  grid-template-columns: 0.72fr 1.7fr;
  gap: 48px;
}

.section-index {
  margin: 8px 0 0;
  color: var(--text-disabled);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-heading > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.intro-heading h2 {
  max-width: 530px;
  margin: 0;
}

.intro-heading h2 span {
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.intro-heading > div > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

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

.value {
  position: relative;
  padding: 40px 40px 8px;
  border-left: 1px solid var(--border);
}

.value:first-child {
  padding-left: 0;
  border-left: 0;
}

.value-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-disabled);
  font-family: var(--font-serif);
  font-size: 12px;
}

.value svg {
  width: 36px;
  height: 36px;
  margin-bottom: 32px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value h3 {
  margin-bottom: 12px;
}

.value p {
  max-width: 300px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.menu-section {
  background: var(--rice-cream);
}

.section-heading,
.experience-heading {
  display: flex;
  margin-bottom: 64px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.section-heading h2,
.experience-heading h2 {
  margin: 0;
}

.section-heading > p,
.experience-heading > div:last-child {
  width: min(100%, 400px);
  margin: 0 0 6px;
}

.section-heading > p,
.experience-heading > div:last-child > p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
}

.product {
  grid-column: span 3;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  margin-bottom: 22px;
  border-radius: 16px;
  background-color: #e3dbc9;
  background-image: url("assets/images/greenmatch-menu.webp");
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.product-crop-1 {
  background-position: 0% 64%;
}

.product-crop-2 {
  background-position: 34% 64%;
}

.product-crop-3 {
  background-position: 67% 64%;
}

.product-crop-4 {
  background-position: 100% 64%;
}

.product-image img {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.product-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(41, 45, 41, 0.06);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-image,
.product-image::before {
  transition: background-size 450ms var(--ease);
}

.product:hover .product-image {
  background-size: 408% auto;
}

.badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--primary);
  color: var(--background);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-warm {
  background: var(--hojicha);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product h3 {
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.product p {
  max-width: 235px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.price {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
}

.product-purchase {
  display: flex;
  margin-top: 18px;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(220, 215, 204, 0.9);
  gap: 12px;
}

.add-to-cart {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.add-to-cart:hover {
  transform: translateY(-1px);
  background: var(--primary);
  color: var(--background);
}

.add-to-cart.is-added {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--background);
}

.section-action {
  display: flex;
  margin-top: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.section-action p {
  margin: 0;
  color: var(--text-disabled);
  font-size: 12px;
}

.quality-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(64px, 8vw, 120px);
}

.quality-visual {
  position: relative;
}

.quality-visual > img {
  width: 100%;
  aspect-ratio: 1.02;
  border-radius: 20px;
  object-fit: cover;
}

.quality-stamp {
  position: absolute;
  right: -36px;
  bottom: -36px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--background);
}

.quality-stamp svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.quality-copy {
  position: relative;
}

.quality-copy .section-index {
  margin-bottom: 36px;
}

.jp-accent {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  color: var(--primary-soft);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.quality-copy .lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.quality-list {
  margin: 0 0 32px;
  border-top: 1px solid var(--border);
}

.quality-list > div {
  display: grid;
  padding-block: 17px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 0.9fr 1.2fr;
  gap: 24px;
}

.quality-list dt {
  color: var(--text-disabled);
  font-family: var(--font-serif);
  font-size: 12px;
}

.quality-list dt span {
  margin-left: 12px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}

.quality-list dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.experience {
  background: var(--primary-surface);
}

.experience-heading > div:last-child > p {
  margin-bottom: 22px;
}

.interior-frame {
  position: relative;
}

.interior-frame > img {
  width: 100%;
  aspect-ratio: 1.83;
  border-radius: 20px;
  object-fit: cover;
}

.facility-strip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  min-height: 80px;
  padding: 16px 24px;
  align-items: center;
  border: 1px solid rgba(250, 248, 243, 0.5);
  border-radius: 12px;
  background: rgba(250, 248, 243, 0.93);
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(8px);
}

.facility-strip span {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
}

.facility-strip span:first-child {
  border-left: 0;
}

.facility-strip svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.moments {
  overflow: hidden;
}

.moments-intro {
  margin-bottom: 56px;
  margin-left: 33.333%;
}

.moments-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: clamp(48px, 7vw, 104px);
}

.moments-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.moments-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.28);
  object-fit: cover;
  object-position: 12% center;
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(250, 248, 243, 0.88);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.moment-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.moment {
  display: grid;
  padding-block: 32px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 56px 1fr;
  gap: 16px;
  transition: padding-left 250ms var(--ease);
}

.moment:first-child {
  border-top: 1px solid var(--border);
}

.moment > span {
  color: var(--text-disabled);
  font-family: var(--font-serif);
  font-size: 12px;
}

.moment h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.moment p {
  max-width: 390px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.moment:hover,
.moment.active {
  padding-left: 16px;
}

.moment.active h3 {
  color: var(--primary);
}

.stores {
  border-top: 1px solid var(--border);
  background: var(--rice-cream);
}

.store-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 8vw, 120px);
}

.store-copy > .section-index {
  margin-bottom: 32px;
}

.store-copy > h2 {
  margin-bottom: 48px;
}

.store-card {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.store-title {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.store-title p {
  margin-bottom: 4px;
  color: var(--text-disabled);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-title h3 {
  margin: 0;
  font-size: 23px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.open-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.store-card address {
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.store-hours {
  display: flex;
  max-width: 380px;
  margin-bottom: 32px;
  padding-block: 14px;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}

.store-hours strong {
  color: var(--text);
  font-weight: 500;
}

.map-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid #d6d2c6;
  border-radius: 20px;
  background-color: #e8e5dc;
}

.map-card::before,
.map-card::after {
  position: absolute;
  background: rgba(250, 248, 243, 0.7);
  content: "";
}

.map-card::before {
  top: 12%;
  bottom: 14%;
  left: 12%;
  width: 28%;
}

.map-card::after {
  top: 16%;
  right: 10%;
  width: 35%;
  height: 22%;
}

.map-road {
  position: absolute;
  z-index: 2;
  border: 7px solid #faf8f3;
  border-right: 0;
  border-left: 0;
}

.road-a {
  top: 42%;
  right: -10%;
  left: -10%;
  height: 52px;
  transform: rotate(-8deg);
  background: #d7d1c5;
}

.road-b {
  top: -10%;
  bottom: -10%;
  left: 54%;
  width: 48px;
  transform: rotate(13deg);
  border: 7px solid #faf8f3;
  border-top: 0;
  border-bottom: 0;
  background: #d7d1c5;
}

.road-c {
  right: -10%;
  bottom: 15%;
  left: 6%;
  height: 34px;
  transform: rotate(11deg);
  background: #d7d1c5;
}

.road-d {
  top: 4%;
  bottom: -10%;
  left: 18%;
  width: 26px;
  transform: rotate(-14deg);
  border: 5px solid #faf8f3;
  border-top: 0;
  border-bottom: 0;
  background: #ddd8ce;
}

.map-block {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(178, 138, 99, 0.22);
  background: rgba(178, 138, 99, 0.12);
}

.block-a {
  top: 8%;
  left: 25%;
  width: 20%;
  height: 25%;
  transform: rotate(-4deg);
}

.block-b {
  top: 49%;
  right: 8%;
  width: 27%;
  height: 22%;
  transform: rotate(8deg);
}

.block-c {
  bottom: 6%;
  left: 26%;
  width: 18%;
  height: 20%;
  transform: rotate(7deg);
}

.map-park {
  position: absolute;
  z-index: 1;
  top: 11%;
  right: 8%;
  display: grid;
  width: 25%;
  height: 24%;
  place-items: center;
  border-radius: 45% 52% 44% 56%;
  background: #cdd8c9;
  color: #6d7e6d;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.map-label {
  position: absolute;
  z-index: 3;
  color: #878980;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-a {
  top: 45%;
  right: 13%;
  transform: rotate(-8deg);
}

.label-b {
  top: 47%;
  left: 50%;
  transform: rotate(103deg);
}

.map-pin {
  position: absolute;
  z-index: 5;
  top: 44%;
  left: 49%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-pin > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 5px solid rgba(250, 248, 243, 0.9);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  background: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(41, 45, 41, 0.16);
  color: var(--background);
}

.map-pin svg {
  width: 29px;
  height: 29px;
  transform: rotate(45deg);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.map-pin p {
  margin: 0;
  padding: 8px 11px;
  border-radius: 6px;
  background: rgba(250, 248, 243, 0.9);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.map-pin small {
  color: var(--text-secondary);
  font-weight: 400;
}

.final-cta {
  padding-bottom: calc(var(--section-space) + 12px);
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px);
  align-items: end;
  border-radius: 20px;
  background: var(--primary-surface);
  grid-template-columns: 1fr auto;
  gap: 56px;
}

.cta-panel h2 {
  margin-bottom: 18px;
}

.cta-panel > div > p:last-child {
  max-width: 510px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-decoration {
  position: absolute;
  top: -30px;
  right: 10%;
  width: 220px;
  height: 220px;
  transform: rotate(-14deg);
  color: rgba(79, 107, 82, 0.09);
}

.cta-decoration svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.site-footer {
  padding-top: 72px;
  background: var(--rice-cream);
}

.footer-main {
  display: grid;
  padding-bottom: 72px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.footer-brand > p {
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.2fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links > div > p {
  margin-bottom: 10px;
  color: var(--text-disabled);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links address,
.footer-links span {
  color: var(--text-secondary);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

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

.footer-visit address {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  color: var(--text-disabled);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.signin-page {
  min-height: 100vh;
  background: var(--background);
}

.signin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
}

.signin-story {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: clamp(40px, 5vw, 72px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--primary-surface);
}

.signin-story::before {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(79, 107, 82, 0.12);
  border-radius: 50%;
  content: "";
}

.signin-story::after {
  position: absolute;
  right: 65px;
  bottom: 36px;
  width: 160px;
  height: 260px;
  transform: rotate(28deg);
  border-right: 1px solid rgba(79, 107, 82, 0.14);
  border-radius: 50%;
  content: "";
}

.signin-brand {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.signin-story-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-block: auto;
  padding-block: 72px;
}

.signin-story-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 68px);
}

.signin-story-copy > p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.signin-order-summary {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 520px;
  padding-block: 20px;
  border-top: 1px solid rgba(79, 107, 82, 0.2);
  border-bottom: 1px solid rgba(79, 107, 82, 0.2);
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.signin-order-summary > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.signin-order-summary span {
  color: var(--text-secondary);
  font-size: 11px;
}

.signin-order-summary strong {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
}

.signin-location {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 72px;
  margin: 0;
  color: var(--primary-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.signin-form-panel {
  display: grid;
  min-height: 100vh;
  padding: clamp(40px, 6vw, 96px);
  place-items: center;
}

.signin-form-wrap {
  width: min(100%, 470px);
}

.back-link {
  display: inline-flex;
  margin-bottom: clamp(64px, 10vh, 112px);
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.back-link:hover {
  color: var(--primary);
}

.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.signin-heading {
  margin-bottom: 36px;
}

.signin-heading > p {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signin-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.5vw, 44px);
}

.signin-heading > span {
  color: var(--text-secondary);
  font-size: 13px;
}

.signin-heading a,
.signin-terms a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(79, 107, 82, 0.35);
  text-underline-offset: 3px;
}

.signin-form {
  display: grid;
  gap: 22px;
}

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

.form-field label,
.field-label-row {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-label-row button {
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}

.form-field input {
  width: 100%;
  height: 50px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: 0;
  background: var(--background);
  color: var(--text);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: var(--text-disabled);
}

.form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 107, 82, 0.12);
}

.form-options {
  display: flex;
  margin-top: -4px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 12px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
}

.form-options > a {
  color: var(--primary);
}

.signin-message {
  min-height: 20px;
  margin: -6px 0;
  color: var(--primary);
  font-size: 12px;
}

.signin-submit {
  width: 100%;
}

.signin-submit:disabled {
  background: var(--primary-soft);
  cursor: wait;
}

.signin-terms {
  margin: 24px 0 0;
  color: var(--text-disabled);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --page-gutter: 40px;
    --section-space: 112px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    gap: 48px;
  }

  .hero-proof {
    margin-top: 52px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .product {
    grid-column: auto;
  }

  .product-image {
    aspect-ratio: 1.15;
  }

  .quality-grid,
  .store-grid {
    gap: 72px;
  }

  .moments-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 56px;
  }

  .moments-image {
    min-height: 560px;
  }

  .facility-strip {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 32px;
    --section-space: 96px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }

  .header-controls {
    gap: 4px;
  }

  .cart-trigger {
    z-index: 3;
    border-color: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1.5px;
    background: var(--primary-dark);
    transition: transform 250ms var(--ease);
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    padding: 112px var(--page-gutter) 48px;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav ul a {
    display: block;
    padding-block: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-serif);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 400;
  }

  .site-nav ul a::after {
    display: none;
  }

  .nav-order {
    width: 100%;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 64px 80px;
    align-items: center;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual {
    height: 560px;
    min-height: 0;
  }

  .intro-heading {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .intro-heading > div {
    display: block;
  }

  .intro-heading h2 {
    margin-bottom: 24px;
  }

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

  .value,
  .value:first-child {
    display: grid;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    border-left: 0;
    grid-template-columns: 64px 0.75fr 1.2fr;
    gap: 24px;
  }

  .value-number {
    display: none;
  }

  .value svg,
  .value h3,
  .value p {
    margin: 0;
  }

  .quality-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .quality-visual {
    width: 80%;
  }

  .quality-copy {
    width: 80%;
    margin-left: auto;
  }

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

  .facility-strip span {
    justify-content: flex-start;
  }

  .facility-strip span:nth-child(3) {
    border-left: 0;
  }

  .moments-intro {
    margin-left: 0;
  }

  .moments-layout {
    grid-template-columns: 1fr;
  }

  .moments-image {
    min-height: 500px;
    border-radius: 0 20px 20px 0;
  }

  .moment-list {
    padding-left: var(--page-gutter);
  }

  .store-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
  }

  .store-copy > .section-index {
    grid-column: 1 / -1;
  }

  .store-copy > h2 {
    margin: 0;
  }

  .store-card {
    padding-top: 0;
    border-top: 0;
  }

  .map-card {
    min-height: 480px;
  }

  .cta-panel {
    align-items: end;
    grid-template-columns: 1fr;
  }

  .cta-panel > .button-row {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .signin-shell {
    grid-template-columns: 1fr;
  }

  .signin-story {
    min-height: 620px;
  }

  .signin-story-copy {
    padding-block: 88px 56px;
  }

  .signin-form-panel {
    min-height: auto;
    padding-block: 96px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 22px;
    --section-space: 80px;
  }

  html {
    scroll-padding-top: 72px;
  }

  h1 {
    font-size: clamp(42px, 12.3vw, 54px);
  }

  h2 {
    font-size: clamp(34px, 9.6vw, 44px);
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 174px;
  }

  .cart-drawer {
    width: 100%;
    padding: 22px;
  }

  .cart-header {
    padding-bottom: 18px;
  }

  .cart-status {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    text-align: center;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    padding-block: 56px 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-copy .button-row {
    gap: 22px;
  }

  .hero-visual {
    width: calc(100% + var(--page-gutter));
    height: min(126vw, 600px);
  }

  .hero-image-wrap {
    right: 0;
    border-radius: 20px 0 0 0;
  }

  .vertical-note {
    display: none;
  }

  .intro-heading {
    margin-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-heading > div > p {
    font-size: 16px;
  }

  .value,
  .value:first-child {
    padding-block: 28px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .value svg {
    grid-row: span 2;
    width: 32px;
    height: 32px;
  }

  .value p {
    max-width: none;
  }

  .section-heading,
  .experience-heading {
    margin-bottom: 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading > p,
  .experience-heading > div:last-child {
    width: 100%;
  }

  .product-grid {
    display: flex;
    width: calc(100% + var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding-right: var(--page-gutter);
    overflow-x: auto;
    gap: 16px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product {
    width: min(79vw, 340px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-image {
    aspect-ratio: 0.88;
  }

  .section-action {
    margin-top: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .quality-grid {
    gap: 72px;
  }

  .quality-visual,
  .quality-copy {
    width: 100%;
  }

  .quality-visual > img {
    aspect-ratio: 0.96;
  }

  .quality-stamp {
    right: 18px;
    bottom: -34px;
    width: 78px;
    height: 78px;
  }

  .jp-accent {
    display: none;
  }

  .quality-copy .section-index {
    margin-bottom: 28px;
  }

  .quality-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .interior-frame {
    width: calc(100% + (2 * var(--page-gutter)));
    margin-left: calc(-1 * var(--page-gutter));
  }

  .interior-frame > img {
    aspect-ratio: 0.92;
    border-radius: 0;
    object-position: 49% center;
  }

  .facility-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 0;
    padding: 10px 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-strip span {
    min-height: 44px;
    font-size: 11px;
  }

  .facility-strip span:nth-child(3),
  .facility-strip span:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .facility-strip svg {
    width: 18px;
    height: 18px;
  }

  .moments {
    padding-bottom: 0;
  }

  .moments-intro {
    padding-inline: var(--page-gutter);
  }

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

  .moments-image img {
    transform: scale(1.45);
    object-position: 3% center;
  }

  .moment-list {
    padding: 0 var(--page-gutter) 72px;
  }

  .moment {
    padding-block: 26px;
    grid-template-columns: 36px 1fr;
  }

  .moment:hover,
  .moment.active {
    padding-left: 0;
  }

  .store-copy {
    display: block;
  }

  .store-copy > h2 {
    margin-bottom: 44px;
  }

  .store-card {
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .store-card .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .map-card {
    min-height: 400px;
  }

  .map-pin {
    left: 42%;
  }

  .cta-panel {
    min-height: 480px;
    padding: 48px 24px;
    gap: 32px;
  }

  .cta-panel br {
    display: none;
  }

  .cta-panel > .button-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .cta-decoration {
    top: 12px;
    right: -40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

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

  .footer-bottom {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .signin-story {
    min-height: auto;
    padding: 28px 22px 40px;
  }

  .signin-story-copy {
    padding-block: 76px 48px;
  }

  .signin-story-copy h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .signin-story-copy > p:last-child {
    font-size: 15px;
  }

  .signin-location {
    display: none;
  }

  .signin-form-panel {
    padding: 64px 22px 72px;
  }

  .back-link {
    margin-bottom: 64px;
  }

  .signin-heading {
    margin-bottom: 32px;
  }
}

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

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

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