/* Sandoll 삼립호빵체 Basic · SIL Open Font License 1.1 */
@font-face {
  font-family: "Sandoll Samlip Hobbang";
  src: url("./assets/fonts/SDSamliphopangche_Basic.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./assets/fonts/Pretendard-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./assets/fonts/Pretendard-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./assets/fonts/Pretendard-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./assets/fonts/Pretendard-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --text: #363636;
  --muted: #767676;
  --line: #ddddda;
  --gold: #c9a25d;
  --violet: #7463d8;
  --rose: #d78490;
  --header-height: 112px;
  --footer-height: 350px;
  --footer-bg: #ffffff;
  --footer-ink: #111111;
  --title: "Sandoll Samlip Hobbang", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --serif: var(--title);
  --sans: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--footer-bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
  background: var(--white);
}

body.modal-open,
body.menu-open,
html.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  text-decoration: none;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(24px, 3.2vw, 62px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-hero {
  color: var(--white);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-header:not(.is-hero) {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.025);
}

.brand-link {
  width: clamp(138px, 9vw, 174px);
  line-height: 0;
}

.brand-link img {
  width: 100%;
  height: auto;
  transition: filter 0.35s ease;
}

.site-header.is-hero .brand-link img {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 2.3vw, 52px);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 7px 0;
  background: currentColor;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.58);
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 200;
  width: min(86vw, 360px);
  padding: 26px 28px 34px;
  color: var(--ink);
  background: var(--white);
  transform: translateX(-105%);
  transition: transform 0.55s var(--ease-out);
}

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

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.mobile-menu-head button {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-head svg,
.dialog-close svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.mobile-menu nav {
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mobile-menu nav span {
  color: var(--gold);
  font-size: 10px;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--gold);
}

.mobile-menu > p {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: #707070;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  background: #707070;
}

.hero-copy {
  position: absolute;
  bottom: clamp(112px, 15vh, 170px);
  left: clamp(28px, 8.4vw, 160px);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.1vw, 88px);
  font-weight: 400;
  line-height: 1.23;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
  margin: 28px 0 0 4px;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(11px, 0.95vw, 16px);
  font-weight: 600;
  letter-spacing: 0.3em;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  animation: cue-bounce 2s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.brand-section,
.collection-section,
.news-section {
  background: var(--white);
}

.subpage-main {
  min-height: 100svh;
  padding-top: var(--header-height);
}

.subpage-main > section {
  min-height: calc(100svh - var(--header-height));
}

.bottle-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: clamp(220px, 23vw, 360px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.bottle-rail > div {
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.bottle-rail > div:last-child {
  border-right: 0;
}

.bottle-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 69%;
  transform: scale(1.03);
}

.bottle-rail--products > div {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--rail-surface, #f5f3ee);
}

.bottle-rail--products img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1vw, 16px);
  object-fit: contain;
  object-position: center;
  transform: none;
}

.story-intro,
.section-heading {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(96px, 9vw, 160px) 30px;
  text-align: center;
}

.story-intro h1,
.section-heading h1,
.story-copy h2,
.news-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.story-intro h1,
.section-heading h1 {
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 1.25;
}

.story-intro > p {
  margin: 28px 0 0;
  color: #4f4f4f;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.9;
}

