@charset "UTF-8";

/* 1. Variables */
:root {
  --page-width: 1920px;
  --side-space: 44px;
  --content-width: 1832px;
  --text: #202020;
  --muted: #8d8d8d;
  --line: #dfdfdf;
  --soft-line: #e8e8e8;
  --surface: #f4f4f4;
  --dark: #222222;
  --white: #ffffff;
  --radius: 5px;
  --grid-gap: 55px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 28px;
  --space-l: 44px;
  --space-xl: 72px;
  --space-2xl: 96px;
  --section-heading-height: 80px;
  --font-cn: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Noto Sans SC", "Heiti SC", Arial, sans-serif;
  --font-jp: var(--font-cn);
  --font-en: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 2. Reset and base */
* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea,
select,
[lang="zh-CN"] {
  font-family: var(--font-cn);
}

/* 3. Shared layout and components */
.section-frame {
  width: calc(100% - (var(--side-space) * 2));
  max-width: var(--content-width);
  margin-inline: auto;
}

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

.section-heading-line {
  min-height: var(--section-heading-height);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--space-s);
}

.section-heading-line h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
}

.pill-arrow {
  width: 55px;
  height: 29px;
  border: 1px solid #aaa;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover .pill-arrow,
button:hover .pill-arrow {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateX(2px);
}

.pill-arrow--light {
  border-color: #6b6b6b;
  background: #3b3b3b;
  color: #fff;
}

.pill-arrow--outline {
  border-color: rgba(255,255,255,.58);
  color: #fff;
}

.pill-arrow--white {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.86);
  color: #222;
}

.cta-button {
  width: 360px;
  min-height: 64px;
  padding: 0 14px 0 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.cta-button--dark {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}

.cta-button--dark:hover {
  background: #fff;
  color: var(--dark);
}

.cta-button--outline {
  width: 405px;
  min-height: 58px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
}

.cta-button--outline:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cta-button--outline:hover .pill-arrow,
.cta-button--outline:hover .pill-arrow--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.external-icon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  position: relative;
  margin-left: 5px;
}

.external-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: -3px;
  top: -3px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: inherit;
}

/* 4. Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  z-index: 80;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  align-items: stretch;
  font-family: var(--font-cn);
}

.site-header__logo {
  display: flex;
  align-items: center;
  padding-left: 22px;
  background: rgba(72, 57, 37, .18);
}

.site-header__logo img {
  width: 94px;
  height: auto;
}

.site-header__nav-wrap {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(38, 31, 22, .56);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.global-nav {
  height: 72px;
  margin-left: auto;
  display: flex;
  align-items: center;
}

.global-nav > a,
.global-nav__dropdown-trigger {
  height: 72px;
  padding: 0 clamp(14px, 1.35vw, 26px);
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.global-nav > a::after,
.global-nav__dropdown-trigger::before {
  content: "";
  position: absolute;
  left: clamp(14px, 1.35vw, 26px);
  right: clamp(14px, 1.35vw, 26px);
  bottom: 17px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after,
.global-nav__dropdown.is-open > .global-nav__dropdown-trigger::before {
  transform: scaleX(1);
}

.global-nav__dropdown {
  height: 72px;
  position: relative;
}

.global-nav__dropdown-trigger {
  border: 0;
  background: transparent;
  font-family: inherit;
  gap: 10px;
}

.global-nav__dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, margin-top .2s ease;
}

.global-nav__dropdown.is-open > .global-nav__dropdown-trigger::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.global-nav__dropdown-panel {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  z-index: 4;
  width: 220px;
  padding: 10px 18px;
  border: 1px solid rgba(32, 32, 32, .08);
  border-radius: 3px;
  background: #f7f7f5;
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.global-nav__dropdown.is-open .global-nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.global-nav__dropdown-panel a {
  min-height: 48px;
  border-bottom: 1px solid #deded9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  transition: padding-left .2s ease, color .2s ease;
}

.global-nav__dropdown-panel a:last-child {
  border-bottom: 0;
}

.global-nav__dropdown-panel a::after {
  content: "›";
  color: #8d8d8d;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.global-nav__dropdown-panel a:hover,
.global-nav__dropdown-panel a:focus-visible {
  padding-left: 6px;
  color: #000;
}

.header-actions {
  height: 72px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
}

.menu-toggle {
  position: relative;
  z-index: 82;
  width: 72px;
  height: 54px;
  padding: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #fff;
  color: #222;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.menu-toggle__icon {
  width: 18px;
  height: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.menu-toggle__icon > span {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

/* 5. Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 75;
  display: block;
  padding: 0;
  background: rgba(12, 12, 12, .48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  font-family: var(--font-cn);
}

/* The native hidden state must override the drawer's display mode. */
.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__panel {
  width: min(540px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 34px 38px 28px;
  background: #f7f7f5;
  color: #202020;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(40px);
  opacity: 0;
  transition: transform .32s cubic-bezier(.22, .61, .36, 1), opacity .24s ease;
}

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

.mobile-menu__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid #d8d8d4;
  color: #8b8b87;
  font-family: var(--font-cn);
  font-size: 10px;
  letter-spacing: .08em;
}

.mobile-menu nav,
.mobile-menu__primary {
  max-width: none;
  margin: 0;
  display: grid;
}

.mobile-menu__primary a {
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px 1fr 42px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d8d8d4;
  color: #202020;
  font-size: inherit;
  transition: background-color .2s ease, padding-left .2s ease;
}

.mobile-menu__primary a:hover,
.mobile-menu__primary a:focus-visible {
  padding-left: 7px;
  background: rgba(255, 255, 255, .78);
}

.mobile-menu__number {
  color: #9b9b97;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .08em;
}

.mobile-menu__label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .015em;
}

