/* Weederland visual system, mobile interaction release. */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@400;500;600;700&family=Instrument+Sans:wdth,wght@75..100,400..700&display=swap");

:root {
  --paper: #f4f0e7;
  --paper-soft: #faf8f2;
  --ink: #111713;
  --ink-soft: #4f5851;
  --line: rgba(17, 23, 19, 0.18);
  --line-strong: rgba(17, 23, 19, 0.5);
  --green: #9be51f;
  --green-bright: #c3ff43;
  --mint: #bcead0;
  --orange: #ff8a4c;
  --forest: #102b20;
  --indigo: #302d52;
  --white: #fffef9;
  --radius: 16px;
  --font: "Instrument Sans", "IBM Plex Sans Thai", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --vh: 1vh;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

button,
a {
  color: inherit;
  font: inherit;
}

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

a {
  text-decoration: none;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.site {
  position: relative;
  height: 100vh;
  height: calc(var(--vh) * 100);
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  isolation: isolate;
}

.pixel-grid,
.noise,
.scanlines,
.vignette,
.status-rail,
.smoke,
.offer-pop {
  display: none !important;
}

.scroll-joint {
  --joint-angle: -62deg;
  --joint-scale: 0.54;
  --joint-x: 18vw;
  --joint-y: -26vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 38;
  width: clamp(42px, 3.8vw, 58px);
  height: clamp(188px, 28vh, 270px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--joint-x), var(--joint-y), 0) rotate(var(--joint-angle)) scale(var(--joint-scale));
  transform-origin: 50% 50%;
  transition: opacity 150ms ease;
  filter: drop-shadow(0 14px 18px rgba(17, 23, 19, 0.34));
}

.joint-cutout {
  position: absolute;
  inset: -2% 9%;
  background: url("/assets/site/raw-shop-joint.jpg") center / 122% 100% no-repeat;
  clip-path: polygon(50% 0%, 63% 2%, 68% 14%, 72% 36%, 75% 58%, 70% 84%, 62% 97%, 48% 100%, 35% 97%, 29% 84%, 27% 58%, 31% 36%, 34% 14%, 38% 2%);
  filter: saturate(0.82) contrast(1.08) brightness(0.9);
}

.joint-cutout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
}

.joint-ember {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff7043;
  box-shadow: 0 0 0 3px #ffb13b, 0 0 14px rgba(255, 112, 67, 0.72);
  transform: translateX(-50%);
  animation: jointEmberPulse 1.5s ease-in-out infinite;
}

.joint-smoke {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 62px;
  height: 90px;
  transform: translateX(-50%) rotate(12deg);
  opacity: 0.32;
}

.joint-smoke i {
  position: absolute;
  bottom: 0;
  width: 13px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(225, 233, 226, 0.42), transparent);
  filter: blur(9px);
  animation: smokeRise 3.2s ease-in-out infinite;
}

.joint-smoke i:nth-child(2) {
  left: 24px;
  animation-delay: 0.5s;
  animation-duration: 3.7s;
}

.joint-smoke i:nth-child(3) {
  left: 46px;
  animation-delay: 1s;
  animation-duration: 4.1s;
}

