:root {
  color-scheme: light;
  --hp-black: #0b1013;
  --hp-ink: #171719;
  --hp-graphite: #37373a;
  --hp-muted: #737377;
  --hp-line: rgba(5, 5, 5, 0.12);
  --hp-soft-line: rgba(5, 5, 5, 0.07);
  --hp-paper: #faf8f3;
  --hp-pearl: #f8f3ea;
  --hp-ivory: #e8e3d6;
  --hp-mint: #d8f8e2;
  --hp-mint-ink: #143925;
  --hp-gold: #efbb24;
  --hp-taupe: #c9b8a8;
  --hp-sage: #b8c5a8;
  --hp-action: #efbb24;
  --hp-shadow: 0 34px 90px rgba(5, 5, 5, 0.15);
  --hp-radius: 8px;
  --hp-pill: 999px;
  --hp-container: 1180px;
  --z-header: 40;
  --z-panel: 70;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang HK", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--hp-ink);
  background: var(--hp-paper);
}

body.nav-open,
body.panel-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--hp-action);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--hp-pill);
  color: #fff;
  background: var(--hp-black);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hp-black);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 10px max(22px, calc((100vw - var(--hp-container)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-height: 44px;
}

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

.brand span {
  color: var(--hp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--hp-graphite);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: var(--hp-black);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 3px;
  border: 1px solid var(--hp-soft-line);
  border-radius: var(--hp-pill);
  background: rgba(255, 255, 255, 0.58);
}

.lang-button {
  min-width: 44px;
  min-height: 32px;
  border: 0;
  border-radius: var(--hp-pill);
  color: var(--hp-muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.lang-button.is-active {
  color: #fff;
  background: var(--hp-black);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--hp-pill);
  cursor: pointer;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  background: var(--hp-black);
  font-size: 13px;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--hp-black);
  background: var(--hp-action);
}

.button.secondary {
  color: var(--hp-black);
  border-color: var(--hp-line);
  background: rgba(255, 255, 255, 0.72);
}

.button.wide {
  width: 100%;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hp-soft-line);
  border-radius: var(--hp-pill);
  background: var(--hp-pearl);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--hp-black);
}

.mobile-nav {
  position: fixed;
  z-index: 35;
  inset: 66px 0 auto;
  display: none;
  padding: 16px 24px 26px;
  border-bottom: 1px solid var(--hp-line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav a {
  display: block;
  min-height: 48px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hp-soft-line);
  font-size: 20px;
  font-weight: 650;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.42fr);
  align-items: end;
  gap: 54px;
  padding: 110px max(24px, calc((100vw - var(--hp-container)) / 2)) 62px;
  color: #fff;
  background: var(--hp-black);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--hp-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 980px;
  margin: 0;
  color: var(--hp-black);
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif;
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lifestyle-hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  letter-spacing: 0.03em;
}

.lede,
.about-panel p,
.contact-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--hp-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.taste-section .section-heading h2,
.taste-section .about-panel p {
  color: var(--hp-ink);
}

.lifestyle-hero .eyebrow,
.lifestyle-hero .lede,
.lifestyle-hero h1 {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}

.lifestyle-hero .lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 3000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-slide[data-slide="0"] img {
  object-position: 78% 22%;
  transform: scale(2.65);
  transform-origin: 78% 22%;
}

.hero-slide[data-slide="1"] img {
  object-position: 82% 50%;
  transform: scale(1.55);
  transform-origin: 82% 50%;
}

.hero-slide[data-slide="2"] img {
  object-position: 72% 50%;
  transform: scale(2.15);
  transform-origin: 72% 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 28%, rgba(216, 248, 226, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.76));
}

.hero-copy,
.hero-controls,
.lifestyle-card {
  position: relative;
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--hp-container)) / 2));
  bottom: 96px;
  width: min(310px, 34vw);
  opacity: 0.16;
  filter: invert(1);
  pointer-events: none;
  mix-blend-mode: screen;
}