.mobile-menu__arrow {
  width: 39px;
  height: 24px;
  border: 1px solid #8f8f8b;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.mobile-menu__primary a:hover .mobile-menu__arrow,
.mobile-menu__primary a:focus-visible .mobile-menu__arrow {
  border-color: #222;
  background: #222;
  color: #fff;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.mobile-menu__actions > a {
  min-height: 88px;
  padding: 16px 17px 15px;
  border-bottom: 0;
  border-radius: 3px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.mobile-menu__actions small {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-cn);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
}

.mobile-menu__store {
  background: #222;
  color: #fff;
}

.mobile-menu__contact {
  border: 1px solid #c9c9c5;
  background: #fff;
  color: #222;
}

.mobile-menu__action-icon {
  width: 34px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.mobile-menu__action-icon--mail {
  position: relative;
}

.mobile-menu__action-icon--mail::before {
  content: "";
  width: 13px;
  height: 9px;
  border: 1px solid currentColor;
}

.mobile-menu__action-icon--mail::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-menu__utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 24px;
  border-top: 1px solid #d8d8d4;
}

.mobile-menu__utility a {
  min-height: 46px;
  border-bottom: 1px solid #d8d8d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 12px;
}

.mobile-menu__utility a::after {
  content: "›";
  color: #999;
  font-family: Arial, sans-serif;
  font-size: 17px;
}


.mobile-menu__copyright {
  margin: 28px 0 0;
  color: #999;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .08em;
}

body.menu-open .site-header {
  position: fixed;
}

body.menu-open .menu-toggle {
  background: #222;
  color: #fff;
}

/* 6. Hero poster */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  max-height: 980px;
  overflow: hidden;
  background: #25211c;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #25211c;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity .72s ease,
    visibility .72s ease,
    transform 1.1s cubic-bezier(.22, .61, .36, 1);
}

.hero-slide.is-prev,
.hero-slide.is-next {
  opacity: 0;
  visibility: hidden;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.94) contrast(1.025);
  transition: transform 7s linear;
}

.hero-slide.is-active img {
  transform: scale(1.035);
}

.hero-slide:nth-child(1) img {
  object-position: center 52%;
}

.hero-slide:nth-child(2) img {
  object-position: center 55%;
}

.hero-slide:nth-child(3) img {
  object-position: center 44%;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero-slide:nth-child(1) .hero-slide__shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .64) 0%, rgba(10, 10, 10, .30) 42%, rgba(10, 10, 10, .04) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .12) 100%);
}

.hero-slide:nth-child(2) .hero-slide__shade,
.hero-slide:nth-child(3) .hero-slide__shade {
  background: linear-gradient(90deg, rgba(255, 255, 255, .76) 0%, rgba(255, 255, 255, .44) 38%, rgba(255, 255, 255, .08) 66%, rgba(255, 255, 255, 0) 78%);
}

.hero-slide.is-active .hero-slide__shade {
  opacity: 1;
}

.hero-slide__content {
  position: absolute;
  left: max(var(--side-space), calc((100vw - var(--content-width)) / 2));
  top: clamp(165px, 25vh, 260px);
  bottom: auto;
  z-index: 2;
  width: min(980px, calc(100% - (var(--side-space) * 2)));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease .18s, transform .55s ease .18s;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__content--inverse {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .26);
}

.hero-slide__content--dark {
  color: #171717;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .22);
}

.hero-slide__headline,
.hero-slide__content h1,
.hero-slide__content h2 {
  max-width: 980px;
  margin: 0;
  color: currentColor;
  font-size: clamp(26px, 1.8vw, 36px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.hero-slide__headline--en {
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero-slide__english {
  max-width: 920px;
  margin: 13px 0 0;
  color: currentColor;
  font-family: var(--font-en);
  font-size: clamp(17px, 1.18vw, 23px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .015em;
  text-wrap: balance;
}

.hero-slide__content--inverse .hero-slide__english {
  color: rgba(255, 255, 255, .88);
}

.hero-slide__content--dark .hero-slide__english {
  color: rgba(20, 20, 20, .78);
}

.hero-slide__content--english-first .hero-slide__english--first {
  max-width: 980px;
  margin: 0 0 10px;
  font-size: clamp(20px, 1.3vw, 25px);
  line-height: 1.45;
  letter-spacing: 0;
}


.hero-slide__lead {
  max-width: 920px;
  margin: 14px 0 0;
  color: currentColor;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: .01em;
  text-wrap: balance;
}

.hero-slide__content--inverse .hero-slide__lead {
  color: rgba(255, 255, 255, .96);
}

.hero-slide__content--dark .hero-slide__lead {
  color: rgba(20, 20, 20, .92);
}

/* Retained for compatibility with any future slide CTA. */
.hero-slide__eyebrow {
  margin: 0 0 15px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .18em;
}

.hero-slide__link {
  width: min(340px, 100%);
  min-height: 56px;
  margin-top: 28px;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease;
}

.hero-slide__link:hover,
.hero-slide__link:focus-visible {
  border-color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .1);
}

.hero-controls {
  position: absolute;
  right: max(var(--side-space), calc((100vw - var(--content-width)) / 2));
  bottom: clamp(34px, 4vh, 52px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}

.hero-control {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 14, .12);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--dark);
}

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 32px;
  height: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  background: transparent;
  cursor: pointer;
}

.hero-dot span {
  width: 100%;
  height: 1px;
  display: block;
  background: rgba(255, 255, 255, .48);
  transition: height .2s ease, background-color .2s ease;
}

.hero-dot.is-active span {
  height: 2px;
  background: var(--white);
}

/* 7. About */
.about {
  padding: 0 0 var(--space-2xl);
}

.about-heading {
  min-height: 120px;
  margin-bottom: var(--space-l);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-l);
}

.about-heading__eyebrow,
.about-heading__intro,
.about-heading h2 {
  margin: 0;
}

.about-heading__eyebrow {
  color: #8a8a86;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.about-heading h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  text-align: center;
}

.about-heading__intro {
  max-width: 430px;
  justify-self: end;
  color: #777773;
  font-size: 13px;
  line-height: 1.85;
}

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