@keyframes jointEmberPulse {
  0%, 100% { transform: translateX(-50%) scale(0.88); opacity: 0.78; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

@keyframes smokeRise {
  0% { opacity: 0; transform: translate3d(0, 8px, 0) scale(0.84); }
  35% { opacity: 0.5; }
  100% { opacity: 0; transform: translate3d(8px, -30px, 0) scale(1.18); }
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 231, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-chip {
  justify-self: start;
  width: clamp(150px, 15vw, 210px);
}

.brand-chip img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(1.75) contrast(1.38) brightness(0.82) drop-shadow(0 2px 0 rgba(17, 23, 19, 0.32));
  mix-blend-mode: multiply;
}

.lang-toggle {
  justify-self: center;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  width: 96px;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
}

.lang-toggle button {
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-toggle button.active {
  color: var(--ink);
  background: var(--green-bright);
}

.quick-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-chip {
  display: none;
}

.quick-actions a,
.contact-actions a,
.branch-actions a,
.store-reel-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.quick-actions a,
.mobile-actions a {
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 0 3px 0 rgba(17, 23, 19, 0.18);
}

.quick-actions a:nth-of-type(1),
.mobile-actions a:nth-of-type(1) {
  background: var(--green-bright);
}

.quick-actions a:nth-of-type(2),
.mobile-actions a:nth-of-type(2) {
  background: #ff9a62;
}

.quick-actions a:nth-of-type(3),
.mobile-actions a:nth-of-type(3) {
  background: var(--mint);
}

.quick-actions a:nth-of-type(4),
.mobile-actions a:nth-of-type(4) {
  background: #dcd5ff;
}

.branch-actions a:hover,
.store-reel-actions a:hover {
  color: var(--paper-soft);
  border-color: var(--ink);
  background: var(--ink);
}

.quick-actions .fb-action,
.contact-actions .fb-action {
  color: inherit;
}

.quick-actions a:hover,
.mobile-actions a:hover {
  color: var(--ink);
  border-color: var(--ink);
  filter: saturate(1.12) brightness(0.96);
  transform: translateY(-1px);
}

.section-rail {
  --rail-accent: var(--green);
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  display: flex;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.94);
  box-shadow: 0 10px 35px rgba(17, 23, 19, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-rail::before,
.section-rail::after {
  display: none;
}

.section-rail button {
  position: relative;
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: #697169;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.section-rail button span {
  display: none;
}

.section-rail button b {
  font: inherit;
}

.section-rail button.active {
  color: var(--ink);
  background: var(--rail-accent);
}

.hero,
.branch-slide,
.store-reel,
.counter-slide,
.proof-slide,
.care-slide,
.contact-slide {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh) * 100);
  scroll-snap-align: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  max-width: 1720px;
  margin: 0 auto;
  padding: 116px clamp(34px, 5vw, 86px) 86px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 94px clamp(22px, 3.5vw, 58px) 58px;
  border: 1px solid var(--ink);
  border-radius: 36px;
  background: #e5f6d7;
  box-shadow: 10px 10px 0 var(--ink);
}

.hero::after {
  content: "WEEDERLAND";
  position: absolute;
  z-index: -1;
  left: clamp(40px, 5vw, 86px);
  bottom: 53px;
  color: rgba(17, 23, 19, 0.055);
  font-size: clamp(72px, 12vw, 190px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.7;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.kicker-row,
.branch-eyebrow,
.store-reel-eyebrow,
.counter-eyebrow,
.proof-kicker,
.care-eyebrow,
.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 22px;
  height: 4px;
  border-radius: 0;
  background: var(--green);
  box-shadow: none;
  transform: rotate(-4deg);
}

.hero-title,
.branch-title,
.store-reel-title,
.counter-title,
.proof-title,
.care-title,
.contact-title {
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(48px, 6vw, 86px);
  font-stretch: 90%;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: none;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(54px, 6.2vw, 92px);
}

.hero-title > span {
  display: block;
}

.hero-title-accent {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--green-bright);
  text-decoration-thickness: 0.17em;
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}

.hero-title .thin,
.branch-title span,
.store-reel-title span,
.counter-title span,
.proof-title span,
.care-title span,
.contact-title span {
  display: block;
}

.hero-title .thin {
  max-width: 21ch;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-line,
.branch-intro,
.store-reel-intro,
.counter-intro,
.proof-intro,
.care-intro,
.contact-intro {
  max-width: 580px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.copy-flip {
  display: block;
  min-height: 5.2em;
}

.copy-flip .copy-main {
  display: block;
}

.copy-flip .copy-alt {
  display: none;
}

body.lit .copy-flip .copy-main {
  display: none;
}

body.lit .copy-flip .copy-alt {
  display: block;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.meta-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 254, 249, 0.42);
  font-size: 12px;
  font-weight: 650;
}

.meta-pill.hot {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--green-bright);
}

.hero-control-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-primary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--green-bright);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-primary::after {
  content: "↗";
  margin-left: 14px;
}

.hero-primary:hover {
  transform: translateY(-2px);
  background: #ff9a62;
  box-shadow: 5px 7px 0 var(--ink);
}

.light-control {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.light-face {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  transition: transform 160ms ease, background 160ms ease;
}

.light-face::before {
  content: "↻";
  font-size: 17px;
}

.light-control:hover .light-face {
  transform: translateY(-2px);
}

.joint-strip {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: none;
}

.joint-strip::before {
  display: none;
}

.light-copy {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.ember {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.lit .ember {
  opacity: 1;
  transform: scale(1.45);
}

.mini-note {
  max-width: 210px;
  color: #717970;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-object {
  position: relative;
  z-index: 2;
  min-height: min(680px, 74vh);
  display: grid;
  place-items: center;
  cursor: grab;
  isolation: isolate;
}

.hero-object:active {
  cursor: grabbing;
}

.hero-photo-frame {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: var(--forest);
  box-shadow: 12px 12px 0 rgba(17, 23, 19, 0.18);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 43, 32, 0.42);
}

.hero-store-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.hero-place-stamp,
.hero-age-stamp {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--ink);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(17, 23, 19, 0.35);
}

.hero-place-stamp {
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--green-bright);
  transform: rotate(-2deg);
}

.hero-place-stamp span {
  padding-right: 12px;
  border-right: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-place-stamp b {
  font-size: 12px;
  font-weight: 700;
}

.hero-age-stamp {
  right: 22px;
  bottom: 22px;
  width: 98px;
  height: 98px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--paper-soft);
  text-align: center;
  transform: rotate(4deg);
}

.hero-age-stamp strong {
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-age-stamp span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-wrap {
  position: relative;
  z-index: 2;
  width: min(720px, 49vw);
  height: min(550px, 63vh);
  display: grid;
  place-items: center;
  touch-action: none;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.34));
}