.story-intro small {
  display: block;
  margin-top: 26px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(72vw, 780px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-image {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image--official {
  position: relative;
  background: #f3e8e8;
}

.story-image--official::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  background: #e9edf8;
  content: "";
}

.story-image--official img {
  position: absolute;
  bottom: 3%;
  z-index: 1;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(67, 45, 48, 0.16));
}

.story-art-product--front {
  left: 62%;
  height: 84%;
  transform: translateX(-50%);
}

.story-art-product--back {
  left: 34%;
  height: 70%;
  opacity: 0.8;
  transform: translateX(-50%) rotate(-7deg);
}

.story-art-word {
  position: absolute;
  top: 8%;
  left: 7%;
  color: rgba(127, 55, 65, 0.14);
  font-size: clamp(54px, 6.6vw, 116px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.story-art-note {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #9c6f74;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(54px, 7vw, 120px);
  text-align: center;
}

.story-copy h2 {
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.35;
}

.story-copy > p:not(.note) {
  max-width: 590px;
  margin: 26px 0 0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.9;
}

.story-copy .note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* ABOUT */
.about-main {
  --about-light-gray: #ededed;
  --about-blush: #f4a0aa;
  --about-blue: #e4ecfa;
  --about-mint: #e6f2e7;
  --about-rose: #f8e8ec;
  background: var(--white);
}

.about-main > .about-definition,
.about-main > .about-flavors {
  min-height: auto;
}

.about-main > .about-hero {
  min-height: max(720px, calc(100svh - var(--header-height)));
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) clamp(32px, 6vw, 112px) clamp(146px, 12vw, 210px);
  color: var(--ink);
  background: var(--about-light-gray);
}

.about-hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(64px, 6.4vw, 116px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-hero-copy p {
  margin: clamp(28px, 3vw, 50px) 0 0;
  color: var(--about-blush);
  font-size: clamp(12px, 1.15vw, 19px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-hero-products {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
  height: 100%;
  min-height: 570px;
  margin: 0;
}

.about-hero-bottle {
  position: absolute;
  bottom: -4%;
  z-index: 2;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.34));
  animation: about-bottle-float 7s ease-in-out infinite;
}

.about-hero-bottle--original {
  left: 50%;
  z-index: 3;
  height: 102%;
  transform: translateX(-50%);
}

.about-hero-bottle--peach {
  left: 2%;
  height: 84%;
  transform: rotate(-2deg);
  animation-delay: -2.3s;
}

.about-hero-bottle--fresh {
  right: -2%;
  height: 82%;
  transform: rotate(2deg);
  animation-delay: -4.6s;
}

@keyframes about-bottle-float {
  0%,
  100% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 10px;
  }
}

.about-orbit,
.about-question-orbit,
.about-story-orbit,
.about-heading-orbit,
.about-closing-orbit {
  position: absolute;
  border: 1px solid var(--about-blush);
  border-radius: 0;
  pointer-events: none;
}

.about-orbit {
  top: 26%;
  right: -8%;
  z-index: 1;
  width: 82%;
  aspect-ratio: 2 / 1;
  transform: rotate(-13deg);
}

.about-spark {
  width: 26px;
  fill: var(--about-blush);
}

.about-hero-products .about-spark {
  position: absolute;
  z-index: 5;
}

.about-spark--one {
  top: 22%;
  right: 4%;
  width: 38px;
}

.about-spark--two {
  bottom: 17%;
  left: 3%;
  width: 24px;
}

.about-hero-arc {
  position: absolute;
  right: -8%;
  bottom: -128px;
  left: -8%;
  z-index: 6;
  height: 220px;
  border-radius: 0;
  background: var(--white);
}

.about-definition {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 11vw, 190px) clamp(28px, 5.6vw, 108px) clamp(120px, 10vw, 180px);
  background: var(--white);
}

.about-question {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto clamp(110px, 12vw, 210px);
  padding: 44px 30px;
  text-align: center;
}

.about-question h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 6vw, 104px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-question-orbit {
  top: 52%;
  left: 16%;
  width: 70%;
  height: 42%;
  transform: rotate(-5deg);
}

.about-question .about-spark {
  position: absolute;
  right: 10%;
  bottom: 8%;
  z-index: 3;
}

.about-story-layout {
  max-width: 1510px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(56px, 7vw, 130px);
}

.about-story-products {
  position: relative;
  min-height: clamp(610px, 55vw, 790px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--about-blue);
}

.about-story-word {
  position: absolute;
  top: 16%;
  left: 3%;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(86px, 10vw, 180px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.about-story-orbit {
  right: 4%;
  bottom: 12%;
  z-index: 1;
  width: 86%;
  height: 39%;
  border-color: rgba(17, 17, 17, 0.8);
  transform: rotate(-16deg);
}

.about-story-bottle {
  position: absolute;
  bottom: -5%;
  z-index: 2;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(56, 73, 98, 0.18));
}

.about-story-bottle--original {
  left: 40%;
  height: 88%;
  transform: translateX(-50%) rotate(-2deg);
}

.about-story-bottle--zero {
  right: 4%;
  height: 67%;
  transform: rotate(3deg);
}

.about-story-copy {
  max-width: 620px;
  color: var(--ink);
}

.about-story-copy p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.8;
}

.about-story-copy .about-story-lead {
  margin-bottom: 28px;
  font-size: clamp(36px, 3.7vw, 64px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.055em;
}

.about-flavors {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2.28fr);
  align-items: start;
  gap: clamp(30px, 4vw, 70px);
  overflow: hidden;
  padding: clamp(110px, 10vw, 180px) 0 0 clamp(28px, 5.6vw, 108px);
  background: var(--white);
}

.about-flavors-heading {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.about-flavors-heading > div {
  position: relative;
}

.about-flavors-heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 4.4vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.about-heading-orbit {
  top: 42%;
  left: -8%;
  width: 112%;
  height: 43%;
  transform: rotate(-4deg);
}

.about-flavors-heading p {
  margin: 44px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.about-flavors-heading small {
  display: block;
  margin-top: 20px;
  color: #e97d8b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-flavor-rail {
  min-width: 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 clamp(28px, 5vw, 90px) 42px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.about-flavor-rail::-webkit-scrollbar {
  display: none;
}

.about-flavor-card {
  position: relative;
  flex: 0 0 clamp(300px, 23vw, 410px);
  min-height: clamp(600px, 54vw, 760px);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--about-rose);
}

.about-flavor-card--grape {
  background: var(--about-mint);
}

.about-flavor-card--fresh {
  background: var(--about-blue);
}

.about-flavor-copy {
  position: absolute;
  top: 48px;
  right: 28px;
  left: 28px;
  z-index: 2;
  color: var(--ink);
}

.about-flavor-copy strong {
  display: block;
  color: #e97d8b;
  font-size: clamp(18px, 1.35vw, 24px);
  letter-spacing: -0.02em;
}

.about-flavor-card--grape strong {
  color: #58a54f;
}

.about-flavor-card--fresh strong {
  color: #5174c6;
}

.about-flavor-copy p {
  width: fit-content;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-size: 15px;
  line-height: 1.55;
}

.about-flavor-card img {
  position: absolute;
  right: -12%;
  bottom: -8%;
  width: 94%;
  height: 88%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 25px 24px rgba(37, 52, 42, 0.16));
}

.about-main > .about-closing {
  min-height: max(650px, calc(100svh - var(--header-height)));
}

.about-closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  padding: clamp(130px, 12vw, 220px) clamp(30px, 7vw, 132px) clamp(90px, 8vw, 150px);
  color: var(--ink);
  background: var(--about-light-gray);
}

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

.about-closing-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 5.5vw, 98px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.about-closing-copy p {
  margin: 32px 0 0;
  color: var(--about-blush);
  font-size: clamp(14px, 1.35vw, 22px);
  font-weight: 700;
}

.about-closing-copy > span {
  display: block;
  width: min(100%, 680px);
  height: 1px;
  margin-top: 46px;
  background: var(--ink);
}

.about-closing-products {
  position: relative;
  z-index: 1;
  height: min(64vw, 690px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-closing-products img {
  position: relative;
  z-index: 2;
  width: 33%;
  height: 88%;
  margin: 0 -4.5%;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.35));
}

.about-closing-products img:nth-of-type(2) {
  z-index: 3;
  height: 100%;
}

.about-closing-orbit {
  top: 25%;
  right: -2%;
  z-index: 1;
  width: 100%;
  height: 50%;
  transform: rotate(-13deg);
}

@media (max-width: 1120px) {
  .about-hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    padding-right: 42px;
    padding-left: 42px;
  }

  .about-story-layout {
    gap: 54px;
  }

  .about-flavors {
    grid-template-columns: 300px minmax(0, 1fr);
    padding-left: 44px;
  }

  .about-closing {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  }
}

