:root {
  --paper: #f5f1e9;
  --paper-deep: #e9e2d6;
  --ink: #211f1b;
  --muted: #736f67;
  --line: rgba(33, 31, 27, 0.16);
  --wine: #6c2331;
  --wine-dark: #42141d;
  --sage: #859080;
  --white: #fffdf8;
  --sans: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
  --serif: "Songti SC", "SimSun", "STSong", serif;
  --shell: min(1240px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(33, 31, 27, 0.09);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-copy small,
.footer-brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.19em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.site-nav a {
  position: relative;
  padding: 31px 0;
}

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

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

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  transition: 220ms ease;
}

.header-contact:hover {
  color: var(--white);
  border-color: var(--wine);
  background: var(--wine);
}

.mobile-nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px max(7vw, 48px);
  border-bottom: 1px solid var(--line);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-wash {
  background: linear-gradient(90deg, rgba(245, 241, 233, 0.97) 0%, rgba(245, 241, 233, 0.9) 31%, rgba(245, 241, 233, 0.28) 61%, rgba(33, 31, 27, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 55vw);
  padding-left: 4vw;
  animation: rise-in 850ms 160ms ease both;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px 0;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #d8b1b6;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 104px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 530px;
  margin: 34px 0 0;
  color: #5f5b54;
  font-size: 16px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 0 21px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

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

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

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

.button-quiet {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
}

.button-quiet:hover {
  background: var(--white);
}

.hero-index {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
}

.hero-index i {
  width: 62px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-vertical {
  position: absolute;
  z-index: 1;
  right: 31px;
  top: 40%;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
}

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

.key-figures {
  padding-top: 90px;
  padding-bottom: 100px;
}

.key-figures-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.key-figures-heading .eyebrow {
  margin: 0 0 6px;
  order: 2;
}

.key-figures-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.key-figure-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.key-figure-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 16px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: color 250ms ease, background 250ms ease;
}

.key-figure-card:hover {
  color: var(--white);
  background: var(--wine);
}

.figure-icon {
  width: 62px;
  height: 62px;
  margin: auto 0 28px;
  color: var(--wine);
  transition: color 250ms ease;
}

.key-figure-card:hover .figure-icon {
  color: var(--white);
}

.figure-icon svg,
.range-icon svg {
  width: 100%;
  height: 100%;
}

.key-figure-card strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.key-figure-card span {
  min-height: 30px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  transition: color 250ms ease;
}

.key-figure-card:hover span {
  color: rgba(255, 255, 255, 0.65);
}

.products {
  padding-top: 140px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.application-title-wrap h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 55px 0 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  transition: 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

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

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

.product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 0.86;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.product-code {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(33, 31, 27, 0.7);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.product-open {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  font-size: 18px;
  transition: 220ms ease;
}

.product-open:hover {
  color: var(--white);
  background: var(--wine);
  transform: rotate(8deg);
}

.product-info {
  padding: 19px 2px 6px;
}

.product-info-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.product-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.product-info-top span {
  color: var(--muted);
  font-size: 10px;
}

.product-info p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.product-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-size: 9px;
}

.range-advantages {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0 max(6vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ebe4d8;
}

.range-panel,
.advantage-panel {
  padding: 105px 5vw 115px;
}

.range-panel {
  border-right: 1px solid var(--line);
}

.bilingual-heading {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 38px;
}

.bilingual-index {
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.bilingual-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.bilingual-heading p {
  margin: 0;
  padding-left: 15px;
  border-left: 1px solid var(--wine);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.07em;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.range-item {
  display: flex;
  min-height: 103px;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.28);
  transition: background 220ms ease, transform 220ms ease;
}

.range-item:hover {
  background: rgba(255, 253, 248, 0.78);
  transform: translateY(-2px);
}

.range-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--wine);
}

.range-item div:last-child {
  display: grid;
  gap: 4px;
}

.range-item strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.range-item span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.advantage-list {
  display: grid;
  gap: 11px;
}

.advantage-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 93px;
  padding: 15px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.28);
  transition: color 220ms ease, background 220ms ease;
}

.advantage-item:hover {
  color: var(--white);
  background: var(--wine);
}

.advantage-item > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.advantage-item strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.advantage-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  transition: color 220ms ease;
}

.advantage-item:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.capabilities {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 780px;
  color: #f7f1e7;
  background: var(--wine-dark);
}

.capability-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 6vw;
  background: linear-gradient(145deg, rgba(127, 43, 59, 0.48), transparent 64%);
}