.about-card {
  min-width: 0;
}

.about-card__image {
  position: relative;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  border-radius: 34px 0 34px 0;
  background: #e8e6e1;
}

.about-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.about-card:nth-child(1) .about-card__image img {
  object-position: center 54%;
}

.about-card:nth-child(2) .about-card__image img {
  object-position: center 48%;
}

.about-card:nth-child(3) .about-card__image img {
  object-position: center 45%;
}

.about-card:hover .about-card__image img {
  transform: scale(1.025);
}

.about-card__index {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 34, 34, .26);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.about-card__body {
  padding-top: 25px;
}

.about-card__body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
}

.about-card__en {
  margin: 7px 0 21px;
  color: #888884;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
}

.about-card__body > p:last-child {
  margin: 0;
  color: #4f4f4c;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}


/* 7.5. About process */
.about-process {
  padding: 0;
  background: transparent;
}

.about-process__frame--full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-process__artboard--full {
  display: block;
  width: 100%;
  margin: 0;
}

.about-process__image--full {
  display: block;
  width: 100%;
  height: auto;
}

/* 8. Product features and categories */
.section-heading-line--centered {
  min-height: var(--section-heading-height);
  padding: 0 0 var(--space-s);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.product-features {
  padding: 0 0 var(--space-2xl);
  counter-reset: feature-card;
}

.product-categories {
  padding: 0 0 var(--space-2xl);
  background: linear-gradient(to bottom, var(--white) 0, var(--white) var(--section-heading-height), #f7f4ef var(--section-heading-height), #f7f4ef 100%);
  counter-reset: category-card;
}

.feature-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-l) var(--grid-gap);
  padding-top: var(--space-l);
}

.feature-card,
.category-card {
  min-width: 0;
}

.feature-card {
  counter-increment: feature-card;
}

.feature-card__media,
.category-card__media {
  position: relative;
  overflow: hidden;
}

.feature-card__media {
  aspect-ratio: 1.52 / 1;
  border-radius: 32px 0 32px 0;
  background: #f5f2ee;
}

.feature-card__media::before {
  content: counter(feature-card, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  min-width: 44px;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .78);
  color: #55514d;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

.feature-card__media::after {
  display: none;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.feature-card h3 {
  max-width: 320px;
  margin: 18px 0 0;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .01em;
}

.feature-card h3::before {
  content: "FEATURE";
  display: block;
  margin-bottom: 7px;
  color: #9a958f;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.category-card {
  counter-increment: category-card;
  position: relative;
  display: block;
  padding: 22px;
  border-radius: 34px 0 34px 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .07);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.category-card__media {
  aspect-ratio: 1.68 / 1;
  border-radius: 26px 0 26px 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #faf8f5 0%, #f1ece5 100%);
}

.category-card__media::before {
  content: counter(category-card, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(32, 32, 32, .08);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .82);
  color: #8f8881;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.category-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .45s ease;
}

.category-card h3 {
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .01em;
}

.category-card__hint {
  margin: 8px 0 0;
  color: #8b857f;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .08em;
}

.category-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease, color .2s ease;
}

.category-card:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 6px;
}

.feature-card:hover .feature-card__media img,
.category-card:hover .category-card__media img,
.category-card:focus-visible .category-card__media img {
  transform: scale(1.035);
}

.category-card:hover,
.category-card:focus-visible {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .09), 0 18px 34px rgba(32, 32, 32, .06);
  transform: translateY(-3px);
}

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

.category-card:hover h3,
.category-card:focus-visible h3 {
  color: #4a4a4a;
}

/* 9. Case showcase */
.case-showcase {
  padding: 0 0 138px;
}

.case-showcase__frame {
  position: relative;
}

.case-showcase__slider {
  position: relative;
  padding-top: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.case-showcase__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.case-showcase__viewport::-webkit-scrollbar {
  display: none;
}

.case-showcase__track {
  display: flex;
  gap: 24px;
}

.case-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  color: inherit;
}

.case-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 34px 0 34px 0;
  background: #f3f0eb;
}

.case-card__media::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px 20px;
  height: 1px;
  background: rgba(255, 255, 255, .48);
  mix-blend-mode: screen;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.case-card__body {
  padding-top: 16px;
  text-align: center;
}

.case-card__eyebrow {
  margin: 0 0 8px;
  color: #8d8781;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.case-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .01em;
}

.case-card:hover .case-card__media img,
.case-card:focus-visible .case-card__media img {
  transform: scale(1.04);
}

.case-card:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 6px;
}

.case-showcase__control {
  position: absolute;
  top: 37%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(34, 34, 34, .35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 216, 199, .92);
  color: #2f2924;
  box-shadow: 0 10px 24px rgba(32, 32, 32, .08);
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.case-showcase__control:hover,
.case-showcase__control:focus-visible {
  background: #f2dccd;
  transform: translateY(-1px);
}

.case-showcase__control[disabled] {
  opacity: .45;
  cursor: default;
  transform: none;
}

.case-showcase__control--prev {
  left: -22px;
}

.case-showcase__control--next {
  right: -22px;
}

.case-showcase__control span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

/* 10. Vlog */
.vlog-showcase {
  padding: 0 0 112px;
}

.vlog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 2vw, 34px);
  padding-top: 34px;
}

.vlog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.vlog-card__video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 34px 0 34px 0;
  background: #eeeae5;
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .06);
}

.vlog-card__video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #262626;
  object-fit: cover;
}

.vlog-card__video video:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -5px;
}

.vlog-card__social-inner {
  width: 100%;
  min-height: 100%;
  padding: clamp(28px, 3vw, 46px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vlog-card__social {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 34px 0 34px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 220, 205, .82), transparent 26%),
    linear-gradient(155deg, #f8f5f1 0%, #eee8e1 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vlog-card__social::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.vlog-card__social-label {
  margin: 0 0 26px;
  color: #8d8781;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
}

.vlog-card__social img {
  width: min(72%, 210px);
  height: auto;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 32, 32, .08);
}