.marquee-line {
  display: flex;
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(11, 16, 19, 0.12);
  border-bottom: 1px solid rgba(11, 16, 19, 0.12);
  background: var(--hp-paper);
}

.marquee-line span {
  flex: 1;
  min-width: 180px;
  padding: 18px 20px;
  border-right: 1px solid rgba(11, 16, 19, 0.1);
  text-align: center;
  color: var(--hp-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.button.glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-controls {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-self: end;
}

.slide-dot {
  position: relative;
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.slide-dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.slide-dot.is-active::before {
  background: #fff;
}

.slide-dot.is-active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 5px solid rgba(0, 0, 0, 0.42);
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.lifestyle-card {
  align-self: end;
  justify-self: end;
  width: min(330px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--hp-radius);
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.lifestyle-card span,
.lifestyle-card strong {
  display: block;
}

.lifestyle-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lifestyle-card strong {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.product-lab,
.services-section,
.contact-section {
  padding: 104px max(24px, calc((100vw - var(--hp-container)) / 2));
}

.section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.6vw, 60px);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.taste-section,
.page-section {
  padding: 104px max(24px, calc((100vw - var(--hp-container)) / 2));
}

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

.taste-grid article,
.science-grid article,
.stack-list article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(11, 16, 19, 0.12);
  border-radius: var(--hp-radius);
  background: rgba(250, 248, 243, 0.78);
}

.taste-grid span,
.stack-list span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: var(--hp-pill);
  color: var(--hp-black);
  background: var(--hp-gold);
  font-weight: 800;
}

.taste-grid h3,
.science-grid h3,
.stack-list h3 {
  margin: 24px 0 0;
  font-size: 26px;
}

.taste-grid p,
.science-grid p,
.stack-list p {
  color: var(--hp-muted);
  line-height: 1.6;
}

.badge-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hp-radius);
  background: rgba(255, 255, 255, 0.06);
}

.badge-band h3 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
}

.page-main {
  padding-top: 66px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
  padding: 88px max(24px, calc((100vw - var(--hp-container)) / 2));
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 187, 36, 0.12), transparent 24%),
    var(--hp-paper);
}

.page-hero h1,
.page-contact h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: 0.03em;
}

.page-hero p:not(.eyebrow),
.page-contact p {
  max-width: 700px;
  color: var(--hp-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--hp-radius);
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(11, 16, 19, 0.12);
}

.dark-hero {
  color: #fff;
  background: var(--hp-black);
}

.dark-hero h1,
.dark-hero .eyebrow {
  color: #fff;
}

.dark-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: 44px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.science-grid {
  grid-template-columns: repeat(4, 1fr);
  background: var(--hp-ivory);
}

.science-grid article strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.science-grid article span {
  display: block;
  margin-top: 8px;
  color: var(--hp-black);
  font-weight: 800;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--hp-ivory);
}

.product-catalog article {
  display: grid;
  align-content: space-between;
  min-height: 430px;
  padding: 22px;
  border: 1px solid rgba(11, 16, 19, 0.13);
  border-radius: var(--hp-radius);
  background: var(--hp-paper);
}

.product-catalog img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.product-catalog h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.product-catalog p {
  color: var(--hp-muted);
  line-height: 1.55;
}

.product-catalog a {
  color: var(--hp-black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.light-flow {
  background: var(--hp-paper);
}

.light-flow .flow-card {
  color: var(--hp-black);
  background: var(--hp-pearl);
  border-color: rgba(11, 16, 19, 0.1);
}

.light-flow .flow-card p {
  color: var(--hp-muted);
}

.page-contact {
  min-height: calc(100vh - 66px);
  padding-top: 120px;
}

.system-card,
.flow-card,
.article-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--hp-soft-line);
  border-radius: var(--hp-radius);
  background: var(--hp-paper);
}

.system-card h3,
.flow-card h3,
.article-card h3 {
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.18;
}

.system-card p,
.flow-card p,
.article-card p {
  margin: 14px 0 0;
  color: var(--hp-muted);
  line-height: 1.58;
}