.capability-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.22;
  white-space: nowrap;
}

.capability-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.capability-item {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 320ms ease;
}

.capability-item:hover {
  background: rgba(255, 255, 255, 0.055);
}

.capability-item > span {
  color: #cf9aa3;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.capability-item h3 {
  margin: auto 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.capability-item p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.applications {
  padding-top: 140px;
  padding-bottom: 150px;
}

.application-title-wrap {
  margin-bottom: 54px;
}

.application-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 12px;
}

.application-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  cursor: default;
}

.application-card img,
.application-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.application-card img {
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.application-card:nth-child(2) img {
  filter: saturate(0.7) brightness(0.92);
}

.application-card:nth-child(3) img {
  filter: sepia(0.2) saturate(0.55);
}

.application-card::after {
  content: "";
  background: linear-gradient(180deg, transparent 43%, rgba(26, 20, 18, 0.76));
}

.application-card:hover img {
  transform: scale(1.045);
}

.application-copy {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: var(--white);
}

.application-copy span {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.application-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.application-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 870px;
  border-top: 1px solid var(--line);
  background: #ebe4d8;
}

.about-visual {
  position: relative;
  min-height: 870px;
  overflow: hidden;
}

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

.about-seal {
  position: absolute;
  right: -64px;
  bottom: 68px;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(62, 18, 27, 0.2);
}

.about-seal span {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.about-seal small {
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: 0.23em;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw;
}

.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 4.8vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.about-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.about-copy > .about-text-en {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #898278;
  font-size: 11px;
  line-height: 1.75;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
  color: #8d877d;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.about-signature i {
  width: 44px;
  height: 1px;
  background: #aaa398;
}

.contact {
  display: grid;
  grid-template-columns: minmax(720px, 1fr) minmax(420px, 520px);
  gap: 5vw;
  align-items: center;
  min-height: 680px;
  padding: 110px max(7vw, 48px);
  color: var(--white);
  background: var(--ink);
}

.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.3vw, 78px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-heading > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.8;
}

.contact-side {
  width: 100%;
}

.contact-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.contact-card > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.contact-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card > a strong {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 25px 0 0;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  font-size: 12px;
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.45);
}

.contact-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  min-height: 170px;
  padding: 38px max(7vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.site-footer > p {
  justify-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: 13px;
}

.footer-meta {
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(24, 20, 18, 0.72);
  backdrop-filter: blur(6px);
}

.auth-dialog {
  width: min(470px, calc(100vw - 32px));
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(22, 16, 14, 0.28);
}

.auth-shell {
  position: relative;
  padding: 58px 52px 48px;
}

.auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.auth-view h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.auth-intro {
  margin: 15px 0 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.auth-form input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(108, 35, 49, 0.08);
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.auth-text-button {
  justify-self: center;
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.auth-status {
  min-height: 20px;
  margin: 20px 0 0;
  color: var(--wine);
  font-size: 11px;
  line-height: 1.6;
}

.product-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-height: min(860px, calc(100vh - 40px));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.84);
  cursor: pointer;
  font-size: 24px;
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 640px;
  max-height: min(860px, calc(100vh - 40px));
}

.product-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  background: #e7e0d6;
}

.product-gallery-main {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
  background: rgba(33, 31, 27, 0.72);
}

.product-gallery-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.product-gallery-thumbs button.active,
.product-gallery-thumbs button:hover {
  border-color: var(--paper);
  opacity: 1;
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog-copy {
  overflow-y: auto;
  padding: 64px;
}

.product-dialog-copy > span {
  color: var(--wine);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.product-dialog-copy h2 {
  margin: 15px 0;
  font-family: var(--serif);
  font-size: 38px;
}

.product-dialog-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.product-dialog-copy .product-tags {
  margin: 26px 0 34px;
}

.product-detail-section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-detail-section h3 {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.product-parameter-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.product-parameter-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 15px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(33, 31, 27, 0.08);
  font-size: 12px;
}

.product-parameter-list dt {
  color: var(--ink);
  font-weight: 600;
}

.product-parameter-list dd {
  margin: 0;
  color: var(--muted);
}

.product-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.5);
  font-size: 11px;
}

.product-dialog-copy > .button {
  margin-top: 34px;
}

.admin-dialog {
  width: min(920px, 100vw);
  height: 100vh;
  max-height: 100vh;
  margin: 0 0 0 auto;
  color: #23211e;
  background: #f6f3ed;
}

