:root {
  --espresso: #231815;
  --espresso-deep: #160e0c;
  --cream: #f5f0e8;
  --paper: #fffaf2;
  --white: #fffdf8;
  --butter: #c9a86a;
  --butter-light: #e0c994;
  --matcha: #76845c;
  --ink-soft: #625651;
  --line: rgba(35, 24, 21, 0.16);
  --shell: min(1280px, calc(100vw - 10vw));
  --header-height: 88px;
  --font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-en: Inter, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--espresso);
  background: var(--cream);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 4vw;
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(35, 24, 21, 0.96);
  box-shadow: 0 1px 0 rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 26px;
}

.brand-copy small {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 38px);
  margin-left: auto;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: rgba(245, 240, 232, 0.86);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--butter);
  content: "";
  transform: translateX(50%);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 28px;
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 154px;
  height: 42px;
  color: var(--espresso);
  background: var(--cream);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-order:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.header-order svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: min(975px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--espresso);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: var(--focus-desktop, center);
  transform: scale(1.012);
}

[data-image-key] {
  object-position: var(--focus-desktop, 50% 50%);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(14, 9, 8, 0.76) 0, rgba(14, 9, 8, 0) 190px),
    linear-gradient(90deg, rgba(14, 9, 7, 0.92) 0%, rgba(14, 9, 7, 0.74) 38%, rgba(14, 9, 7, 0.14) 68%, rgba(14, 9, 7, 0.02) 100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 26.1%;
  left: 5.5%;
  width: min(680px, 48vw);
}

.eyebrow,
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--butter);
  font-family: var(--font-en), var(--font-cn);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.eyebrow span,
.section-eyebrow span {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 24px 0 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.22;
}

.mobile-hero-title,
.mobile-hero-intro,
.mobile-value {
  display: none;
}

.hero-divider {
  display: block;
  width: 54px;
  height: 2px;
  margin: 24px 0;
  background: var(--cream);
}

.hero-intro {
  width: min(680px, 100%);
  margin: 0;
  color: var(--cream);
  font-size: 20px;
  line-height: 32px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  margin-left: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-warm {
  color: var(--white);
  background: var(--butter);
  box-shadow: 0 8px 20px rgba(38, 20, 10, 0.22);
}

.button-warm:hover {
  background: #b99355;
}

.button-outline-light {
  color: var(--white);
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

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

.trust-bar {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 5.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(820px, 58vw);
  min-height: 120px;
  padding: 20px 24px;
  border: 1px solid rgba(245, 240, 232, 0.42);
  border-radius: 8px;
  background: rgba(35, 24, 21, 0.58);
  backdrop-filter: blur(10px);
}

.trust-bar article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}

.trust-bar article:first-child {
  padding-left: 8px;
}

.trust-bar article + article {
  border-left: 1px solid rgba(245, 240, 232, 0.45);
}

.trust-bar svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.trust-bar span {
  display: flex;
  flex-direction: column;
}

.trust-bar strong {
  font-size: 16px;
  line-height: 24px;
}

.trust-bar small {
  color: var(--cream);
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.page-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 84px;
  background: var(--cream);
}

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

.section-heading {
  max-width: 900px;
}

.section-heading h2,
.about-copy h2,
.stores-copy h2,
.cooperation-intro h2 {
  margin: 18px 0 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.section-heading > p:last-child,
.stores-copy .intro,
.cooperation-intro > p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 28px;
}

.section-note {
  color: var(--matcha);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-section {
  padding-bottom: 54px;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.08fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
}

.story-copy {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.story-copy p {
  margin: 0 0 10px;
}

.about-copy blockquote {
  margin: 32px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--butter);
  color: var(--espresso);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
}

.about-visual {
  position: relative;
  margin: 0;
}

.about-visual img {
  width: 100%;
  height: 474px;
  object-fit: cover;
}

.about-visual figcaption {
  position: absolute;
  right: 40px;
  bottom: -20px;
  min-width: 320px;
  padding: 20px 24px;
  color: var(--espresso);
  background: rgba(255, 250, 242, 0.92);
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.principles {
  margin-top: 68px;
}

.principles h3,
.directions > h3 {
  margin: 0;
  font-size: 30px;
  line-height: 40px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.principle-grid article {
  padding: 22px 0 0;
}

.principle-grid span {
  color: var(--butter);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}

.principle-grid h4 {
  margin: 10px 0 4px;
  font-size: 20px;
}

.principle-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

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

.filters {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filters button {
  min-width: 104px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(35, 24, 21, 0.22);
  border-radius: 19px;
  color: var(--espresso);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.filters button:hover,
.filters button:focus-visible,
.filters button.is-active {
  color: var(--white);
  border-color: var(--espresso);
  background: var(--espresso);
}

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

.product-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(35, 24, 21, 0.12);
  border-radius: 8px;
  background: var(--paper);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
}

.product-card > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 24px 18px 28px;
}

.product-card small {
  color: var(--matcha);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}

.product-card h3 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 34px;
}

.product-card p {
  margin: 6px 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 22px;
}

.product-card span {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 18px;
}

.order-guidance,
.pickup-reminder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid rgba(35, 24, 21, 0.12);
  background: var(--paper);
}

.order-guidance h3,
.pickup-reminder h3 {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
}

.order-guidance p,
.pickup-reminder p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.stores-section {
  background: var(--paper);
}

.stores-grid {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 40px;
}

.store-info-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.store-info-list article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  min-height: 130px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.45);
}