.token {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: var(--hp-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.token.gold {
  background: var(--hp-gold);
  box-shadow: inset 0 0 0 1px rgba(11, 16, 19, 0.08);
}

.token.line {
  position: relative;
  width: 96px;
  height: 66px;
  border-radius: 0;
  background: transparent;
}

.token.line::before,
.token.line::after {
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--hp-black);
  content: "";
}

.token.line::before {
  left: 0;
  width: 38px;
}

.token.line::after {
  right: 0;
  width: 38px;
}

.token.line {
  border: 9px solid #fff;
  box-shadow: inset 0 0 0 9px var(--hp-black);
}

.token.photo {
  border-radius: var(--hp-radius);
  background: linear-gradient(135deg, var(--hp-pearl), #fff 52%, var(--hp-mint));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: end;
  padding: 104px max(24px, calc((100vw - var(--hp-container)) / 2));
  color: #fff;
  background: var(--hp-black);
}

.about-section .eyebrow,
.about-section h2,
.about-section .about-panel p {
  color: #fff;
}

.about-section .about-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.16);
}

.metric-row span {
  min-height: 110px;
  padding: 18px;
  background: var(--hp-black);
  color: rgba(255, 255, 255, 0.7);
}

.metric-row strong {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.product-lab {
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 187, 36, 0.14), transparent 22%),
    var(--hp-ivory);
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.featured-products article {
  min-height: 420px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid rgba(11, 16, 19, 0.14);
  border-radius: var(--hp-radius);
  background: rgba(250, 248, 243, 0.82);
  box-shadow: 0 20px 70px rgba(11, 16, 19, 0.06);
}

.featured-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}

.featured-products h3 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
}

.featured-products p {
  max-width: 280px;
  margin: 12px auto 0;
  color: var(--hp-muted);
  line-height: 1.55;
  text-align: center;
}

.product-shell {
  overflow: hidden;
  border-radius: var(--hp-radius);
  background: #fff;
  box-shadow: 0 1px 0 var(--hp-soft-line);
}

.product-tabs {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--hp-soft-line);
  overflow-x: auto;
}

.tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--hp-pill);
  background: var(--hp-pearl);
  color: var(--hp-graphite);
  cursor: pointer;
  white-space: nowrap;
}

.tab.is-active {
  color: #fff;
  background: var(--hp-black);
}

.product-view {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 1px;
  background: var(--hp-soft-line);
}

.product-photo,
.product-detail {
  margin: 0;
  background: #fff;
}

.product-photo {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 34px;
}

.product-photo img {
  width: 100%;
  max-height: 560px;
  border-radius: var(--hp-radius);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.12);
}

.product-detail {
  display: grid;
  align-content: center;
  padding: 34px;
}

.product-detail h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.product-detail p:not(.eyebrow) {
  color: var(--hp-muted);
  line-height: 1.62;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 26px 0;
  background: var(--hp-soft-line);
}

.spec-grid div {
  padding: 16px 0;
  background: #fff;
}

.spec-grid dt {
  color: var(--hp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.services-section {
  background: var(--hp-black);
  color: #fff;
}

.line-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--hp-gold);
  border-radius: 50%;
  background: transparent;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.leaf::before {
  inset: 15px 20px 17px 20px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-35deg);
}

.line-icon.flask::before {
  left: 22px;
  top: 12px;
  width: 12px;
  height: 24px;
  border: 2px solid #fff;
  border-top: 0;
}

.line-icon.flask::after {
  left: 15px;
  bottom: 13px;
  width: 28px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 14px 14px 5px 5px;
}

.line-icon.seal::before {
  inset: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.line-icon.seal::after {
  left: 23px;
  top: 26px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.services-section h2,
.services-section .eyebrow {
  color: #fff;
}

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

.flow-card {
  background: #0b0b0d;
  border-color: rgba(255, 255, 255, 0.1);
}

.flow-card > span:not(.line-icon),
.article-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: var(--hp-pill);
  color: var(--hp-black);
  background: var(--hp-mint);
  font-weight: 800;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.brand-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 19, 0.12);
  border-radius: var(--hp-radius);
  background: #fff;
}