.admin-shell {
  height: 100%;
  overflow-y: auto;
}

.admin-header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 38px;
  border-bottom: 1px solid #d8d1c6;
  background: rgba(246, 243, 237, 0.94);
  backdrop-filter: blur(12px);
}

.admin-session {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-session > span {
  max-width: 210px;
  overflow: hidden;
  color: #7a7168;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-session > button:not(.admin-close) {
  padding: 7px 10px;
  border: 1px solid #d2cbc0;
  color: #6f665e;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.admin-header p {
  margin: 0 0 4px;
  color: #8c8278;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.admin-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}

.admin-close {
  width: 40px;
  height: 40px;
  border: 1px solid #d2cbc0;
  border-radius: 50%;
  color: #3c3732;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.admin-notice {
  margin: 28px 38px 0;
  padding: 13px 15px;
  border-left: 3px solid var(--sage);
  color: #625c56;
  background: #ebe7de;
  font-size: 12px;
  line-height: 1.6;
}

.admin-section {
  margin: 0 38px;
  padding: 38px 0;
  border-bottom: 1px solid #d8d1c6;
}

.admin-section-title,
.admin-section-title > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-section-title > span,
.admin-section-title > div > span {
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.admin-section-title h3 {
  margin: 0 auto 0 0;
  font-family: var(--serif);
  font-size: 20px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.admin-form-grid label,
.key-field,
.product-editor-fields label {
  display: grid;
  gap: 8px;
  color: #6e675f;
  font-size: 11px;
}

.admin-form-grid label.wide {
  grid-column: 1 / -1;
}

.admin-form-grid input,
.admin-form-grid textarea,
.key-field input,
.product-editor-fields input,
.product-editor-fields textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d4cdc3;
  outline: none;
  color: #2e2a26;
  background: #fffdf9;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.key-field input:focus,
.product-editor-fields input:focus,
.product-editor-fields textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(108, 35, 49, 0.08);
}

.image-editor {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  background: #ebe7de;
}

.image-editor img {
  width: 180px;
  height: 105px;
  object-fit: cover;
}

.image-editor strong {
  font-family: var(--serif);
  font-size: 15px;
}

.image-editor p {
  margin: 5px 0 13px;
  color: #777067;
  font-size: 11px;
}

.upload-button,
.mini-button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #bbb2a6;
  color: #4b443e;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.upload-button input,
.mini-button input {
  display: none;
}

.mini-button:hover,
.upload-button:hover {
  color: var(--wine);
  border-color: var(--wine);
}

.admin-products {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.product-editor {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 16px;
  border: 1px solid #d8d1c6;
  background: #fffdf9;
}

.product-editor-media img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e7e2da;
}

.product-editor-media .upload-button {
  margin-top: 10px;
}

.product-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-editor-fields .wide {
  grid-column: 1 / -1;
}

.product-detail-editor {
  padding: 14px;
  border: 1px dashed #cfc5b9;
  background: #f6f1e9;
}

.product-detail-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-detail-editor strong {
  font-family: var(--serif);
  color: #403a35;
  font-size: 14px;
}

.product-detail-editor p {
  margin: 8px 0 13px;
  color: #857b72;
  font-size: 10px;
  line-height: 1.6;
}

.detail-image-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.detail-image-list figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e5ded5;
}

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

.detail-image-list button {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 5px 7px;
  border: 0;
  color: var(--white);
  background: rgba(68, 22, 32, 0.82);
  cursor: pointer;
  font-size: 9px;
}

.empty-detail-images {
  grid-column: 1 / -1;
  padding: 18px;
  color: #8a8178;
  background: #ebe5dc;
  font-size: 10px;
  text-align: center;
}

.detail-image-list figure > span {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 4px 6px;
  color: var(--white);
  background: rgba(33, 31, 27, 0.62);
  font-size: 9px;
}

.detail-page-preview {
  display: grid;
  gap: 10px;
}

.detail-page-preview img {
  width: min(100%, 220px);
  max-height: 360px;
  object-fit: contain;
  object-position: top left;
  background: #e5ded5;
}

.detail-page-preview button {
  width: max-content;
  padding: 6px 0;
  border: 0;
  color: #a04d59;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.delete-product {
  justify-self: end;
  align-self: end;
  padding: 6px 0;
  border: 0;
  color: #a04d59;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.admin-tools .key-field {
  margin-top: 24px;
}

.admin-security-note {
  margin: 22px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--wine);
  color: #6d655d;
  background: #ebe7de;
  font-size: 11px;
  line-height: 1.65;
}

.tool-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.admin-actions {
  position: sticky;
  z-index: 3;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px 38px;
  border-top: 1px solid #d8d1c6;
  background: rgba(246, 243, 237, 0.96);
  backdrop-filter: blur(12px);
}

.admin-actions p {
  margin: 0;
  color: #6c655e;
  font-size: 11px;
}

.button-save {
  color: var(--white);
  background: var(--wine);
}

.button-save:disabled {
  opacity: 0.55;
  cursor: wait;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 25px;
  bottom: 25px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.loading-state,
.error-state {
  grid-column: 1 / -1;
  padding: 50px;
  color: var(--muted);
  text-align: center;
}

.product-page-body {
  background: #f4efe7;
}

.product-page-header {
  grid-template-columns: 1fr auto;
}

.admin-page-body,
.legal-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(108, 35, 49, 0.1), transparent 32%),
    var(--paper);
}