@media (max-width: 900px) {
  .about-main > .about-hero {
    min-height: max(760px, calc(100svh - var(--header-height)));
  }

  .about-hero {
    display: block;
    padding: 58px 26px 130px;
  }

  .about-hero-copy h1 {
    font-size: clamp(50px, 12vw, 72px);
  }

  .about-hero-copy p {
    margin-top: 24px;
    font-size: 11px;
  }

  .about-hero-products {
    position: absolute;
    right: 0;
    bottom: 54px;
    left: 0;
    height: 62%;
    min-height: 0;
  }

  .about-hero-bottle--original {
    height: 98%;
  }

  .about-hero-bottle--peach {
    left: 5%;
    height: 78%;
  }

  .about-hero-bottle--fresh {
    right: 5%;
    height: 77%;
  }

  .about-hero-arc {
    bottom: -84px;
    height: 150px;
  }

  .about-definition {
    padding: 96px 22px 110px;
  }

  .about-question {
    margin-bottom: 94px;
    padding: 38px 4px;
  }

  .about-question h2 {
    font-size: clamp(40px, 9.5vw, 64px);
    white-space: nowrap;
  }

  .about-question-orbit {
    left: 8%;
    width: 84%;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-story-products {
    min-height: 570px;
  }

  .about-story-copy {
    max-width: 680px;
    padding: 0 10px;
  }

  .about-story-copy .about-story-lead {
    font-size: clamp(36px, 8vw, 54px);
  }

  .about-flavors {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 100px 0 0;
  }

  .about-flavors-heading {
    padding: 0 24px;
  }

  .about-flavors-heading h2 {
    font-size: clamp(46px, 9vw, 66px);
  }

  .about-flavors-heading p {
    margin-top: 30px;
  }

  .about-flavor-rail {
    padding-right: 24px;
    padding-left: 24px;
  }

  .about-flavor-card {
    flex-basis: min(76vw, 350px);
    min-height: 610px;
  }

  .about-main > .about-closing {
    min-height: 980px;
  }

  .about-closing {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 56px;
    padding: 110px 28px 90px;
  }

  .about-closing-copy h2 {
    font-size: clamp(54px, 12vw, 78px);
  }

  .about-closing-products {
    width: min(100%, 620px);
    height: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .about-main > .about-hero {
    min-height: max(620px, calc(84svh - var(--header-height)));
  }

  .about-hero {
    padding: 50px 22px 112px;
  }

  .about-definition {
    padding-top: 48px;
  }

  .about-hero-copy h1 {
    font-size: 51px;
  }

  .about-hero-products {
    bottom: 40px;
    height: 57%;
  }

  .about-orbit {
    top: 36%;
    right: -22%;
    width: 116%;
  }

  .about-hero-arc {
    bottom: -66px;
    height: 120px;
  }

  .about-question {
    margin-bottom: 72px;
  }

  .about-question h2 {
    font-size: 39px;
  }

  .about-story-products {
    min-height: 500px;
    border-radius: 0;
  }

  .about-story-bottle--original {
    left: 37%;
    height: 84%;
  }

  .about-story-bottle--zero {
    right: -5%;
    height: 68%;
  }

  .about-story-copy p {
    font-size: 15px;
  }

  .about-story-copy .about-story-lead {
    font-size: 36px;
  }

  .about-flavors-heading h2 {
    font-size: 48px;
  }

  .about-flavors-heading p {
    font-size: 15px;
  }

  .about-flavor-card {
    flex-basis: 82vw;
    min-height: 560px;
  }

  .about-flavor-card img {
    right: -15%;
    width: 98%;
  }

  .about-main > .about-closing {
    min-height: 900px;
  }

  .about-closing {
    padding-right: 22px;
    padding-left: 22px;
  }

  .about-closing-copy h2 {
    font-size: 55px;
  }

  .about-closing-products {
    height: 410px;
  }
}

/* Shared navigation: compact language control, contact entry, and full-screen mobile menu */
.desktop-nav {
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: clamp(24px, 2.5vw, 44px);
}

.site-header :focus-visible {
  outline-color: var(--ink);
}

.language-control {
  position: relative;
  line-height: 1;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 74px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-toggle svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
  transition: transform 0.2s ease;
}

.language-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 4;
  width: 154px;
  padding: 7px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.language-options[hidden] {
  display: none;
}

.language-options > span,
.language-options > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 0 9px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
}

.language-options > span {
  color: var(--white);
  background: var(--ink);
}

.language-options > button {
  cursor: pointer;
}

.language-options > button:hover,
.language-options > button:focus-visible {
  background: #efefef;
}

.language-options small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.language-status {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 3;
  width: max-content;
  max-width: min(220px, calc(100vw - 40px));
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.language-status:empty {
  display: none;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 44px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-contact:hover,
.header-contact:focus-visible,
.header-contact[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-hero .header-contact {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.mobile-menu {
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100svh;
  padding: 22px clamp(20px, 5vw, 44px) max(20px, env(safe-area-inset-bottom));
  overflow-y: auto;
  color: var(--white);
  background: #111111;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 0.28s ease, transform 0.42s var(--ease-out), visibility 0s linear 0.42s;
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.mobile-menu :focus-visible {
  outline-color: var(--white);
}

.mobile-menu-head {
  flex: 0 0 auto;
  padding: 0;
}

.mobile-menu-head > a {
  width: clamp(106px, 29vw, 132px);
  line-height: 0;
}

.mobile-menu-head img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu-head button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 12px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: clamp(62px, 11vh, 108px);
  border: 0;
}

.mobile-menu nav a {
  display: block;
  padding: 7px 0;
  border: 0;
  color: var(--white);
  font-size: clamp(34px, 9vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.mobile-menu-bottom {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: 64px;
}

.mobile-menu-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
}

.mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* CONTACT: photo-free two-column information and form preview */
.contact-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(64px, 8vw, 150px);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(70px, 7vw, 116px) clamp(32px, 5vw, 76px) clamp(110px, 9vw, 160px);
  background: #fefff0;
}

.contact-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.contact-intro > p:first-child {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(72px, 8.2vw, 126px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.contact-intro h2 {
  max-width: 520px;
  margin: clamp(48px, 5vw, 74px) 0 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.contact-intro > p:last-child {
  max-width: 540px;
  margin: 16px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.72;
}

.contact-form {
  align-self: start;
  padding: clamp(34px, 4.3vw, 68px);
  background: #ebeade;
}

.contact-form-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.contact-form-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-form-head p {
  max-width: 410px;
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.contact-form fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
  margin: 0;
  opacity: 1;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.contact-field {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.contact-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #fffef5;
  font-family: var(--sans);
  font-size: 15px;
  opacity: 1;
  -webkit-text-fill-color: #6a6a6a;
}

.contact-field input,
.contact-field select {
  height: 66px;
  padding: 0 22px;
}

.contact-field textarea {
  min-height: 190px;
  padding: 20px 22px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #777;
  opacity: 1;
}

.contact-category {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.contact-category label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: #777;
  background: #fffef5;
  font-size: 14px;
  font-weight: 600;
}

.contact-category label:first-child {
  border: 2px solid var(--ink);
  color: var(--ink);
}

.contact-category input {
  position: absolute;
  opacity: 0;
}

.contact-security {
  margin: 6px 0 18px;
  color: #6a6a6a;
  font-size: 11px;
  line-height: 1.6;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
}

.contact-consent input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.contact-submit {
  width: 100%;
  min-height: 62px;
  margin-top: 26px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.45;
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-actions {
    margin-left: 24px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .site-header,
  .site-header.is-hero {
    height: var(--header-height);
    padding: 10px 20px;
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--ink);
    background: #fefff0;
    box-shadow: none;
  }

  .brand-link {
    position: static;
    width: 101px;
    transform: none;
  }

  .site-header.is-hero .brand-link img {
    filter: none;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .header-contact {
    display: none;
  }

  .language-toggle {
    width: 72px;
    height: 42px;
  }

  .language-options {
    top: calc(100% + 9px);
  }

  .menu-button {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 10px 9px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 66px;
    padding: 70px 24px 110px;
  }

  .contact-intro {
    position: static;
  }

  .contact-intro h1 {
    font-size: clamp(64px, 13vw, 92px);
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-link {
    width: 96px;
  }

  .language-toggle {
    width: 70px;
    height: 40px;
  }

  .menu-button {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .mobile-menu {
    padding: 20px 20px max(20px, env(safe-area-inset-bottom));
  }

  .mobile-menu nav {
    margin-top: clamp(56px, 11vh, 88px);
  }

  .mobile-menu nav a {
    font-size: clamp(33px, 10.2vw, 43px);
  }

  .mobile-menu-bottom {
    padding-top: 52px;
  }

  .contact-section {
    gap: 46px;
    padding: 58px 20px 90px;
  }

  .contact-intro > p:first-child {
    margin-bottom: 16px;
  }

  .contact-intro h1 {
    font-size: clamp(52px, 16vw, 66px);
    line-height: 0.88;
  }

  .contact-intro h2 {
    margin-top: 40px;
    font-size: 22px;
  }

  .contact-intro > p:last-child br {
    display: none;
  }

  .contact-form {
    padding: 22px 16px 26px;
  }

  .contact-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .contact-form-head p {
    text-align: left;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-field input,
  .contact-field select,
  .contact-category label {
    height: 58px;
    min-height: 58px;
  }

  .contact-category {
    gap: 8px;
  }

  .contact-category label {
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
  }

  .contact-field textarea {
    min-height: 160px;
  }
}

@media (max-width: 340px) {
  .site-header,
  .site-header.is-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-link {
    width: 88px;
  }

  .language-toggle {
    width: 64px;
    padding: 0 10px;
  }

  .mobile-menu nav {
    margin-top: 38px;
  }

  .mobile-menu-bottom {
    padding-top: 36px;
  }

  .contact-category {
    grid-template-columns: 1fr;
  }
}

.collection-section {
  padding: 0 40px 140px;
  background: #ffffff;
}

.collection-hero {
  min-height: 388px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px 120px;
}

.collection-hero h1 {
  margin: 0;
  color: #111;
  font-size: clamp(76px, 8.9vw, 128px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-align: center;
}

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

.product {
  min-width: 0;
}

.product-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 0.732 / 1;
  padding: 40px;
  border: 0;
  overflow: hidden;
  color: #111;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.28s var(--ease-out);
}

.product-card-copy {
  position: relative;
  z-index: 2;
  display: block;
}

.product-card-title {
  display: block;
  margin: 0;
  color: inherit;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-card-copy > span:not(.product-card-title) {
  display: inline-block;
  margin-top: 20px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.product-card img {
  position: absolute;
  right: 10%;
  bottom: -3%;
  left: 10%;
  z-index: 1;
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transition: transform 0.55s var(--ease-out);
}

.product-card-action {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: translateY(-12px) scale(1.025);
}

.product-card:hover {
  transform: scale(0.985);
}

.product-card:hover .product-card-action,
.product-card:focus-visible .product-card-action {
  opacity: 1;
  transform: translateY(0);
}

.product-card:focus-visible {
  outline-color: currentColor;
  outline-offset: -5px;
}

.page-news .news-section {
  padding: clamp(96px, 9vw, 148px) clamp(24px, 4vw, 80px) clamp(104px, 9vw, 156px);
  border-top: 1px solid var(--line);
}

.page-news .news-heading,
.page-news .news-filter-viewport,
.page-news .news-grid,
.page-news .news-pagination {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.page-news .news-heading {
  text-align: center;
}

.page-news .news-heading h1 {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.page-news .news-heading p {
  margin: 22px auto 0;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.page-news .news-filter-viewport {
  margin-top: clamp(42px, 4vw, 58px);
  overflow-x: auto;
  scrollbar-width: none;
}

.page-news .news-filter-viewport::-webkit-scrollbar {
  display: none;
}

.page-news .news-filters {
  display: flex;
  width: max-content;
  margin: 0 auto;
  gap: 12px;
}

.page-news .news-filters button {
  min-width: 166px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.page-news .news-filters button:hover {
  transform: translateY(-2px);
}

.page-news .news-filters button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 24px;
  margin-top: clamp(62px, 6vw, 92px);
}

.page-news .news-card {
  min-width: 0;
}

.page-news .news-card[hidden] {
  display: none;
}

.page-news .news-card-media {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: #cfcfcf;
}

.page-news .news-card-copy {
  padding: 18px 4px 0;
}

.page-news .news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-news .news-card-meta span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
}

.page-news .news-card-copy h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.page-news .news-card-copy p {
  margin: 12px 0 0;
  color: #626262;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.page-news .news-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(72px, 7vw, 104px);
}

.page-news .news-pagination span {
  display: grid;
  width: 34px;
  height: 40px;
  place-items: center;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.footer-reveal {
  position: relative;
  z-index: 0;
  height: var(--footer-height);
  color: var(--footer-ink);
  background: var(--footer-bg);
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: var(--footer-height);
  padding: 60px;
  color: var(--footer-ink);
  background: var(--footer-bg);
}

.site-footer :focus-visible {
  outline-color: var(--footer-ink);
}

.footer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(36px, 1fr) minmax(0, 3fr);
  gap: 20px;
  align-items: start;
  height: 230px;
  max-width: 2200px;
  margin: 0 auto;
}

.footer-newsletter {
  grid-column: 1;
  min-width: 0;
}

.footer-newsletter h2 {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.footer-form {
  width: min(100%, 380px);
  margin: 14px 0 0;
}

.footer-form-row {
  position: relative;
  width: min(100%, 360px);
  height: 44px;
}

.footer-form-row input {
  width: calc(100% - 46px);
  height: 42px;
  padding: 0 82px 0 14px;
  border: 2px solid var(--footer-ink);
  border-radius: 0;
  outline: none;
  color: var(--footer-ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.footer-form-row input::placeholder {
  color: color-mix(in srgb, var(--footer-ink) 62%, transparent);
  opacity: 1;
}

.footer-form-row input:focus-visible {
  box-shadow: 0 0 0 3px var(--footer-bg), 0 0 0 5px var(--footer-ink);
}

.footer-form-row button {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 112px;
  height: 58px;
  padding: 0 10px 2px;
  border: 2px solid var(--footer-ink);
  border-radius: 0;
  color: var(--footer-bg);
  background: var(--footer-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transform: translateY(-50%) rotate(-2deg);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-form-row button:hover,
.footer-form-row button:focus-visible {
  color: var(--footer-ink);
  background: var(--footer-bg);
  transform: translateY(-50%) rotate(2deg) scale(1.03);
}

.footer-consents {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}

.footer-consents label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: fit-content;
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
}

.footer-consents input {
  appearance: none;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 2px solid var(--footer-ink);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.footer-consents input:checked {
  background: var(--footer-ink);
  box-shadow: inset 0 0 0 3px var(--footer-bg);
}

.footer-consents input:focus-visible {
  outline-color: var(--footer-ink);
}

.footer-form-status {
  min-height: 14px;
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}

.footer-contact-control button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 3px 10px;
  border: 2px solid var(--footer-ink);
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.footer-contact-control button:hover,
.footer-contact-control button:focus-visible,
.footer-contact-control button[aria-expanded="true"] {
  color: var(--footer-bg);
  background: var(--footer-ink);
}

.footer-contact-control p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-brand {
  grid-column: 2;
  display: block;
  width: min(100%, 424px);
  margin-top: 6px;
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%);
  transition: transform 0.25s var(--ease-out);
}

.footer-brand:hover img,
.footer-brand:focus-visible img {
  transform: rotate(-1deg) scale(1.015);
}

.footer-directory {
  grid-column: 4;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 230px;
}

.footer-directory nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.footer-directory nav a {
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.footer-directory nav a:hover,
.footer-directory nav a:focus-visible,
.footer-directory nav a[aria-current="page"] {
  border-color: currentColor;
}

.footer-meta {
  margin-top: auto;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-policy i {
  width: 1px;
  height: 11px;
  background: currentColor;
}

.footer-meta p {
  margin: 4px 0 0;
}

.footer-responsible {
  opacity: 0.78;
}

@media (max-width: 1000px) {
  .footer-reveal {
    height: auto;
  }

  .site-footer {
    position: relative;
    height: auto;
    padding: 40px 20px 60px;
  }

  .footer-layout {
    height: auto;
    min-height: 250px;
  }

  .footer-form-row input {
    padding-right: 70px;
  }

  .footer-form-row button {
    width: 102px;
  }

  .footer-directory {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .footer-newsletter,
  .footer-brand,
  .footer-directory {
    grid-column: 1;
  }

  .footer-newsletter h2 {
    font-size: 16px;
  }

  .footer-form {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-row {
    width: 100%;
    height: 49px;
  }

  .footer-form-row input {
    width: calc(100% - 46px);
    height: 47px;
  }

  .footer-form-row button {
    width: 108px;
    height: 62px;
  }

  .footer-consents {
    gap: 8px;
    margin-top: 16px;
  }

  .footer-consents label {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-contact-control {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 5px;
  }

  .footer-contact-control button {
    min-height: 32px;
  }

  .footer-brand {
    width: 235px;
    margin-top: 30px;
  }

  .footer-directory {
    min-height: 0;
    margin-top: 24px;
  }

  .footer-directory nav {
    gap: 16px 14px;
    font-size: 16px;
  }

  .footer-directory nav a {
    min-height: 28px;
  }

  .footer-meta {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-policy {
    font-size: 13px;
    white-space: normal;
  }

  .footer-meta p {
    margin-top: 8px;
  }

  .footer-responsible {
    padding-right: 42px;
  }
}

.top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--white);
  background: rgba(13, 13, 13, 0.85);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  cursor: pointer;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.top-button span {
  margin-top: -4px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.product-dialog {
  --product-accent: #a83c43;
  --product-surface: #f5ecec;
  width: min(1180px, calc(100vw - 32px));
  height: min(820px, calc(100svh - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  color: var(--ink);
  background: rgba(17, 17, 17, 0.055);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.dialog-close:hover {
  color: var(--white);
  background: var(--ink);
}

.dialog-close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.dialog-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--product-surface);
}

.dialog-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(44px, 5vw, 76px);
  object-fit: contain;
}

.dialog-count {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.dialog-copy {
  min-width: 0;
  min-height: 0;
  padding: clamp(56px, 5vw, 76px) clamp(38px, 4.5vw, 64px) 60px;
  border-left: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.dialog-heading > span {
  display: block;
  color: var(--product-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.dialog-heading h2 {
  margin: 14px 0 0;
  color: var(--product-accent);
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.dialog-name {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.dialog-summary {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  color: var(--product-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dialog-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 48px);
  row-gap: 24px;
  margin: 34px 0 0;
  border: 0;
}

.dialog-facts div {
  min-width: 0;
  padding: 0;
  border: 0;
}

.dialog-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dialog-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.dialog-taste,
.dialog-enjoy {
  margin-top: 46px;
  padding-top: 0;
  border: 0;
}

.dialog-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.dialog-taste h3,
.dialog-enjoy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.dialog-taste h3 small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.dialog-section-heading > span {
  color: var(--product-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.taste-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
  border: 0;
  color: var(--muted);
  font-size: 12px;
}

.taste-meter {
  display: block;
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right;
}

.dialog-enjoy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.dialog-note {
  margin: 32px 0 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.dialog-product-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  border: 0;
}

.dialog-product-nav button {
  min-width: 0;
  padding: 16px;
  border: 0;
  color: var(--ink);
  background: #f3f3f1;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dialog-product-nav button:hover {
  background: var(--product-surface);
}

.dialog-product-nav button:last-child {
  text-align: right;
}

.dialog-product-nav small,
.dialog-product-nav span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dialog-product-nav small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.dialog-product-nav span {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
}

.dialog-return {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  padding: 13px 20px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 5, 8, 0.8);
  backdrop-filter: blur(12px);
}

.age-gate[hidden] {
  display: none;
}

.age-card {
  width: min(500px, 100%);
  padding: clamp(42px, 5vw, 64px);
  border: 1px solid rgba(201, 162, 93, 0.45);
  color: var(--text);
  background: var(--white);
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.age-card h2 {
  margin: 38px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
}

.age-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.age-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 34px;
}

.age-actions button {
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  cursor: pointer;
}

.age-actions button:first-child {
  color: var(--white);
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

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

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

@media (max-width: 1120px) {
  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    height: var(--header-height);
    padding: 8px 18px;
  }

  .brand-link {
    position: absolute;
    left: 50%;
    width: 108px;
    transform: translateX(-50%);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: max(680px, 92svh);
  }

  .hero-copy {
    bottom: 110px;
    left: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 10vw, 62px);
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 10px;
  }

  .bottle-rail {
    height: 220px;
  }

  .bottle-rail img {
    object-position: center 67%;
  }

  .story-intro,
  .section-heading {
    padding: 90px 24px;
  }

  .story-intro > p br {
    display: none;
  }

  .story-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-image {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .story-art-product--front {
    height: 91%;
  }

  .story-art-product--back {
    height: 76%;
  }

  .story-copy {
    min-height: 520px;
    padding: 80px 28px;
  }

  .collection-section {
    padding-right: 24px;
    padding-bottom: 100px;
    padding-left: 24px;
  }

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

  .product {
    width: 100%;
    margin-top: 0;
  }

  .product-card {
    padding: 30px;
  }

  .dialog-layout {
    display: block;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .dialog-media {
    height: min(48svh, 460px);
  }

  .dialog-copy {
    overflow: visible;
    padding: 44px 30px 50px;
    border-top: 0;
    border-left: 0;
    scrollbar-gutter: auto;
  }
}

@media (max-width: 680px) {
  .collection-section {
    padding-right: 20px;
    padding-bottom: 120px;
    padding-left: 20px;
  }

  .collection-hero {
    min-height: 162px;
    padding: 38px 0 48px;
  }

  .collection-hero h1 {
    font-size: 44px;
    line-height: 0.86;
    letter-spacing: -0.055em;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 24px;
  }

  .product-card-title {
    font-size: 28px;
    line-height: 0.96;
  }

  .product-card-copy > span:not(.product-card-title) {
    margin-top: 16px;
    padding: 6px 8px;
  }

  .product-card-action {
    right: 24px;
    bottom: 22px;
  }

  .page-news .news-section {
    padding: 76px 20px 100px;
  }

  .page-news .news-heading h1 {
    font-size: clamp(35px, 10.2vw, 42px);
    line-height: 1.24;
    letter-spacing: -0.05em;
  }

  .page-news .news-heading p {
    max-width: 310px;
    margin-top: 18px;
    font-size: 13px;
  }

  .page-news .news-filter-viewport {
    margin-top: 42px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px;
  }

  .page-news .news-filters {
    margin-left: 0;
    gap: 8px;
  }

  .page-news .news-filters button {
    min-width: 112px;
    height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .page-news .news-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 52px;
  }

  .page-news .news-card-copy {
    padding-top: 16px;
  }

  .page-news .news-card-copy h2 {
    margin-top: 10px;
    font-size: clamp(21px, 6vw, 24px);
    line-height: 1.42;
  }

  .page-news .news-card-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .page-news .news-pagination {
    margin-top: 68px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    right: 22px;
    bottom: 112px;
    left: 22px;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .scroll-cue {
    bottom: 18px;
  }

  .bottle-rail {
    height: 190px;
  }

  .story-intro h1,
  .section-heading h1 {
    font-size: 38px;
  }

  .story-intro > p {
    font-size: 14px;
  }

  .story-copy {
    min-height: 480px;
  }

  .story-art-word {
    top: 8%;
    font-size: 15vw;
  }

  .story-art-note {
    right: 12px;
    bottom: 10px;
    font-size: 8px;
  }

  .top-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .page-news .news-heading h1 {
    font-size: clamp(34px, 10.8vw, 40px);
  }

  .page-news .news-filters button {
    min-width: 108px;
  }

  .product-dialog {
    width: calc(100vw - 12px);
    height: calc(100svh - 12px);
    max-height: calc(100svh - 12px);
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .dialog-media {
    height: 44svh;
    min-height: 320px;
  }

  .dialog-media img {
    padding: 24px;
  }

  .dialog-count {
    top: 18px;
    left: 18px;
  }

  .dialog-copy {
    padding: 34px 20px 40px;
  }

  .dialog-heading h2 {
    font-size: clamp(36px, 12vw, 48px);
  }

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

  .dialog-facts div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .dialog-facts dd {
    margin-top: 0;
  }

  .dialog-product-nav button {
    padding: 14px 12px;
  }

  .age-card {
    padding: 38px 22px;
  }

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

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

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

/* Minimal visual pass: neutral image placeholders and straight geometry */
.about-main {
  --about-blush: #cfcfcf;
  --about-blue: #cfcfcf;
  --about-mint: #cfcfcf;
  --about-rose: #cfcfcf;
}

.about-hero {
  gap: clamp(48px, 6vw, 112px);
  padding: clamp(72px, 7vw, 120px) clamp(32px, 6vw, 112px);
}

.about-hero-copy p,
.about-closing-copy p {
  color: #666666;
}

.about-flavors-heading small {
  color: #767676;
}

.about-media-placeholder,
.about-flavor-card {
  border-radius: 0;
  background: #cfcfcf;
  box-shadow: none;
}

.about-hero-products {
  align-self: center;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.about-definition {
  padding-top: clamp(110px, 10vw, 170px);
}

.about-question {
  margin-bottom: clamp(92px, 9vw, 150px);
  padding: 0;
}

.about-story-products {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.about-flavor-card,
.about-flavor-card--grape,
.about-flavor-card--fresh {
  min-height: clamp(520px, 43vw, 650px);
  background: #cfcfcf;
}

.about-flavor-copy strong,
.about-flavor-card--grape strong,
.about-flavor-card--fresh strong {
  color: var(--ink);
}

.about-closing-products {
  align-self: center;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  background: #cfcfcf;
}

.page-news .news-filters button,
.page-news .news-card-media,
.footer-form-row input,
.footer-form-row button,
.footer-contact-control button,
.top-button {
  border-radius: 0;
}

.footer-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  height: 42px;
}

.footer-form-row input {
  width: 100%;
  padding-right: 14px;
  border-right: 0;
}

.footer-form-row button {
  position: static;
  width: 100%;
  height: 42px;
  transform: none;
}

.footer-form-row button:hover,
.footer-form-row button:focus-visible {
  transform: none;
}

.footer-contact-control button {
  gap: 0;
}

.footer-brand img {
  transition: none;
}

.footer-brand:hover img,
.footer-brand:focus-visible img {
  transform: none;
}

.age-card {
  border-color: var(--ink);
}

.age-logo {
  display: block;
  width: min(220px, 68%);
  height: auto;
  margin: 0 auto;
}

.age-card h2 {
  margin-top: 30px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-hero {
    gap: 52px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-hero-products,
  .about-story-products,
  .about-closing-products {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-definition {
    padding-top: 96px;
  }

  .about-question {
    margin-bottom: 78px;
  }

  .about-flavor-card,
  .about-flavor-card--grape,
  .about-flavor-card--fresh {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .about-hero {
    gap: 38px;
    padding: 64px 22px;
  }

  .about-definition {
    padding-top: 78px;
  }

  .about-question {
    margin-bottom: 64px;
  }

  .about-story-products,
  .about-closing-products {
    width: 100%;
  }

  .about-flavor-card,
  .about-flavor-card--grape,
  .about-flavor-card--fresh {
    min-height: 520px;
  }

  .age-logo {
    width: min(190px, 70%);
  }

  .age-card h2 {
    margin-top: 26px;
  }
}

/* Keep the new mobile header rules last in the cascade. */
@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .site-header,
  .site-header.is-hero {
    height: var(--header-height);
    padding: 10px 20px;
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--ink);
    background: #fefff0;
    box-shadow: none;
  }

  .brand-link {
    position: static;
    left: auto;
    width: 101px;
    transform: none;
  }

  .site-header.is-hero .brand-link img {
    filter: none;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .header-contact {
    display: none;
  }

  .language-toggle {
    width: 72px;
    height: 42px;
  }

  .menu-button {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 10px 9px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-link {
    width: 96px;
  }

  .language-toggle {
    width: 70px;
    height: 40px;
  }

  .menu-button {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 340px) {
  .site-header,
  .site-header.is-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-link {
    width: 88px;
  }

  .language-toggle {
    width: 64px;
    padding: 0 10px;
  }
}

/* Display typography: keep body and interface text in Pretendard. */
.hero-copy h1,
.about-hero-copy h1,
.about-question h2,
.about-story-copy .about-story-lead,
.about-flavors-heading h2,
.about-closing-copy h2,
.collection-hero h1,
.product-card-title,
.dialog-heading h2,
.dialog-taste h3,
.dialog-enjoy h3,
.page-news .news-heading h1,
.page-news .news-card-copy h2,
.contact-intro h1,
.contact-intro h2,
.contact-form-head h2,
.footer-newsletter h2,
.age-card h2 {
  font-family: var(--title);
  font-weight: 400;
  font-synthesis: none;
}

/* Home · flavour finder */
.home-flavours {
  --flavour-card-width: clamp(620px, 45vw, 650px);
  --flavour-card-gap: 40px;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: var(--ink);
  background: var(--white);
}

.home-flavour-heading {
  padding: 0 40px;
  text-align: center;
}

.home-flavour-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title);
  font-size: clamp(82px, 8.9vw, 128px);
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.home-flavour-viewport {
  width: 100%;
  margin-top: 80px;
  outline-offset: -5px;
  overflow: visible;
  touch-action: pan-y;
}

.home-flavour-track {
  display: flex;
  gap: var(--flavour-card-gap);
  width: max-content;
  transform: translate3d(
    calc((100vw - var(--flavour-card-width)) / 2 - var(--flavour-card-width) - var(--flavour-card-gap)),
    0,
    0
  );
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.home-flavour-slide {
  flex: 0 0 var(--flavour-card-width);
  width: var(--flavour-card-width);
  background: var(--white);
  opacity: 0.34;
  pointer-events: none;
  transform: scale(0.94);
  transform-origin: center;
  transition: opacity 0.45s ease, transform 0.55s var(--ease-out);
}

.home-flavour-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-flavour-card-head {
  display: flex;
  min-height: 132px;
  padding: 30px 32px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  background: var(--white);
}

.home-flavour-card-head h3 {
  max-width: 370px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(25px, 2.15vw, 32px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-flavour-card-head p {
  margin: 14px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

.home-flavour-card-head a {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 0 3px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.home-flavour-card-head a:hover {
  color: var(--ink);
  background: transparent;
  opacity: 0.5;
}

.home-flavour-card-head a:focus-visible {
  color: var(--ink);
  background: transparent;
  outline-color: var(--ink);
  opacity: 1;
}

.home-flavour-slide > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 853;
  object-fit: cover;
  background: #f1f1f1;
}

.home-flavour-controls {
  display: flex;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.home-flavour-controls button,
.home-flavour-controls > a {
  display: inline-grid;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.home-flavour-controls button {
  width: 52px;
  padding: 0;
}

.home-flavour-controls > a {
  min-width: 116px;
  padding: 0 10px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-flavour-controls button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

.home-flavour-controls button:hover:not(:disabled),
.home-flavour-controls > a:hover {
  color: var(--ink);
  background: transparent;
  opacity: 0.5;
}

.home-flavour-controls button:focus-visible,
.home-flavour-controls > a:focus-visible {
  color: var(--ink);
  background: transparent;
  outline-color: var(--ink);
  opacity: 1;
}

.home-flavour-controls button:disabled {
  opacity: 0.18;
  cursor: default;
}

@media (max-width: 900px) {
  .home-flavours {
    --flavour-card-width: 80vw;
    --flavour-card-gap: 20px;
    padding: 100px 0;
  }

  .home-flavour-heading {
    padding: 0 20px;
  }

  .home-flavour-heading h2 {
    font-size: clamp(44px, 11.3vw, 70px);
  }

  .home-flavour-viewport {
    margin-top: 48px;
  }

  .home-flavour-card-head {
    display: block;
    min-height: 154px;
    padding: 24px;
  }

  .home-flavour-card-head h3 {
    max-width: none;
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .home-flavour-card-head p {
    margin-top: 10px;
    font-size: 12px;
  }

  .home-flavour-card-head a {
    min-height: 44px;
    margin-top: 16px;
    padding: 0 0 3px;
    font-size: 10px;
  }

  .home-flavour-controls {
    margin-top: 32px;
    gap: 8px;
  }

  .home-flavour-controls button,
  .home-flavour-controls > a {
    height: 48px;
  }

  .home-flavour-controls button {
    width: 48px;
  }

  .home-flavour-controls > a {
    min-width: 112px;
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 340px) {
  .home-flavours {
    --flavour-card-width: 82vw;
  }

  .home-flavour-card-head {
    min-height: 150px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-flavour-track,
  .home-flavour-slide {
    transition: none;
  }
}