#logo-canvas,
.hero-logo-static {
  grid-area: 1 / 1;
}

#logo-canvas {
  width: 100%;
  height: 100%;
}

.hero-logo-static {
  width: min(78%, 470px);
  max-height: 70%;
  object-fit: contain;
  opacity: 0;
  filter: saturate(1.85) contrast(1.4) brightness(0.78) drop-shadow(0 8px 4px rgba(0, 0, 0, 0.42));
  transition: opacity 240ms ease;
}

.model-wrap.fallback .hero-logo-static {
  opacity: 1;
}

.model-wrap.fallback #logo-canvas {
  opacity: 0;
}

.model-wrap.ready .hero-logo-static {
  opacity: 0;
}

.spin-hint {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper-soft);
  border-color: rgba(250, 248, 242, 0.52);
  background: rgba(16, 43, 32, 0.74);
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
  transform: none;
  transition: opacity 200ms ease;
}

.model-wrap.ready + .spin-hint {
  opacity: 1;
}

.spin-hint::before {
  content: "↻";
  font-size: 15px;
}

.branch-slide,
.counter-slide,
.proof-slide,
.care-slide,
.contact-slide,
.store-reel {
  display: grid;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: 120px clamp(24px, 6vw, 96px) 126px;
}

.branch-slide {
  grid-template-columns: minmax(280px, 0.64fr) minmax(620px, 1.36fr);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.branch-copy {
  max-width: 520px;
}

.branch-title,
.store-reel-title,
.counter-title,
.proof-title,
.care-title,
.contact-title {
  font-size: clamp(44px, 5.4vw, 76px);
}

.branch-title span:first-child,
.store-reel-title span:first-child,
.counter-title span:first-child,
.proof-title span:first-child,
.care-title span:first-child,
.contact-title span:first-child {
  color: var(--ink);
}

.branch-title span:last-child,
.store-reel-title span:last-child,
.counter-title span:last-child,
.proof-title span:last-child,
.care-title span:last-child,
.contact-title span:last-child {
  color: var(--ink-soft);
  font-weight: 480;
}

.branch-seo-copy,
.counter-seo-copy,
.contact-seo-copy,
.care-note {
  max-width: 560px;
  margin-top: 15px;
  color: #6d756e;
  font-size: 14px;
  line-height: 1.6;
}

.branch-small {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.branch-small span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.branch-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  transform: none;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(17, 23, 19, 0.12);
}

.branch-photo {
  min-height: 280px;
  background: var(--img) center / cover no-repeat;
  filter: saturate(0.9) contrast(1.02);
  transform: none;
}

.branch-card:nth-child(1) .branch-photo {
  background-position: 50% 50%;
}

.branch-card:nth-child(2) .branch-photo {
  background-position: 48% 38%;
}

.branch-card:nth-child(3) .branch-photo {
  background-position: 48% 42%;
}

.branch-photo::after,
.branch-card::before,
.branch-card::after {
  display: none;
}

.branch-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
}

.branch-number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-soft);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.branch-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.branch-name {
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.branch-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.branch-actions {
  display: flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.branch-actions a:first-child {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--green-bright);
}

.branch-actions a:last-child {
  color: var(--ink);
  border-color: var(--ink);
  background: #dcd5ff;
}

.store-reel {
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr);
  color: var(--paper-soft);
  background: var(--ink);
}