.vlog-card__social strong {
  margin-top: 26px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}

.vlog-card__social span {
  max-width: 220px;
  margin-top: 10px;
  color: #77716b;
  font-size: 12px;
  line-height: 1.8;
}

.vlog-card__social:hover,
.vlog-card__social:focus-visible {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .08), 0 18px 36px rgba(32, 32, 32, .07);
}

.vlog-card__social:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 6px;
}

.vlog-card__body {
  min-height: 84px;
  padding: 17px 4px 0;
}

.vlog-card__eyebrow {
  margin: 0 0 8px;
  color: #9a948e;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .16em;
}

.vlog-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .01em;
}


/* 11. Purchase channels */
.purchase-channels {
  padding: 0 0 142px;
  background: linear-gradient(to bottom, var(--white) 0, var(--white) 110px, #f7f4ef 110px, #f7f4ef 100%);
}

.purchase-channels__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.58fr);
  gap: clamp(34px, 4vw, 72px);
  padding-top: 42px;
  align-items: stretch;
}

.online-shop-card {
  min-width: 0;
  min-height: 650px;
  padding: clamp(34px, 3.2vw, 52px);
  border-radius: 42px 0 42px 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 86% 15%, rgba(255, 255, 255, .10), transparent 26%),
    #242424;
  color: var(--white);
}

.online-shop-card__header {
  max-width: 430px;
}

.online-shop-card__eyebrow,
.offline-stores__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.online-shop-card__eyebrow {
  color: rgba(255, 255, 255, .58);
}

.online-shop-card__header h3,
.offline-stores__header h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.online-shop-card__header > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.9;
}

.online-shop-card__qr {
  width: min(78%, 310px);
  margin: auto auto 32px;
  padding: 20px;
  border-radius: 28px 0 28px 0;
  display: block;
  background: var(--white);
  color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease;
}

.online-shop-card__qr:hover,
.online-shop-card__qr:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.online-shop-card__qr:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 6px;
}

.online-shop-card__qr-label {
  display: block;
  margin-bottom: 13px;
  color: #77716b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .08em;
  text-align: center;
}

.online-shop-card__qr img {
  width: 100%;
  height: auto;
}

.online-shop-card__button {
  min-height: 60px;
  padding: 0 14px 0 22px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease;
}

.online-shop-card__button:hover,
.online-shop-card__button:focus-visible {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

.offline-stores {
  min-width: 0;
}

.offline-stores__header {
  min-height: 115px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(32, 32, 32, .12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 24px;
}

.offline-stores__eyebrow {
  color: #9a948e;
}

.offline-stores__header > p {
  max-width: 360px;
  margin: 0;
  color: #77716b;
  font-size: 13px;
  line-height: 1.8;
}

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

.store-card {
  min-width: 0;
  min-height: 190px;
  border-radius: 28px 0 28px 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  background: rgba(255, 255, 255, .90);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.store-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .08), 0 15px 30px rgba(32, 32, 32, .05);
}

.store-card__image {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.store-card:nth-child(1) .store-card__image,
.store-card:nth-child(3) .store-card__image,
.store-card:nth-child(5) .store-card__image {
  object-position: center;
}

.store-card__body {
  min-width: 0;
  padding: 24px 22px 22px;
}

.store-card__city {
  margin: 0 0 8px;
  color: #9b958e;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .16em;
}

.store-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.store-card__branch {
  margin: 5px 0 0;
  color: #57534f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.store-card address {
  margin-top: 13px;
  font-style: normal;
}

.store-card__detail {
  position: relative;
  display: block;
  padding-left: 18px;
  color: #6f6a65;
  font-size: 12px;
  line-height: 1.7;
}

.store-card__detail + .store-card__detail {
  margin-top: 7px;
}

.store-card__detail::before {
  position: absolute;
  left: 0;
  top: .05em;
  color: #2c2926;
  font-size: 12px;
  line-height: 1.7;
}

.store-card__detail--address::before {
  content: "●";
  font-size: 8px;
  top: .32em;
}

.store-card__detail--phone::before {
  content: "☎";
  top: 0;
}

.store-card__detail--phone {
  width: fit-content;
  color: #262321;
  font-weight: 600;
}

.store-card__detail--phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 16. Footer */
.site-footer {
  position: relative;
  padding: 0 0 22px;
  background: #f7f4ef;
}

.contact-footer__frame {
  padding-top: 0;
}

.contact-footer__heading {
  background: transparent;
}

.contact-footer__layout {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(620px, 1.42fr);
  gap: clamp(44px, 4vw, 72px);
  align-items: start;
  padding: var(--space-l) 0 var(--space-xl);
}

.contact-footer__company {
  min-width: 0;
}

.company-contact + .company-contact {
  margin-top: 38px;
}

.company-contact__eyebrow,
.company-contact h3,
.company-contact__name,
.company-contact address,
.company-contact address p {
  margin: 0;
}

.company-contact__eyebrow {
  color: #97918b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.company-contact h3 {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.company-contact__name {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.company-contact address {
  margin-top: 18px;
  font-style: normal;
}

.company-contact address p {
  position: relative;
  padding-left: 26px;
  color: #56514c;
  font-size: 13px;
  line-height: 1.9;
}

.company-contact address a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(86, 81, 76, .28);
  text-underline-offset: 3px;
}

.contact-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  color: #292623;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-footer__qrs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.footer-qr {
  min-width: 0;
  display: block;
  color: inherit;
  text-align: center;
}

.footer-qr__image {
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 22px 0 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .07);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.footer-qr__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-qr__label {
  margin-top: 10px;
  display: block;
  color: #5f5a55;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-qr:hover .footer-qr__image,
.footer-qr:focus-visible .footer-qr__image {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .1), 0 12px 24px rgba(32, 32, 32, .06);
  transform: translateY(-2px);
}