.admin-page-header,
.legal-page-header {
  grid-template-columns: 1fr auto;
}

.admin-page-landing,
.legal-page {
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.admin-page-landing {
  min-height: calc(100vh - 82px);
  display: grid;
  align-content: center;
}

.admin-page-landing h1,
.legal-page h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.admin-page-landing > p:not(.eyebrow),
.legal-page-intro {
  max-width: 660px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.legal-card {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 24px 70px rgba(48, 34, 28, 0.08);
}

.legal-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.legal-card p,
.legal-card li,
.legal-info-list {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-card p,
.legal-card ul {
  margin: 0;
}

.legal-info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-info-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(33, 31, 27, 0.08);
}

.legal-info-list dt {
  color: var(--ink);
  font-weight: 600;
}

.legal-info-list dd {
  margin: 0;
}

.legal-note {
  color: var(--wine);
}

.product-detail-page {
  min-height: calc(100vh - 82px);
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 600px);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 64px 0 78px;
}

.product-page-meta {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
}

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

.product-page-meta h1,
.product-page-error h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.product-page-code {
  margin: 18px 0 0;
  color: var(--wine);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.product-page-summary {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.shop-carousel {
  position: relative;
  width: min(600px, 100%);
  margin-left: auto;
}

.carousel-window {
  overflow: hidden;
  background: #e3dbcf;
  box-shadow: 0 26px 72px rgba(48, 34, 28, 0.14);
}

.carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 3 / 4;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(34, 24, 20, 0.14);
  cursor: pointer;
  font-size: 32px;
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: -23px;
}

.carousel-arrow.next {
  right: -23px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9bfb1;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--wine);
}

.shop-detail-image-section {
  padding: 84px 0 120px;
  border-top: 1px solid var(--line);
  background: #ece5da;
}

.shop-detail-title {
  width: min(750px, calc(100vw - 32px));
  margin: 0 auto 26px;
}

.shop-detail-title span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.shop-detail-title h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.shop-detail-image {
  width: min(750px, calc(100vw - 32px));
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 22px 72px rgba(48, 34, 28, 0.1);
}

.shop-detail-empty,
.product-page-error {
  width: min(750px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 64px 34px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.7);
  text-align: center;
}

.shop-detail-empty h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
}