.store-info-list article > span {
  color: var(--butter);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}

.store-info-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}

.store-info-list small {
  color: var(--matcha);
  font-size: 12px;
  font-weight: 700;
}

.store-info-list p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 22px;
}

.store-visual {
  position: relative;
  height: 664px;
  margin: 4px 0 0;
  overflow: hidden;
}

.store-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 33%;
  background: linear-gradient(180deg, transparent, rgba(14, 9, 7, 0.84));
  content: "";
}

.store-photo-copy {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 48px;
  color: var(--white);
}

.store-photo-copy small {
  color: var(--butter-light);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.store-photo-copy h3 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.2;
}

.store-visual .button {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
}

.pickup-reminder {
  margin-top: 24px;
}

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

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.featured-news {
  position: relative;
  display: block;
  height: 560px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.featured-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-news::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(14, 9, 7, 0.9));
  content: "";
}

.featured-news > div {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 26px;
  left: 30px;
  color: var(--white);
}

.featured-news small {
  display: inline-block;
  padding: 2px 8px;
  color: var(--espresso);
  background: var(--butter-light);
  font-size: 11px;
  font-weight: 700;
}

.featured-news h3 {
  max-width: 590px;
  margin: 14px 0 12px;
  font-size: 28px;
  line-height: 38px;
}

.featured-news time {
  color: var(--cream);
  font-family: var(--font-en);
  font-size: 12px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-list article,
.news-list .news-item {
  min-height: 154px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.news-list .news-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-list .news-item:hover h3,
.featured-news:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-list article > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.news-list small {
  color: var(--matcha);
  font-size: 11px;
  font-weight: 700;
}

.news-list time {
  color: var(--ink-soft);
  font-family: var(--font-en);
  font-size: 11px;
}

.news-list h3 {
  margin: 7px 0 2px;
  font-size: 19px;
  line-height: 28px;
}

.news-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 22px;
}

.news-button {
  align-self: flex-start;
}

.cooperation-section {
  min-height: 1040px;
  padding-top: 0;
  background: var(--paper);
}

.cooperation-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.2%;
  height: 500px;
  overflow: hidden;
}

.cooperation-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 24, 21, 0.08), rgba(35, 24, 21, 0.18));
  content: "";
}

.cooperation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.cooperation-intro {
  min-height: 590px;
  padding-top: 156px;
}

.cooperation-intro h2 {
  max-width: 600px;
}

.cooperation-intro > p:not(.section-eyebrow) {
  max-width: 560px;
}