.contact-form {
  min-width: 0;
  padding: clamp(34px, 3vw, 52px);
  border-radius: 42px 0 42px 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, .08);
}

.contact-form__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.contact-form__mark {
  position: relative;
  width: 42px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid #3f3a36;
  border-radius: 16px 16px 3px 3px;
}

.contact-form__mark::before,
.contact-form__mark::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 1px;
  height: 9px;
  background: #3f3a36;
}

.contact-form__mark::before {
  left: 9px;
}

.contact-form__mark::after {
  right: 9px;
}

.contact-form__header p,
.contact-form__header h3 {
  margin: 0;
}

.contact-form__header p {
  color: #9a948e;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
}

.contact-form__header h3 {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.contact-field {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field > span {
  color: #5f5a55;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-field em {
  margin-left: 6px;
  color: #a88068;
  font-size: 9px;
  font-style: normal;
  letter-spacing: .08em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #cfc9c3;
  border-radius: 0;
  padding: 8px 2px 10px;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-field textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #4c4641;
  background: rgba(255, 255, 255, .42);
}

.contact-form__submit {
  width: min(100%, 320px);
  min-height: 58px;
  margin: 34px 0 0 auto;
  padding: 0 12px 0 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.contact-footer__bottom {
  width: calc(100% - (var(--side-space) * 2));
  max-width: var(--content-width);
  min-height: 48px;
  margin-inline: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(32, 32, 32, .12);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  color: #77716b;
  font-family: var(--font-en);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .03em;
}

.contact-footer__bottom p {
  margin: 0;
}

/* 17. Accessibility and focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #2b6cb0;
  outline-offset: 3px;
}

/* 18. Responsive styles */
@media (max-width: 1599px) {
  :root {
    --side-space: 34px;
    --grid-gap: 40px;
  }

  .global-nav > a,
  .global-nav__dropdown-trigger {
    padding-inline: 12px;
    font-size: 12px;
  }

  .global-nav > a::after,
  .global-nav__dropdown-trigger::before {
    left: 12px;
    right: 12px;
  }

  .business-grid {
    grid-template-columns: minmax(0, .9fr) minmax(570px, 1.1fr);
    gap: 40px;
  }


  .quick-panel {
    width: calc(100% - 200px);
  }

  

  
}

@media (min-width: 1280px) {
  .site-header__nav-wrap {
    width: fit-content;
    max-width: calc(100vw - 292px);
    justify-self: end;
    box-shadow: 0 8px 18px -12px rgba(0, 0, 0, .48);
  }

  .global-nav > a,
  .global-nav__dropdown-trigger {
    padding-inline: clamp(40px, 2.8vw, 56px);
  }

  .global-nav > a::after,
  .global-nav__dropdown-trigger::before {
    left: clamp(40px, 2.8vw, 56px);
    right: clamp(40px, 2.8vw, 56px);
  }
}

@media (max-width: 1279px) {
  .global-nav {
    display: none;
  }

  .hero {
    min-height: 680px;
    max-height: 900px;
  }

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

  .business-copy h3 {
    font-size: 29px;
  }


  .innovation-card__content h3 {
    font-size: 19px;
  }

  .case-showcase {
    padding-bottom: 108px;
  }

  .case-card {
    flex-basis: calc((100% - 48px) / 3);
  }

  .case-showcase__control--prev {
    left: -12px;
  }

  .case-showcase__control--next {
    right: -12px;
  }

  .vlog-showcase {
    padding-bottom: 88px;
  }

  .vlog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .vlog-card__video,
  .vlog-card__social {
    aspect-ratio: 9 / 15;
  }

  .purchase-channels {
    padding-bottom: 110px;
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 96px, #f7f4ef 96px, #f7f4ef 100%);
  }

  .purchase-channels__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 34px;
  }

  .online-shop-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 240px;
    grid-template-rows: auto auto;
    column-gap: 42px;
    row-gap: 28px;
    display: grid;
    align-items: center;
  }

  .online-shop-card__header {
    grid-column: 1;
    grid-row: 1;
  }

  .online-shop-card__qr {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    margin: 0;
  }

  .online-shop-card__button {
    grid-column: 1;
    grid-row: 2;
  }

  .quick-panel {
    width: calc(100% - 100px);
    padding-inline: 42px;
  }

  .quick-stats {
    column-gap: 20px;
  }

  .stat-item strong {
    font-size: 76px;
  }

  

  .service-card__content {
    width: calc(100% - 180px);
    padding-inline: 28px;
  }

  .service-card__thumb {
    right: 22px;
    width: 135px;
    height: 135px;
  }

  .innovation-top {
    display: block;
  }

  .innovation-brand,
  .innovation-intro {
    grid-column: auto;
  }

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

  .footer-frame {
    width: calc(100% - 48px);
    min-height: 0;
    padding: 36px 32px 56px;
  }

  .footer-top {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
  }

  .footer-sitemap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 34px;
    margin-top: 72px;
  }

  .copyright {
    width: calc(100% - 48px);
  }
}