.shop-detail-empty p,
.product-page-error p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-heading h2 {
    white-space: normal;
  }

  .contact-side {
    width: min(860px, 100%);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 42px, 760px);
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .header-contact {
    display: none;
  }

  .mobile-nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .mobile-nav-toggle span {
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: 200ms ease;
  }

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

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

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 780px;
    padding: 90px 28px;
    align-items: flex-end;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(245, 241, 233, 0.25), rgba(245, 241, 233, 0.95) 63%, rgba(245, 241, 233, 1));
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-content h1 {
    font-size: clamp(46px, 9.5vw, 70px);
  }

  .hero-vertical,
  .hero-index {
    display: none;
  }

  .section-heading,
  .capabilities,
  .range-advantages,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .key-figure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .range-advantages {
    padding: 0 6vw;
  }

  .range-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .range-panel,
  .advantage-panel {
    padding: 85px 3vw;
  }

  .capability-intro {
    min-height: 560px;
  }

  .capability-list {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

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

  .application-card:first-child {
    grid-column: 1 / -1;
  }

  .about-seal {
    right: 28px;
    bottom: -62px;
  }

  .about-copy {
    min-height: 760px;
  }

  .contact {
    padding: 100px 7vw;
  }

  .contact-side {
    width: min(620px, 100%);
  }

  .contact-card {
    max-width: 620px;
  }

  .product-page-hero {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 42px));
    padding-top: 52px;
  }

  .shop-carousel {
    margin: 0 auto;
  }

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

  .site-footer > p {
    display: none;
  }
}

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

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

  .hero {
    min-height: calc(100svh - 72px);
    padding: 70px 18px 48px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    gap: 22px;
  }

  .key-figures {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .key-figures-heading {
    display: block;
  }

  .key-figures-heading .eyebrow {
    margin-bottom: 15px;
  }

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

  .key-figure-card {
    min-height: 190px;
    padding: 22px 10px;
  }

  .figure-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .products,
  .applications {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading h2,
  .application-title-wrap h2 {
    font-size: 39px;
  }

  .filter-row {
    margin-top: 35px;
  }

  .product-grid,
  .capability-list,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .range-advantages {
    padding: 0 16px;
  }

  .range-panel,
  .advantage-panel {
    padding: 72px 0;
  }

  .bilingual-heading {
    grid-template-columns: auto 1fr;
  }

  .bilingual-heading p {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .range-item {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .range-icon {
    width: 36px;
    height: 36px;
  }

  .advantage-item {
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 14px;
  }

  .advantage-item > span {
    width: 42px;
    height: 42px;
  }

  .product-image-wrap {
    aspect-ratio: 0.92;
  }

  .capability-intro {
    min-height: 520px;
    padding: 80px 25px;
  }

  .capability-intro h2 {
    font-size: clamp(38px, 11vw, 42px);
  }

  .capability-item {
    min-height: 290px;
    padding: 35px 25px;
    border-right: 0;
  }

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

  .about-visual {
    min-height: 500px;
  }

  .about-copy {
    min-height: auto;
    padding: 90px 25px 60px;
  }

  .contact {
    min-height: auto;
    padding: 90px 18px;
  }

  .contact-heading h2 {
    font-size: 41px;
    white-space: normal;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-side {
    width: 100%;
  }

  .contact-card > a strong {
    font-size: 24px;
  }

  .product-page-header {
    display: flex;
    justify-content: space-between;
  }

  .product-page-header .header-contact {
    display: flex;
    padding: 10px 12px;
  }

  .product-page-hero {
    width: calc(100vw - 32px);
    gap: 34px;
    padding: 38px 0 58px;
  }

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

  .product-page-meta h1,
  .product-page-error h1 {
    font-size: 40px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

  .shop-detail-image-section {
    padding: 58px 0 80px;
  }

  .shop-detail-title h2 {
    font-size: 27px;
  }

  .site-footer {
    min-height: 200px;
    padding: 34px 22px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-meta {
    justify-self: start;
    justify-content: flex-start;
    gap: 14px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .admin-page-header,
  .legal-page-header {
    display: flex;
    justify-content: space-between;
  }

  .admin-page-header .header-contact,
  .legal-page-header .header-contact {
    display: flex;
    padding: 10px 12px;
  }

  .admin-page-landing,
  .legal-page {
    width: calc(100vw - 32px);
    padding: 58px 0 78px;
  }

  .admin-page-landing h1,
  .legal-page h1 {
    font-size: 42px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-dialog-layout {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .product-gallery {
    min-height: 0;
  }

  .product-gallery-main {
    min-height: 340px;
    max-height: 42vh;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-dialog-copy {
    overflow: visible;
    padding: 32px 24px;
  }

  .product-parameter-list div {
    grid-template-columns: 82px 1fr;
  }

  .admin-header,
  .admin-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .auth-shell {
    padding: 56px 24px 38px;
  }

  .admin-session > span {
    display: none;
  }

  .admin-notice,
  .admin-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .admin-form-grid,
  .product-editor-fields,
  .product-editor {
    grid-template-columns: 1fr;
  }

  .image-editor {
    grid-template-columns: 110px 1fr;
  }

  .image-editor img {
    width: 110px;
    height: 92px;
  }

  .product-editor-media {
    display: flex;
    align-items: flex-end;
    gap: 12px;
  }

  .product-editor-media img {
    width: 120px;
  }

  .product-editor-media .upload-button {
    margin-bottom: 0;
  }

  .product-detail-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-image-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-actions p {
    display: none;
  }
}

@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;
  }
}