.store-reel-copy {
  max-width: 540px;
}

.store-reel .store-reel-eyebrow,
.store-reel .store-reel-intro,
.store-reel .store-reel-title span:last-child {
  color: rgba(250, 248, 242, 0.62);
}

.store-reel .store-reel-title,
.store-reel .store-reel-title span:first-child {
  color: var(--paper-soft);
}

.store-reel-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(250, 248, 242, 0.18);
  background: rgba(250, 248, 242, 0.18);
}

.store-reel-facts div {
  padding: 16px;
  background: var(--ink);
}

.store-reel-facts dt {
  color: rgba(250, 248, 242, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-reel-facts dd {
  margin-top: 7px;
  color: var(--paper-soft);
  font-size: 14px;
  font-weight: 600;
}

.store-reel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.store-reel-actions a {
  border-color: rgba(250, 248, 242, 0.28);
}

.store-reel-actions a:first-child {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.store-reel-actions a:last-child {
  color: var(--ink);
  border-color: var(--mint);
  background: var(--mint);
}

.store-reel-media {
  display: grid;
  place-items: center;
}

.store-reel-frame {
  position: relative;
  width: min(100%, 760px);
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.26);
  border-radius: 22px;
  background: #050806;
}

.store-reel-frame video {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.store-reel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  border: 0;
  color: var(--white);
  background: rgba(5, 8, 6, 0.38);
  cursor: pointer;
}

.store-reel-play > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(17, 23, 19, 0.72);
}

.store-reel-play strong {
  font-size: 16px;
}

.store-reel-play small {
  color: rgba(255, 255, 255, 0.72);
}

.store-reel-frame.is-playing .store-reel-play {
  display: none;
}

.store-reel-corner {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green-bright);
  font-size: 10px;
  font-weight: 700;
}

.counter-slide {
  grid-template-columns: minmax(520px, 1.15fr) minmax(350px, 0.85fr);
  background: var(--paper);
}

.counter-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
}

.counter-main-photo,
.counter-portrait,
.counter-cat,
.counter-sticker {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  transform: none;
}

.counter-main-photo {
  grid-area: 1 / 1 / 11 / 10;
  background: url("/assets/site/counter-wide.webp") center 44% / cover no-repeat;
}

.counter-portrait {
  grid-area: 2 / 9 / 7 / 13;
  background: url("/assets/site/counter-smile.webp") center 45% / cover no-repeat;
}

.counter-cat {
  grid-area: 8 / 8 / 13 / 12;
  background: url("/assets/site/cat-counter.webp") center 42% / cover no-repeat;
}

.counter-sticker {
  grid-area: 9 / 2 / 13 / 6;
  background: url("/assets/site/door-stickers.webp") center / cover no-repeat;
}

.counter-label {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
}

.counter-copy {
  max-width: 560px;
}

.product-preview-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 116px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-soft);
}

.product-preview-image {
  background: var(--active-product-image, url("/assets/site/product-flower.jpg")) var(--active-product-position, center) / cover no-repeat;
}

.product-preview-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
}

.product-preview-copy strong {
  font-size: 20px;
}

.product-preview-copy span {
  color: var(--ink-soft);
  font-size: 13px;
}

.counter-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.product-chip {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-chip b {
  font-size: 15px;
  font-weight: 650;
}

.product-chip span {
  color: var(--ink-soft);
  font-size: 12px;
}

.product-chip.active {
  border-color: var(--ink);
  background: color-mix(in srgb, var(--chip) 30%, var(--paper-soft));
}

.counter-note {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.proof-slide {
  grid-template-columns: minmax(340px, 0.68fr) minmax(620px, 1.32fr);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--paper-soft);
  background: var(--forest);
  isolation: isolate;
}

.proof-slide::before {
  content: "5.0";
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(255, 254, 249, 0.045);
  font-size: clamp(270px, 35vw, 560px);
  font-weight: 750;
  letter-spacing: -0.11em;
  line-height: 0.75;
  pointer-events: none;
}

.proof-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.proof-slide .proof-kicker,
.proof-slide .proof-intro {
  color: rgba(250, 248, 242, 0.68);
}

.proof-slide .proof-title span:first-child {
  color: var(--paper-soft);
}

.proof-slide .proof-title span:last-child {
  color: var(--green-bright);
  font-weight: 620;
}

.proof-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.28);
  border-radius: 18px;
  background: rgba(250, 248, 242, 0.04);
}