.brand-showcase figure:first-child {
  grid-row: span 2;
}

.brand-showcase img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.brand-showcase figcaption {
  padding: 14px 16px;
  border-top: 1px solid rgba(11, 16, 19, 0.1);
  color: var(--hp-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.article-card {
  background: var(--hp-pearl);
}

.article-card span {
  width: auto;
  padding: 0 14px;
  color: var(--hp-muted);
  background: #fff;
  font-size: 13px;
}

.component-review {
  background: var(--hp-ivory);
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) 1fr;
  gap: 20px;
  width: 100%;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid var(--hp-soft-line);
  border-radius: var(--hp-radius);
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.review-item span {
  color: var(--hp-muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-item strong {
  color: var(--hp-black);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--hp-radius);
  background: var(--hp-pearl);
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct span {
  color: var(--hp-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--hp-action);
  font-size: 20px;
  font-weight: 850;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--hp-graphite);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--hp-radius);
  padding: 14px;
  color: var(--hp-black);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--hp-action);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--hp-mint-ink);
  font-weight: 700;
}

.brand-panel {
  position: fixed;
  z-index: var(--z-panel);
  inset: 0;
  display: none;
}

.brand-panel.is-open {
  display: block;
}

.panel-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.48);
}

.panel-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 34px;
  background: #fff;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
}

.panel-card img {
  width: 160px;
  margin-bottom: 34px;
}

.panel-card h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
}

.panel-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.panel-card li {
  padding-left: 24px;
  border-left: 1px solid var(--hp-black);
  color: var(--hp-muted);
  line-height: 1.62;
}

.panel-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hp-soft-line);
  border-radius: var(--hp-pill);
  background: var(--hp-pearl);
  cursor: pointer;
}

.panel-close::before,
.panel-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--hp-black);
  content: "";
}

.panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px max(24px, calc((100vw - var(--hp-container)) / 2));
  border-top: 1px solid var(--hp-soft-line);
  color: var(--hp-muted);
  font-size: 14px;
}

.site-footer img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.site-footer a {
  margin-left: auto;
  color: var(--hp-action);
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .header-actions {
    justify-self: center;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero,
  .about-section,
  .product-view,
  .contact-section,
  .page-hero,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .system-grid,
  .featured-products,
  .flow-grid,
  .article-grid,
  .taste-grid,
  .science-grid,
  .product-catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .brand-showcase figure:first-child {
    grid-row: auto;
  }

  .product-photo {
    min-height: 480px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

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

  .header-actions {
    justify-self: end;
  }

  .lang-toggle {
    min-height: 34px;
  }

  .lang-button {
    min-width: 38px;
    min-height: 28px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-watermark {
    right: 24px;
    bottom: 24px;
    width: 190px;
    opacity: 0.1;
  }

  .hero-slide[data-slide="0"] img {
    object-position: 75% 12%;
    transform: scale(3.35);
    transform-origin: 75% 12%;
  }

  .lifestyle-card {
    justify-self: stretch;
  }

  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .lede,
  .about-panel p,
  .contact-copy p {
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .identity-strip,
  .taste-section,
  .page-section,
  .about-section,
  .product-lab,
  .services-section,
  .insights-section,
  .component-review,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .system-grid,
  .featured-products,
  .flow-grid,
  .article-grid,
  .taste-grid,
  .science-grid,
  .product-catalog,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .badge-band {
    display: grid;
  }

  .page-hero h1,
  .page-contact h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .page-hero img {
    aspect-ratio: 1;
  }

  .system-card,
  .flow-card,
  .article-card {
    min-height: 230px;
  }

  .review-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-tabs {
    padding-bottom: 12px;
  }

  .product-photo {
    min-height: 360px;
    padding: 20px;
  }

  .product-detail,
  .contact-form,
  .panel-card {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    margin-left: 0;
  }
}