@media (max-width: 1023px) {
  :root {
    --side-space: 24px;
  }

  .hero {
    min-height: 640px;
    max-height: 840px;
  }

  .hero-slide__content {
    left: var(--side-space);
    top: clamp(145px, 23vh, 210px);
    bottom: auto;
    width: min(760px, calc(100% - (var(--side-space) * 2)));
  }

  .hero-slide__headline,
  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: clamp(25px, 3.1vw, 32px);
  }

  .hero-slide__lead {
    font-size: clamp(18px, 2.05vw, 22px);
  }

  .hero-slide__english {
    margin-top: 10px;
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .hero-controls {
    right: var(--side-space);
    bottom: 28px;
  }

  .about,
.business,
.innovation,
.quick-guide,
.site-footer{
    height: auto;
    min-height: 0;
  }

  .about {
    padding-bottom: 80px;
  }

  .about-heading {
    min-height: 120px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 28px;
    text-align: center;
  }

  .about-heading__intro {
    max-width: 620px;
    justify-self: center;
  }

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

  .about-card {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: start;
  }

  .about-card__body {
    padding-top: 8px;
  }

  .product-features {
    padding: 0 0 80px;
  }

  .product-categories {
    padding: 0 0 80px;
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 80px, #f7f4ef 80px, #f7f4ef 100%);
  }

  .section-heading-line--centered {
    min-height: 80px;
  }

  .feature-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
    padding-top: 40px;
  }

  .feature-card h3 {
    max-width: none;
    font-size: 17px;
    padding-right: 16px;
  }

  .category-card {
    padding: 18px;
  }

  .category-card h3 {
    font-size: 18px;
  }