.proof-stat {
  padding: 18px 14px;
  border-right: 1px solid rgba(250, 248, 242, 0.22);
}

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

.proof-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.proof-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(250, 248, 242, 0.58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.review-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 700;
}

.review-link:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--green-bright);
  transform: translateY(-2px);
}

.google-review-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(230px, 0.78fr);
  grid-template-rows: auto repeat(3, minmax(116px, auto)) auto;
  gap: 12px;
  perspective: 1000px;
}

.google-review-header,
.review-card,
.review-disclaimer {
  border: 1px solid rgba(17, 23, 19, 0.92);
  border-radius: 20px;
  background: var(--paper-soft);
}

.google-review-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 8px;
  border: 0;
  color: var(--paper-soft);
  background: transparent;
}

.google-review-header span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-review-header strong {
  color: var(--green-bright);
  letter-spacing: 0.08em;
}

.review-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.22);
}

.review-card:nth-of-type(1) {
  grid-row: 2 / 5;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 30px;
  background: var(--green-bright);
  transform: rotate(-1.25deg);
}

.review-card:nth-of-type(2) {
  background: var(--paper-soft);
  transform: rotate(0.8deg);
}

.review-card:nth-of-type(3) {
  background: var(--mint);
  transform: rotate(-0.8deg);
}

.review-card:nth-of-type(4) {
  background: #ffd1b8;
  transform: rotate(1deg);
}

.review-card blockquote {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.review-card:nth-of-type(1) blockquote {
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.review-card:nth-of-type(1) blockquote::before {
  content: "“";
  display: block;
  height: 0.55em;
  font-size: 2.2em;
  line-height: 0.7;
}

.review-card cite {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.review-disclaimer {
  grid-column: 1 / -1;
  padding: 8px 4px 0;
  border: 0;
  color: rgba(250, 248, 242, 0.48);
  background: transparent;
  font-size: 11px;
  line-height: 1.5;
}

.care-slide {
  grid-template-columns: minmax(360px, 0.76fr) minmax(600px, 1.24fr);
  overflow: hidden;
  background: #f0edff;
}

.care-copy {
  position: relative;
  max-width: 600px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--ink);
  border-radius: 32px;
  color: var(--paper-soft);
  background: var(--indigo);
  box-shadow: 12px 12px 0 var(--green-bright);
  transform: rotate(-0.7deg);
}

.care-copy .care-eyebrow,
.care-copy .care-intro,
.care-copy .care-note {
  color: rgba(250, 248, 242, 0.7);
}

.care-copy .care-title span:first-child {
  color: var(--paper-soft);
}

.care-copy .care-title span:last-child {
  color: var(--mint);
  font-weight: 600;
}

.thai-flag {
  width: 18px;
  height: 12px;
  border-top: 3px solid #a51931;
  border-bottom: 3px solid #a51931;
  background: #2d2a4a;
  box-shadow: inset 0 2px 0 #fff, inset 0 -2px 0 #fff;
}

.thai-flag i {
  display: none;
}

.care-pass {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 3px 20px;
  margin-top: 30px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: var(--green-bright);
  transform: rotate(1.4deg);
}

.care-pass::before,
.care-pass::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--indigo);
  transform: translateY(-50%);
}

.care-pass::before {
  left: -12px;
}

.care-pass::after {
  right: -12px;
}