.cooperation-phone {
  display: block;
  width: max-content;
  margin: 28px 0 10px;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.directions {
  margin-top: 42px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
  margin-top: 18px;
}

.direction-grid article {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 26px;
  min-height: 106px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.direction-grid span {
  display: flex;
  flex-direction: column;
}

.direction-grid small {
  color: var(--matcha);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
}

.direction-grid strong {
  margin-top: 2px;
  font-size: 18px;
}

.direction-grid p {
  align-self: center;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 21px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 40px;
  padding: 52px 5vw 34px;
  color: var(--cream);
  background: var(--espresso);
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer > div > p {
  margin: 12px 0 0;
  color: rgba(245, 240, 232, 0.7);
  font-size: 13px;
}

.site-footer > div > small {
  display: block;
  margin-bottom: 8px;
  color: var(--butter-light);
  font-size: 11px;
  font-weight: 700;
}

.site-footer > div > a:not(.brand) {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.14);
  color: rgba(245, 240, 232, 0.5);
  font-family: var(--font-en), var(--font-cn);
  font-size: 11px;
}

.mobile-actions,
.toast {
  display: none;
}

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

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

@media (max-width: 1180px) {
  :root {
    --shell: min(1040px, calc(100vw - 64px));
  }

  .site-header {
    padding: 0 32px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .header-order {
    width: 126px;
  }

  .trust-bar {
    width: 720px;
  }

  .trust-bar article {
    padding: 0 12px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .product-card {
    grid-template-columns: 43% 1fr;
  }

  .product-card > div {
    padding-left: 20px;
  }

  .stores-grid {
    grid-template-columns: 430px 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
    --shell: calc(100vw - 40px);
  }

  .site-header {
    height: var(--header-height);
    padding: 0 20px;
  }

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

  .brand-copy strong {
    font-size: 17px;
    line-height: 21px;
  }

  .brand-copy small {
    font-size: 10px;
    line-height: 15px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 28px;
    background: rgba(35, 24, 21, 0.98);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.12);
    font-size: 16px;
  }

  .main-nav a::after {
    right: auto;
    bottom: 9px;
    left: 0;
    transform: none;
  }

  .header-order {
    display: none;
  }

  .hero {
    min-height: 844px;
    height: 100svh;
  }

  .hero-content {
    top: 26%;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-intro {
    max-width: 600px;
  }

  .trust-bar {
    right: 20px;
    bottom: 24px;
    left: 20px;
    width: auto;
  }

  .about-grid,
  .stores-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 680px;
  }

  .principle-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    gap: 34px;
  }

  .store-visual {
    height: min(664px, 74vw);
    min-height: 460px;
  }

  .news-layout {
    gap: 24px;
  }

  .cooperation-image {
    position: relative;
    width: 100%;
    height: 440px;
  }

  .cooperation-intro {
    min-height: 0;
    padding-top: 70px;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    padding-bottom: 60px;
    font-size: 15px;
  }

  .hero {
    min-height: 844px;
  }

  .hero-image {
    object-position: var(--focus-mobile, 62% center);
    transform: scale(1.03);
  }

  [data-image-key] {
    object-position: var(--focus-mobile, 50% 50%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(14, 9, 8, 0.76) 0, transparent 150px),
      linear-gradient(90deg, rgba(14, 9, 7, 0.91) 0%, rgba(14, 9, 7, 0.65) 68%, rgba(14, 9, 7, 0.18) 100%);
  }

  .hero-content {
    top: 150px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .eyebrow {
    font-size: 11px;
  }

  .eyebrow span {
    width: 28px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 42px;
    line-height: 1.28;
  }

  .desktop-hero-title,
  .desktop-hero-intro,
  .desktop-value {
    display: none;
  }

  .mobile-hero-title,
  .mobile-hero-intro,
  .mobile-value {
    display: block;
  }

  .hero-divider {
    margin: 20px 0;
  }

  .hero-intro {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-bar {
    bottom: 80px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px 16px;
  }

  .trust-bar article {
    min-height: 54px;
    padding: 8px 4px;
  }

  .trust-bar article + article {
    border-top: 1px solid rgba(245, 240, 232, 0.3);
    border-left: 0;
  }

  .trust-bar article:nth-child(2) {
    display: none;
  }

  .trust-bar svg {
    width: 28px;
    height: 28px;
  }

  .trust-bar strong {
    font-size: 14px;
  }

  .trust-bar small {
    font-size: 11px;
  }

  .page-section {
    padding: 86px 0 64px;
  }

  .section-heading h2,
  .about-copy h2,
  .stores-copy h2,
  .cooperation-intro h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .section-heading > p:last-child,
  .stores-copy .intro,
  .cooperation-intro > p:not(.section-eyebrow) {
    font-size: 15px;
    line-height: 26px;
  }

  .section-eyebrow {
    font-size: 11px;
  }

  .story-copy {
    font-size: 14px;
  }

  .about-copy blockquote {
    font-size: 19px;
  }

  .about-visual img {
    height: 300px;
  }

  .about-visual figcaption {
    right: 12px;
    bottom: -18px;
    min-width: 230px;
    padding: 14px 18px;
    font-size: 13px;
  }

  .principles {
    margin-top: 56px;
  }

  .principle-grid {
    gap: 0;
  }

  .principle-grid article + article {
    margin-top: 20px;
    border-top: 1px solid var(--line);
  }

  .filters {
    width: calc(100vw - 16px);
    margin-right: -16px;
  }

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

  .product-card img {
    height: 220px;
    min-height: 0;
  }

  .product-card > div {
    min-height: 214px;
    padding: 20px;
  }

  .order-guidance,
  .pickup-reminder {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .store-info-list {
    margin-top: 30px;
  }

  .store-info-list article {
    padding: 16px;
  }

  .store-visual {
    height: 480px;
    min-height: 0;
  }

  .store-photo-copy {
    right: 20px;
    bottom: 90px;
    left: 20px;
  }

  .store-photo-copy h3 {
    font-size: 28px;
  }

  .store-visual .button {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .featured-news {
    height: 460px;
  }

  .featured-news h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .news-button {
    width: 100%;
  }

  .cooperation-image {
    height: 360px;
  }

  .cooperation-intro {
    padding-top: 60px;
  }

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

  .cooperation-phone {
    font-size: 25px;
  }

  .direction-grid article {
    grid-template-columns: 94px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .direction-grid p br {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 20px 32px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 60px;
    box-shadow: 0 -8px 30px rgba(35, 24, 21, 0.16);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--espresso);
    background: var(--cream);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--butter);
  }

  .toast {
    position: fixed;
    z-index: 130;
    right: 20px;
    bottom: 76px;
    left: 20px;
    display: block;
    padding: 12px 16px;
    color: var(--white);
    background: var(--espresso);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

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