.business{
    padding-block: 56px 80px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .business-copy p {
    max-width: 760px;
  }

  .synergy-diagram {
    margin-top: 60px;
  }

  .innovation {
    padding-block: 58px 70px;
  }

  .innovation__frame {
    padding-top: 0;
  }

  .innovation-top {
    height: auto;
    min-height: 210px;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-showcase {
    padding-bottom: 88px;
  }

  .case-showcase__slider {
    padding-top: 28px;
  }

  .case-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .case-showcase__control {
    top: 34%;
  }

  .vlog-showcase {
    padding-bottom: 78px;
  }

  .vlog-grid {
    gap: 36px 24px;
    padding-top: 28px;
  }

  .online-shop-card {
    grid-template-columns: minmax(0, 1fr) 210px;
    column-gap: 32px;
  }

  .offline-stores__header {
    align-items: flex-start;
  }

  .store-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .store-card__image {
    min-height: 198px;
  }

  .store-card__body {
    padding: 22px 18px 20px;
  }

  .quick-guide {
    padding-block: 70px 80px;
  }

  .quick-panel {
    width: calc(100% - 48px);
    height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .quick-copy p {
    margin-top: 35px;
  }

  .quick-stats {
    grid-template-rows: auto auto;
    row-gap: 38px;
  }

  .product-marquee {
    margin-top: 45px;
  }

  

  

  

  

  

  

  

  

  .synergy-diagram {
    align-items: center;
  }

  .synergy-diagram__header,
  .synergy-diagram__svg {
    width: min(100%, 760px);
  }

  .synergy-diagram__logo {
    width: 172px;
  }

  .synergy-diagram__heading {
    font-size: 21px;
  }

  .innovation-intro .cta-button--outline {
    width: 360px;
  }

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

  .footer-brand {
    padding-top: 0;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-sitemap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .site-header {
    height: 64px;
    grid-template-columns: 145px minmax(0, 1fr);
    padding: 0 10px 0 18px;
    background: rgba(31, 26, 19, .62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .site-header__logo {
    width: 145px;
    height: 64px;
    padding-left: 0;
    background: transparent;
  }

  .site-header__logo img {
    width: 100px;
  }

  .site-header__nav-wrap {
    flex: 1;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-actions {
    height: 64px;
    margin-left: auto;
    padding: 7px 0;
    gap: 5px;
    background: transparent;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0 16px;
  }

  .mobile-menu {
    inset: 0;
    background: #f1f1ef;
    overflow-y: auto;
  }

  .mobile-menu__panel {
    width: 100%;
    max-width: none;
    min-height: 100%;
    height: auto;
    margin: 0;
    padding: 96px max(32px, calc((100vw - 900px) / 2)) 38px;
    background: transparent;
    transform: translateY(14px);
  }

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

  body.menu-open .site-header {
    background: rgba(31, 26, 19, .9);
  }
}

@media (max-width: 767px) {
  .section-heading-line,
.business .section-heading-line{
    min-height: 62px;
    padding-bottom: 12px;
  }

  :root {
    --side-space: 18px;
  }

  body {
    font-size: 15px;
  }

  .section-heading-line h2 {
    font-size: 23px;
  }

  .hero {
    height: 100svh;
    min-height: 620px;
    max-height: 780px;
  }

  .hero-slide__content {
    left: var(--side-space);
    top: clamp(128px, 22vh, 176px);
    bottom: auto;
    width: calc(100% - (var(--side-space) * 2));
  }

  .hero-slide__eyebrow {
    margin-bottom: 11px;
    font-size: 9px;
  }

  .hero-slide__headline,
  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: 1.38;
  }

  .hero-slide__lead {
    max-width: 34em;
    margin-top: 12px;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.6;
  }

  .hero-slide__english {
    max-width: 30em;
    margin-top: 9px;
    font-size: clamp(14px, 3.7vw, 17px);
    line-height: 1.5;
    letter-spacing: .035em;
  }

  .hero-slide__content--english-first .hero-slide__english--first {
    margin: 0 0 8px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .hero-slide__link {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-controls {
    right: var(--side-space);
    bottom: 18px;
    gap: 12px;
  }

  .hero-control {
    width: 36px;
    height: 36px;
  }

  .hero-dot {
    width: 22px;
  }

  .about {
    padding-bottom: 72px;
  }

  .about-heading {
    min-height: 0;
    margin-bottom: 34px;
    padding-block: 28px;
  }

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

  .about-heading__intro {
    font-size: 12px;
    line-height: 1.75;
  }

  .about-grid {
    gap: 40px;
  }

  .about-card {
    display: block;
  }

  .about-card__image {
    border-radius: 26px 0 26px 0;
  }

  .about-card__body {
    padding-top: 21px;
  }

  .about-card__body h3 {
    font-size: 22px;
  }

  .about-card__en {
    margin-bottom: 15px;
  }

  .about-card__body > p:last-child {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .product-features {
    padding: 0 0 64px;
  }

  .product-categories {
    padding: 0 0 64px;
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 62px, #f7f4ef 62px, #f7f4ef 100%);
  }

  .section-heading-line--centered {
    min-height: 62px;
    padding-bottom: 12px;
  }

  .feature-grid,
  .category-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
  }

  .feature-card__media {
    border-radius: 24px 0 24px 0;
  }

  .category-card {
    padding: 16px;
    border-radius: 28px 0 28px 0;
  }

  .category-card__media {
    border-radius: 22px 0 22px 0;
  }

  .feature-card__media::before,
  .category-card__media::before {
    left: 14px;
    top: 14px;
  }

  .feature-card h3 {
    max-width: none;
    margin-top: 14px;
    padding-right: 10px;
    font-size: 17px;
    line-height: 1.6;
  }

  .feature-card h3::before {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .category-card h3 {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .category-card__hint {
    margin-top: 6px;
    font-size: 11px;
  }

  .category-card__arrow {
    right: 14px;
    bottom: 14px;
    opacity: 1;
    transform: none;
  }
.business{
    padding-block: 45px 64px;
  }

  .business-grid {
    margin-top: 40px;
  }

  .business-copy h3 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .business-copy p {
    font-size: 14px;
  }

  .cta-button,
  .cta-button--outline {
    width: 100%;
  }

  .innovation {
    padding-block: 48px 54px;
  }

  .innovation-top {
    display: block;
    min-height: 310px;
  }

  .innovation-brand h2 {
    font-size: 50px;
  }

  .innovation-intro {
    width: 100%;
    margin-top: 50px;
  }

  .innovation-intro p {
    font-size: 15px;
  }

  .innovation-card__content h3 {
    font-size: 18px;
  }

  .case-showcase {
    padding-bottom: 68px;
  }

  .case-showcase__slider {
    padding-top: 22px;
  }

  .case-card {
    flex-basis: 84%;
  }

  .case-card__media {
    border-radius: 28px 0 28px 0;
  }

  .case-card__body {
    padding-top: 14px;
  }

  .case-card h3 {
    font-size: 16px;
  }

  .case-showcase__control {
    top: 32%;
    width: 42px;
    height: 42px;
  }

  .case-showcase__control--prev {
    left: -6px;
  }

  .case-showcase__control--next {
    right: -6px;
  }

  .vlog-showcase {
    padding-bottom: 68px;
    overflow: hidden;
  }

  .vlog-grid {
    width: calc(100% + var(--side-space));
    display: flex;
    gap: 18px;
    padding-top: 22px;
    padding-right: var(--side-space);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .vlog-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .vlog-card__video,
  .vlog-card__social {
    aspect-ratio: 9 / 16;
    border-radius: 28px 0 28px 0;
  }

  .vlog-card__social-inner {
    padding: 34px 22px;
  }

  .vlog-card__social img {
    width: min(68%, 190px);
  }

  .vlog-card__body {
    min-height: 76px;
    padding-top: 14px;
  }

  .vlog-card h3 {
    font-size: 17px;
  }

  .purchase-channels {
    padding-bottom: 72px;
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 72px, #f7f4ef 72px, #f7f4ef 100%);
  }

  .purchase-channels__layout {
    gap: 30px;
    padding-top: 22px;
  }

  .online-shop-card {
    min-height: 0;
    padding: 30px 24px 24px;
    border-radius: 32px 0 32px 0;
    display: flex;
  }

  .online-shop-card__header h3,
  .offline-stores__header h3 {
    font-size: 23px;
  }

  .online-shop-card__header > p:last-child {
    margin-top: 14px;
    font-size: 13px;
  }

  .online-shop-card__qr {
    width: min(74%, 230px);
    margin: 32px auto 24px;
    padding: 16px;
    border-radius: 22px 0 22px 0;
  }

  .online-shop-card__button {
    width: 100%;
    min-height: 54px;
  }

  .offline-stores__header {
    min-height: 0;
    margin-bottom: 20px;
    display: block;
    padding-bottom: 20px;
  }

  .offline-stores__header > p {
    max-width: none;
    margin-top: 12px;
    font-size: 12px;
  }

  .offline-stores__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .store-card {
    min-height: 172px;
    grid-template-columns: 108px minmax(0, 1fr);
    border-radius: 24px 0 24px 0;
  }

  .store-card__image {
    min-height: 172px;
  }

  .store-card__body {
    padding: 19px 16px 17px;
  }

  .store-card h4 {
    font-size: 15px;
  }

  .store-card__branch,
  .store-card__detail {
    font-size: 11px;
  }

  .quick-guide {
    padding-block: 52px 60px;
  }

  .quick-panel {
    width: calc(100% - 36px);
    padding: 42px 24px;
  }

  .quick-copy img {
    width: 170px;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .stat-item {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .stat-item strong {
    font-size: 72px;
  }

  .quick-cta {
    grid-column: auto;
  }

  .product-group {
    gap: 24px;
    padding-right: 24px;
  }

  .product-track img {
    width: 190px;
  }

  

  

  

  

  .dual-card__image {
    margin-top: 34px;
  }

  

  

  

  

  

  
  
  
  

  

  

  .service-card__content {
    width: 100%;
    padding: 34px 24px;
  }

  .service-card__content h2 {
    font-size: 33px;
    margin-bottom: 25px;
  }

  

  

  .service-card__thumb {
    width: 128px;
    height: 128px;
    top: auto;
    right: 22px;
    bottom: 22px;
  }

  .service-card__content > a {
    margin-top: 42px;
  }

  

  

  

  .business-grid,
  .business-copy,
  .synergy-diagram {
    width: 100%;
    max-width: 100%;
  }

  .synergy-diagram__header {
    gap: 16px;
    margin-bottom: 10px;
  }

  .synergy-diagram__logo {
    width: 132px;
    max-width: 42%;
  }

  .synergy-diagram__heading {
    font-size: 17px;
  }

  .innovation-intro .cta-button--outline {
    width: 320px;
    max-width: 100%;
  }

  .site-footer {
    padding: 38px 0 0;
  }

  .footer-frame {
    width: calc(100% - 24px);
    padding: 32px 22px 42px;
    border-radius: 3px;
  }

  .footer-brand__buttons {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .footer-contact {
    padding: 30px 22px;
  }

  .footer-contact a {
    font-size: 12px;
  }

  .footer-sitemap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 28px;
    margin-top: 62px;
  }

  .footer-column section + section {
    margin-top: 50px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .copyright {
    width: 100%;
    min-height: 70px;
    margin: 0;
    padding: 22px 22px 20px;
    font-size: 13px;
  }

  .mobile-menu__eyebrow {
    padding-bottom: 13px;
    font-size: 9px;
  }

  .mobile-menu__primary a {
    min-height: 58px;
    grid-template-columns: 29px 1fr 38px;
    gap: 9px;
  }

  .mobile-menu__label {
    font-size: 17px;
  }

  .mobile-menu__arrow {
    width: 34px;
    height: 22px;
    font-size: 16px;
  }

  .mobile-menu__actions {
    margin-top: 20px;
  }

  .mobile-menu__actions > a {
    min-height: 76px;
    padding: 13px 14px 12px;
    font-size: 12px;
  }

  .mobile-menu__utility {
    margin-top: 20px;
    gap: 0 18px;
  }

  .site-header {
    height: 64px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0 10px 0 16px;
    background: rgba(31, 26, 19, .62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .site-header__logo {
    width: auto;
    height: 64px;
    padding: 0;
    background: transparent;
  }

  .site-header__logo img {
    width: 92px;
  }

  .site-header__nav-wrap {
    flex: 0 0 auto;
    margin-left: auto;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-actions {
    width: auto;
    height: 64px;
    margin: 0;
    padding: 9px 0;
    gap: 0;
    background: transparent;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: 4px;
  }

  .mobile-menu {
    inset: 0;
    background: #f1f1ef;
    overflow-y: auto;
  }

  .mobile-menu__panel {
    width: 100%;
    max-width: none;
    min-height: 100%;
    height: auto;
    margin: 0;
    padding: 88px 20px 28px;
    background: transparent;
    transform: translateY(12px);
  }

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

  body.menu-open .site-header {
    background: rgba(31, 26, 19, .9);
  }

  .about-process {
    padding: 0;
  }
}

@media (max-width: 430px) {
  .store-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .store-card__body {
    padding-inline: 14px;
  }

  .store-card__detail {
    padding-left: 15px;
  }

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

@media (max-width: 1279px) {
  .site-footer {
    padding-top: 0;
  }

  .contact-footer__layout {
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .contact-form {
    padding: 36px;
  }
}

@media (max-width: 1023px) {
  .contact-footer__frame {
    padding-top: 0;
  }

  .contact-footer__layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 40px 0 64px;
  }

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

  .company-contact + .company-contact {
    margin-top: 0;
  }

  .contact-footer__qrs {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 16px;
  }

  .contact-footer__frame {
    padding-top: 0;
  }

  .contact-footer__layout {
    gap: 34px;
    padding: 28px 0 48px;
  }

  .contact-footer__company {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-footer__qrs {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
  }

  .footer-qr__image {
    padding: 8px;
    border-radius: 16px 0 16px 0;
  }

  .footer-qr__label {
    margin-top: 7px;
    font-size: 10px;
  }

  .company-contact h3 {
    font-size: 18px;
  }

  .company-contact__name {
    font-size: 15px;
  }

  .company-contact address p {
    font-size: 12px;
    line-height: 1.85;
  }

  .contact-form {
    padding: 28px 20px 22px;
    border-radius: 30px 0 30px 0;
  }

  .contact-form__header {
    margin-bottom: 28px;
  }

  .contact-form__header h3 {
    font-size: 20px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-field--full {
    grid-column: auto;
  }

  .contact-form__submit {
    width: 100%;
    margin-top: 28px;
  }

  .contact-footer__bottom {
    width: calc(100% - 36px);
    min-height: 0;
    padding: 15px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    font-size: 10px;
  }
}

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

  .product-track {
    animation: none;
  }

  .hero-slide,
  .hero-slide img,
  .hero-slide__content,
  .mobile-menu,
  .mobile-menu__panel,
  .case-card__media img,
  .case-showcase__control {
    transition: none;
  }

  .hero-slide.is-active img {
    transform: none;
  }
}

/* =========================================================
   STEP17: Unified square corners for homepage modules
   Scope: convert image/media/cards/panels shown in homepage sections to square corners.
   Keep pills, arrows, circular controls, and buttons unchanged.
   ========================================================= */

.about-card__image,
.feature-card__media,
.category-card,
.category-card__media,
.case-card__media,
.vlog-card__video,
.vlog-card__social,
.vlog-card__social img,
.online-shop-card,
.online-shop-card__qr,
.store-card,
.footer-qr__image,
.contact-form {
  border-radius: 0 !important;
}

/* remove decorative rounded background bubble in social card to keep square visual language */
.vlog-card__social::after {
  border-radius: 0 !important;
}

/* keep media/canvas edges square on all viewports */
@media (max-width: 1279px) {
  .about-card__image,
  .feature-card__media,
  .category-card,
  .category-card__media,
  .case-card__media,
  .vlog-card__video,
  .vlog-card__social,
  .vlog-card__social img,
  .online-shop-card,
  .online-shop-card__qr,
  .store-card,
  .footer-qr__image,
  .contact-form {
    border-radius: 0 !important;
  }
}

@media (max-width: 767px) {
  .about-card__image,
  .feature-card__media,
  .category-card,
  .category-card__media,
  .case-card__media,
  .vlog-card__video,
  .vlog-card__social,
  .vlog-card__social img,
  .online-shop-card,
  .online-shop-card__qr,
  .store-card,
  .footer-qr__image,
  .contact-form {
    border-radius: 0 !important;
  }
}