.care-pass > span {
  align-self: start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-pass strong {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: clamp(62px, 6vw, 88px);
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.care-pass small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.care-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.care-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  background: color-mix(in srgb, var(--care) 58%, var(--paper-soft));
  box-shadow: 6px 6px 0 rgba(17, 23, 19, 0.12);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.care-card:first-child {
  grid-column: 1 / -1;
  min-height: 152px;
  background: var(--paper-soft);
}

.care-card:hover {
  z-index: 2;
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 9px 9px 0 rgba(17, 23, 19, 0.16);
}

.care-card::before {
  content: attr(data-step);
  width: max-content;
  height: auto;
  display: block;
  margin-bottom: 24px;
  padding: 5px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--care);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.care-card::after {
  display: none;
}

.care-card > div {
  padding: 0;
}

.care-card h3 {
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 680;
  letter-spacing: -0.025em;
}

.care-card p {
  max-width: 680px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.contact-slide {
  grid-template-columns: minmax(350px, 0.82fr) minmax(460px, 1.18fr);
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100vh;
  height: calc(var(--vh) * 100);
  min-height: 700px;
  align-items: stretch;
  column-gap: clamp(28px, 5vw, 76px);
  row-gap: 14px;
  padding: 94px clamp(24px, 5vw, 82px) 24px;
  overflow: hidden;
  color: var(--paper-soft);
  background: var(--ink);
}

.contact-copy {
  max-width: 600px;
  align-self: center;
}

.contact-slide .contact-eyebrow,
.contact-slide .contact-intro,
.contact-slide .contact-seo-copy,
.contact-slide .contact-title span:last-child {
  color: rgba(250, 248, 242, 0.64);
}

.contact-slide .contact-title,
.contact-slide .contact-title span:first-child {
  color: var(--paper-soft);
}

.contact-details {
  margin-top: 24px;
  border-top: 1px solid rgba(250, 248, 242, 0.28);
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(250, 248, 242, 0.28);
}

.contact-row > span {
  color: rgba(250, 248, 242, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row strong {
  font-size: 15px;
  font-weight: 560;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-actions a {
  border-color: rgba(250, 248, 242, 0.32);
}

.contact-actions a:first-child {
  color: var(--ink);
  border-color: var(--green-bright);
  background: var(--green-bright);
}

.contact-actions a:nth-child(2) {
  color: var(--ink);
  border-color: var(--mint);
  background: var(--mint);
}

.contact-actions a:nth-child(3) {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.contact-art-wrap {
  position: relative;
  height: min(68vh, 680px);
  min-height: 0;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.32);
  border-radius: 30px;
  box-shadow: 12px 12px 0 rgba(195, 255, 67, 0.12);
  transform: rotate(0.45deg);
}

.contact-art-glow {
  display: none;
}

.contact-art {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.82) contrast(1.08);
}

.contact-art-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -120px 90px rgba(16, 43, 32, 0.4);
  pointer-events: none;
}

.contact-art-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(250, 248, 242, 0.65);
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(16, 43, 32, 0.82);
  backdrop-filter: blur(10px);
}

.contact-art-caption span {
  padding-right: 12px;
  border-right: 1px solid rgba(250, 248, 242, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-art-caption strong {
  font-size: 11px;
}

.site-footer {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, auto) minmax(240px, 1fr);
  align-items: end;
  gap: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 248, 242, 0.26);
}

.footer-main {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-brand {
  font-size: 14px;
}

.copyright-text,
.credit-link,
.footer-law {
  grid-column: 3;
  color: rgba(250, 248, 242, 0.56);
  font-size: 11px;
}

.footer-law {
  max-width: 500px;
  justify-self: end;
  line-height: 1.5;
  text-align: right;
}

.mobile-actions {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 48;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--ink);
  border-radius: 17px;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) rotate(2deg);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms var(--ease), background 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(2deg);
}

.back-to-top:hover {
  background: var(--green-bright);
  transform: translateY(-3px) rotate(-1deg);
}

.back-top-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--green-bright);
  background: var(--ink);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.back-top-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.back-top-copy b {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.back-top-copy small {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.1;
  opacity: 0.7;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--mint);
  transition: opacity 360ms ease, visibility 360ms ease;
}

.age-gate.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-panel {
  position: relative;
  width: min(100%, 620px);
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-soft);
  box-shadow: 12px 12px 0 var(--ink);
  text-align: center;
}

.age-lang {
  position: absolute;
  top: 20px;
  right: 20px;
}

.age-logo {
  width: min(88%, 380px);
  max-height: 132px;
  margin: 8px auto 24px;
  object-fit: contain;
  filter: saturate(1.75) contrast(1.38) brightness(0.82) drop-shadow(0 3px 0 rgba(17, 23, 19, 0.28));
  mix-blend-mode: multiply;
}

.age-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--green-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-title {
  max-width: 10ch;
  margin: 22px auto 0;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.age-copy {
  max-width: 430px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.age-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 28px;
}

.age-btn {
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.age-btn.yes {
  background: var(--green-bright);
}

.age-btn:hover {
  color: var(--paper-soft);
  background: var(--ink);
}

.age-note {
  margin-top: 18px;
  color: #747b75;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(330px, 0.85fr) minmax(430px, 1.15fr);
  }

  .branch-slide,
  .counter-slide {
    grid-template-columns: 1fr;
  }

  .branch-copy,
  .counter-copy {
    max-width: 720px;
  }

  .proof-slide {
    grid-template-columns: minmax(280px, 0.65fr) minmax(500px, 1.35fr);
    gap: 38px;
    padding-right: 46px;
    padding-left: 46px;
  }

  .care-slide {
    grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
    gap: 38px;
    padding-right: 46px;
    padding-left: 46px;
  }

  .branch-grid {
    width: 100%;
  }

  .counter-stage {
    min-height: 620px;
  }
}

@media (min-width: 981px) and (max-height: 780px) {
  .hero {
    padding-top: 94px;
    padding-bottom: 72px;
  }

  .hero::before {
    top: 88px;
    bottom: 68px;
  }

  .hero::after {
    bottom: 61px;
  }

  .hero-title {
    font-size: clamp(48px, 5.2vw, 70px);
  }

  .hero-title .thin {
    margin-top: 10px;
    font-size: 22px;
  }

  .hero-line {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-meta {
    margin-top: 18px;
  }

  .hero-control-row {
    margin-top: 22px;
  }

  .hero-object,
  .model-wrap {
    min-height: 460px;
    height: 460px;
  }

  .care-card {
    min-height: 126px;
    padding: 16px;
  }

  .care-card:first-child {
    min-height: 108px;
  }

  .care-card::before {
    margin-bottom: 12px;
  }

  .care-card h3 {
    font-size: 18px;
  }

  .care-card p {
    font-size: 12px;
  }

  .contact-slide {
    column-gap: 34px;
    row-gap: 10px;
    padding-top: 86px;
    padding-bottom: 16px;
  }

  .contact-title {
    font-size: 54px;
  }

  .contact-intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .contact-seo-copy {
    display: none;
  }

  .contact-details {
    margin-top: 16px;
  }

  .contact-row {
    padding: 9px 0;
  }

  .contact-actions {
    margin-top: 14px;
  }

  .contact-art-wrap {
    height: calc(100vh - 152px);
    max-height: 580px;
  }

  .site-footer {
    padding-top: 12px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 18px;
  }

  .brand-chip {
    width: 152px;
  }

  .brand-chip img {
    height: 36px;
  }

  .topbar > .lang-toggle {
    justify-self: end;
  }

  .quick-actions {
    display: none;
  }

  .section-rail {
    display: none;
  }

  .scroll-joint {
    display: none;
  }

  .hero,
  .branch-slide,
  .store-reel,
  .counter-slide,
  .proof-slide,
  .care-slide,
  .contact-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 96px 22px 84px;
  }

  .hero {
    min-height: 100vh;
    gap: 24px;
    padding-top: 104px;
  }

  .hero::before {
    inset: 76px 12px 48px;
    border-radius: 26px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero::after {
    left: 24px;
    bottom: 46px;
    font-size: 120px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(48px, 11vw, 78px);
  }

  .hero-line {
    max-width: 640px;
  }

  .copy-flip {
    min-height: auto;
  }

  .hero-object {
    min-height: 400px;
  }

  .model-wrap {
    width: min(680px, 94vw);
    height: 390px;
    pointer-events: none;
    touch-action: pan-y;
  }

  #logo-canvas {
    pointer-events: none;
  }

  .hero-object {
    cursor: default;
  }

  .spin-hint {
    pointer-events: auto;
    touch-action: manipulation;
  }

  .branch-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    padding: 0 0 16px;
    scroll-snap-type: x mandatory;
  }

  .branch-card {
    min-height: 480px;
    scroll-snap-align: start;
  }

  .store-reel-media {
    grid-row: 1;
  }

  .store-reel-frame,
  .store-reel-frame video {
    min-height: 540px;
    height: 540px;
  }

  .counter-stage {
    min-height: 540px;
  }

  .google-review-board {
    max-width: 820px;
  }

  .contact-art-wrap,
  .contact-art {
    min-height: 500px;
  }

  .contact-slide {
    height: auto;
    overflow: visible;
  }

  .site-footer {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .footer-main,
  .footer-law {
    grid-column: auto;
  }

  .footer-law {
    justify-self: start;
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(250, 248, 242, 0.95);
    box-shadow: 0 10px 30px rgba(17, 23, 19, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    min-height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-actions a:first-child {
    background: var(--green-bright);
  }

  .back-to-top {
    right: 14px;
    bottom: 72px;
    width: 50px;
    min-height: 50px;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .back-top-arrow {
    width: 38px;
    height: 38px;
  }

  .back-top-copy {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero,
  .branch-slide,
  .store-reel,
  .counter-slide,
  .proof-slide,
  .care-slide,
  .contact-slide {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-bottom: 76px;
  }

  .hero::after {
    display: none;
  }

  .hero::before {
    inset: 74px 8px 44px;
    border-radius: 24px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero-copy {
    display: contents;
  }

  .hero .kicker-row {
    order: 1;
  }

  .hero-title-wrap {
    order: 2;
  }

  .hero-object {
    order: 3;
    min-height: 300px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .hero-photo-frame {
    border-radius: 22px;
  }

  .hero-place-stamp {
    top: 14px;
    left: 14px;
  }

  .hero-age-stamp {
    right: 12px;
    bottom: 12px;
    width: 78px;
    height: 78px;
  }

  .hero-age-stamp strong {
    font-size: 24px;
  }

  .hero-line {
    order: 4;
  }

  .hero-meta {
    order: 5;
  }

  .hero-control-row {
    display: none;
  }

  .kicker-row,
  .branch-eyebrow,
  .store-reel-eyebrow,
  .counter-eyebrow,
  .proof-kicker,
  .care-eyebrow,
  .contact-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-title .thin {
    font-size: 20px;
  }

  .hero-line,
  .branch-intro,
  .store-reel-intro,
  .counter-intro,
  .proof-intro,
  .care-intro,
  .contact-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-control-row {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 26px;
  }

  .model-wrap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 170px;
    height: 96px;
    filter: drop-shadow(0 9px 8px rgba(0, 0, 0, 0.4));
  }

  .spin-hint {
    top: 14px;
    right: 14px;
    bottom: auto;
    left: auto;
    z-index: 6;
    padding: 9px 12px;
    border-color: var(--ink);
    color: var(--ink);
    background: var(--orange);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .branch-title,
  .store-reel-title,
  .counter-title,
  .proof-title,
  .care-title,
  .contact-title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .branch-grid {
    margin-right: -18px;
  }

  .branch-card {
    min-height: 460px;
  }

  .branch-photo {
    min-height: 250px;
  }

  .store-reel-facts {
    grid-template-columns: 1fr;
  }

  .proof-stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-stat {
    padding: 14px 9px;
    border-right: 1px solid rgba(250, 248, 242, 0.22);
    border-bottom: 0;
  }

  .proof-stat strong {
    font-size: 24px;
  }

  .proof-stat span {
    font-size: 8px;
  }

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

  .store-reel-frame,
  .store-reel-frame video {
    min-height: 460px;
    height: 460px;
  }

  .counter-stage {
    min-height: 420px;
  }

  .counter-main-photo {
    grid-area: 1 / 1 / 10 / 11;
  }

  .counter-portrait {
    grid-area: 2 / 9 / 7 / 13;
  }

  .counter-cat {
    grid-area: 8 / 8 / 13 / 13;
  }

  .counter-sticker {
    grid-area: 9 / 2 / 13 / 7;
  }

  .product-preview-card {
    grid-template-columns: 92px 1fr;
  }

  .counter-products,
  .google-review-board {
    grid-template-columns: 1fr;
  }

  .google-review-board {
    grid-template-rows: none;
  }

  .review-card:nth-of-type(1) {
    grid-row: auto;
    min-height: 300px;
  }

  .google-review-header,
  .review-disclaimer {
    grid-column: auto;
  }

  .care-copy {
    padding: 30px 24px;
    box-shadow: 7px 7px 0 var(--green-bright);
    transform: none;
  }

  .care-panel {
    grid-template-columns: 1fr;
  }

  .care-card,
  .care-card:first-child {
    grid-column: auto;
    min-height: 180px;
  }


  .contact-row {
    grid-template-columns: 76px 1fr;
  }

  .contact-art-wrap {
    height: 340px;
    min-height: 340px;
  }

  .contact-art {
    min-height: 0;
    object-position: center 84%;
  }

  .age-gate {
    padding: 14px;
  }

  .age-panel {
    padding: 68px 22px 30px;
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .age-lang {
    top: 14px;
    right: 14px;
  }

  .age-logo {
    width: 92%;
    margin-bottom: 18px;
  }

  .age-actions {
    grid-template-columns: 1fr;
  }
}

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

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

  .scroll-joint {
    display: none;
  }
}
