:root {
  --black: #090a0b;
  --black-soft: #121315;
  --charcoal: #1c1e21;
  --gold: #d5a43c;
  --gold-light: #f1d17a;
  --gold-dark: #9d7220;
  --cream: #f7f3e9;
  --white: #fffef9;
  --ink: #202126;
  --muted: #6f6d68;
  --line: rgba(18, 19, 21, 0.13);
  --shadow: 0 24px 70px rgba(12, 12, 13, 0.12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--black);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: white;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 196px;
  align-items: center;
}

.brand img {
  width: 196px;
  height: 73px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 33px 0 29px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: white;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.mobile-lang {
  display: none;
}

.lang-button {
  min-width: 37px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.lang-button.active {
  color: var(--black);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(213, 164, 60, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(213, 164, 60, 0.3);
}

.button-dark {
  color: white;
  background: var(--black);
  border-color: var(--black);
  box-shadow: none;
}

.button-outline {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  color: var(--gold-dark);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(5px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 8%, rgba(213, 164, 60, 0.2), transparent 32%),
    radial-gradient(circle at 8% 90%, rgba(213, 164, 60, 0.08), transparent 34%),
    linear-gradient(135deg, #090a0b, #161719 68%, #0c0d0f);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  padding-block: 76px 92px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  margin-bottom: 28px;
  color: white;
}

.gold-text {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-image-main,
.hero-image-secondary {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-image-main {
  top: 0;
  right: 0;
  width: 86%;
  height: 77%;
  border-radius: 180px 22px 22px 22px;
}

.hero-image-secondary {
  bottom: 0;
  left: 0;
  width: 52%;
  height: 43%;
  border: 8px solid var(--black-soft);
  border-radius: 18px 18px 100px 18px;
}

.hero-image-main img,
.hero-image-secondary img,
.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 154px;
  height: 154px;
  display: grid;
  padding: 18px;
  place-items: center;
  color: var(--black);
  background: var(--gold-light);
  border: 8px solid var(--black-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 2;
  color: white;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-item {
  min-height: 102px;
  display: flex;
  padding: 22px 30px;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.trust-item span:last-child {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(82px, 10vw, 140px);
}

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

.section-dark {
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 100% 0, rgba(213, 164, 60, 0.14), transparent 34%),
    var(--black);
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

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

.category-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: white;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.02) 66%);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.category-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.category-index {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.category-content h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.8rem;
}

.category-content p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
  line-height: 1.55;
}

.category-content .text-link {
  color: white;
}

.category-content .text-link::after {
  color: var(--gold-light);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.split-media {
  position: relative;
  min-height: 560px;
}

.split-media-main {
  position: absolute;
  inset: 0 14% 0 0;
  overflow: hidden;
  border-radius: var(--radius) 120px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.split-media-accent {
  position: absolute;
  right: 0;
  bottom: -36px;
  width: 45%;
  height: 42%;
  overflow: hidden;
  background: var(--black);
  border: 10px solid var(--cream);
  border-radius: 16px 16px 80px 16px;
  box-shadow: var(--shadow);
}

.split-copy h2 {
  margin-bottom: 26px;
}

.split-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-check {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  color: var(--black);
  font-size: 0.96rem;
}

.feature-list span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.benefit-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  margin-bottom: 26px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(213, 164, 60, 0.1);
  border: 1px solid rgba(213, 164, 60, 0.3);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.benefit-card p {
  font-size: 0.94rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 0 30px 0 0;
  counter-increment: step;
}

.process-step::before {
  width: 52px;
  height: 52px;
  display: grid;
  margin-bottom: 24px;
  place-items: center;
  content: "0" counter(step);
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 24px;
  left: 66px;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: clamp(38px, 6vw, 72px);
  align-items: center;
  gap: 36px;
  color: white;
  background:
    radial-gradient(circle at 85% 25%, rgba(213, 164, 60, 0.22), transparent 28%),
    var(--black);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(5, 5, 5, 0.24);
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(213, 164, 60, 0.18);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 15px;
  color: white;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
}

.cta-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.62);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 25%, rgba(213, 164, 60, 0.2), transparent 31%),
    linear-gradient(135deg, #090a0b, #18191b);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(213, 164, 60, 0.18);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  padding-block: 86px;
  align-content: center;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.crumbs {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.crumbs a:hover {
  color: var(--gold-light);
}

.location-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.location-card {
  min-height: 420px;
  display: flex;
  padding: 42px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background: var(--black);
  border-radius: var(--radius);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.location-card:first-child {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0.82) 58%, rgba(5, 5, 5, 0.96)),
    url("../images/bath-towels-lifestyle.webp") center/cover;
}

.location-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.82) 58%, rgba(5, 5, 5, 0.96)),
    url("../images/bath-towels-colour.webp") center/cover;
}

.location-card:last-child {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.82) 58%, rgba(5, 5, 5, 0.96)),
    url("../images/hand-towel-lifestyle.webp") center/cover;
}

.location-card .eyebrow {
  margin-bottom: 15px;
}

.location-card h3 {
  margin-bottom: 16px;
  color: white;
  font-size: 2.2rem;
}

.location-card address {
  color: rgba(255, 255, 255, 0.67);
  font-style: normal;
}

.value-card {
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
}

.quote-card {
  position: relative;
  padding: clamp(42px, 7vw, 84px);
  color: white;
  background:
    radial-gradient(circle at 92% 6%, rgba(213, 164, 60, 0.25), transparent 35%),
    var(--black);
  border-radius: 28px;
}

.quote-mark {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
}

.quote-card blockquote {
  max-width: 880px;
  margin: 28px 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.2;
}

.quote-card cite {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-filter {
  position: sticky;
  z-index: 50;
  top: 86px;
  padding-block: 16px;
  background: rgba(255, 254, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.filter-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

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

.filter-button {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.product-section {
  padding-block: clamp(80px, 10vw, 128px);
  border-bottom: 1px solid var(--line);
}

.product-section:nth-of-type(even) {
  background: var(--cream);
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.product-section:nth-of-type(even) .product-gallery {
  order: 2;
}

.product-gallery {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.product-image {
  overflow: hidden;
  background: #ece8df;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(11, 11, 12, 0.09);
}

.product-image:first-child {
  grid-row: 1 / -1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-image:hover img {
  transform: scale(1.04);
}

.product-copy .product-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-copy h2 {
  margin-bottom: 22px;
}

.product-copy > p {
  color: var(--muted);
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.product-points li {
  padding: 9px 13px;
  color: #56534e;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-note {
  padding: 24px 26px;
  color: #675a3a;
  background: #fff8e7;
  border: 1px solid rgba(213, 164, 60, 0.28);
  border-radius: 16px;
  font-size: 0.88rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.contact-intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-intro-heading {
  padding: clamp(24px, 3vw, 34px);
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
}

.contact-intro-heading h2 {
  margin: 10px 0 12px;
  font-size: 2rem;
}

.contact-intro-heading p {
  color: var(--muted);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.contact-location-card {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 18px;
}

.contact-location-type,
.contact-location-phone > span:first-child {
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location-card h3 {
  margin: 8px 0 14px;
}

.contact-location-card address {
  color: var(--muted);
  font-style: normal;
}

.contact-location-phone {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.contact-location-phone > span:first-child {
  margin-bottom: 2px;
}

.contact-location-phone a,
.contact-location-phone > span:not(:first-child) {
  color: var(--black);
  font-weight: 700;
}

.contact-location-phone a:hover,
.contact-location-phone a:focus-visible {
  color: var(--gold-dark);
}

.contact-team-panel {
  min-height: 160px;
  padding: clamp(20px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #eee6d8;
  border-radius: 18px;
  border-left: 4px solid var(--gold);
}

.contact-team-title {
  margin: 0 0 30px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-team-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-team-member {
  min-width: 0;
  padding: 0 18px;
}

.contact-team-member:first-child {
  padding-left: 0;
}

.contact-team-member + .contact-team-member {
  padding-right: 0;
  border-left: 1px solid rgba(157, 114, 32, 0.25);
}

.contact-team-department {
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-team-member--sales .contact-team-department {
  color: var(--white);
  background: var(--black);
}

.contact-team-member--marketing .contact-team-department {
  color: #715018;
  background: rgba(213, 164, 60, 0.22);
  box-shadow: inset 0 0 0 1px rgba(157, 114, 32, 0.2);
}

.contact-team-details {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
}

.contact-team-details li {
  min-width: 0;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.05vw, 0.8rem);
  line-height: 1.35;
}

.contact-team-details strong {
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-team-details a {
  min-width: 0;
  color: var(--black);
  font-weight: 650;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.contact-team-details a:hover,
.contact-team-details a:focus-visible {
  color: var(--gold-dark);
}

.contact-team-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-wrap {
  min-width: 0;
  height: 100%;
  padding: clamp(28px, 5vw, 52px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(18, 19, 21, 0.18);
  border-radius: 12px;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(213, 164, 60, 0.12);
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin-top: 5px;
  accent-color: var(--gold-dark);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 18px;
}

.form-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-status.success {
  color: #256b42;
}

.form-status.error {
  color: #9b2d2d;
}

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

.address-card {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.address-card h3 {
  margin-bottom: 14px;
}

.address-card address {
  min-height: 110px;
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
}

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

.faq-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-card h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #050505;
  border-top: 1px solid rgba(210, 160, 51, 0.16);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(150px, 1.05fr) minmax(90px, 0.55fr) minmax(120px, 0.72fr) minmax(340px, 1.55fr);
  gap: clamp(20px, 3vw, 42px);
  padding-block: 32px 22px;
}

.footer-brand img {
  width: 160px;
  height: 80px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-title {
  margin-bottom: 14px;
  color: white;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-address {
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.footer-contact-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 14px 16px;
  border: 1px solid rgba(210, 160, 51, 0.27);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-location-block {
  min-width: 0;
  padding-right: 16px;
}

.footer-location-block + .footer-location-block {
  padding: 0 0 0 16px;
  border-top: 0;
  border-left: 1px solid rgba(210, 160, 51, 0.24);
}

.footer-location-name {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-address a,
.footer-email {
  color: rgba(255, 255, 255, 0.82);
}

.footer-address a:hover,
.footer-address a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: var(--gold-light);
}

.footer-email {
  margin-top: 18px;
  display: inline-block;
  font-size: 0.88rem;
}

.footer-contact-card {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
  border: 1px solid rgba(210, 160, 51, 0.38);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.footer-contact-column {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(126px, auto) auto;
  align-content: start;
  gap: 18px;
  padding-right: 18px;
}

.footer-contact-column + .footer-contact-column {
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(210, 160, 51, 0.26);
}

.footer-contact-block {
  min-width: 0;
}

.footer-person-heading {
  margin-bottom: 10px;
}

.footer-person-name {
  margin: 0 0 2px;
  color: white;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.footer-person-role {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.footer-direct-contacts,
.footer-team-contacts {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  list-style: none;
  font-size: 0.72rem;
  line-height: 1.35;
}

.footer-direct-contacts li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-direct-contacts a,
.footer-team-contacts a {
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.footer-direct-contacts a:hover,
.footer-direct-contacts a:focus-visible,
.footer-team-contacts a:hover,
.footer-team-contacts a:focus-visible {
  color: var(--gold-light);
}

.footer-contact-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-country-flag {
  flex: 0 0 auto;
  font-size: 0.74rem;
  line-height: 1;
}

.footer-contact-heading {
  margin: 0 0 9px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-team-contacts li {
  position: relative;
  padding-left: 12px;
}

.footer-team-contacts li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--gold-light);
}

.footer-contact-facility {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-contact-address {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-contact-address strong {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #072c16;
  background: #49d17d;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
}

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

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

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: white;
  background: var(--black);
  text-align: center;
}

.not-found h1 {
  margin-bottom: 15px;
  color: var(--gold-light);
  font-size: clamp(5rem, 18vw, 12rem);
}

.not-found p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 180px;
  }

  .nav-list {
    gap: 22px;
  }

  .header-quote {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
  }

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

  .category-card {
    min-height: 480px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span,
  .topbar-links a:first-child {
    display: none;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 176px;
    height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    min-height: calc(100dvh - 76px);
    display: grid;
    padding: 42px 26px;
    justify-self: stretch;
    place-items: start center;
    color: white;
    background: #090a0b;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    width: min(100%, 420px);
    display: grid;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 70px 80px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .trust-grid,
  .benefit-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split-grid,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 520px;
  }

  .process-step {
    min-height: 120px;
    padding-left: 76px;
  }

  .process-step::before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .process-step:not(:last-child)::after {
    top: 58px;
    right: auto;
    bottom: 8px;
    left: 26px;
    width: 1px;
    height: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .product-section:nth-of-type(even) .product-gallery {
    order: 0;
  }

  .product-gallery {
    min-height: 500px;
  }

  .contact-intro {
    position: static;
  }

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

  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .topbar-links {
    gap: 12px;
  }

  .topbar-links a {
    font-size: 0.65rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch {
    display: none;
  }

  .site-nav::after {
    display: none;
  }

  .mobile-lang {
    display: flex;
    margin: 28px auto 0;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-image-main {
    width: 94%;
    height: 74%;
    border-radius: 100px 18px 18px 18px;
  }

  .hero-image-secondary {
    width: 58%;
    height: 42%;
  }

  .hero-badge {
    width: 120px;
    height: 120px;
    font-size: 0.58rem;
  }

  .category-grid,
  .location-grid,
  .value-grid,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 440px;
  }

  .split-media {
    min-height: 430px;
  }

  .split-media-main {
    right: 7%;
  }

  .split-media-accent {
    width: 49%;
  }

  .page-hero-inner {
    min-height: 360px;
    padding-block: 70px;
  }

  .product-filter {
    top: 76px;
  }

  .product-gallery {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 190px;
  }

  .product-image:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

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

  .footer-contact-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-contact-column {
    grid-template-rows: auto;
    padding: 0;
  }

  .footer-contact-column + .footer-contact-column {
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(210, 160, 51, 0.26);
    border-left: 0;
  }

  .form-field.full,
  .checkbox-field,
  .form-actions {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .contact-team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-team-member,
  .contact-team-member:first-child {
    padding: 0;
  }

  .contact-team-member + .contact-team-member {
    padding-top: 16px;
    border-top: 1px solid rgba(157, 114, 32, 0.25);
    border-left: 0;
  }

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

  .footer-location-block {
    padding: 0 0 12px;
  }

  .footer-location-block + .footer-location-block {
    padding: 12px 0 0;
    border-top: 1px solid rgba(210, 160, 51, 0.24);
    border-left: 0;
  }
}

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

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

/* Full-screen home introduction */
.intro-stage {
  --intro-progress: 0;
  position: fixed;
  z-index: 1500;
  inset: 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(213, 164, 60, 0.14), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(213, 164, 60, 0.09), transparent 32%),
    #050607;
  isolation: isolate;
}

.intro-stage::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: calc(1 - var(--intro-progress));
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.intro-stage.is-complete {
  visibility: hidden;
  pointer-events: none;
}

.intro-spacer {
  height: 100svh;
  min-height: 520px;
  background: var(--black);
}

.site-start-marker {
  width: 1px;
  height: 1px;
  margin-top: -1px;
}

.intro-shell {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding-block: clamp(22px, 4svh, 44px) clamp(58px, 8svh, 84px);
}

.intro-copy {
  min-width: 0;
}

.intro-logo {
  position: relative;
  z-index: 3;
  width: clamp(250px, 32vw, 460px);
  display: block;
  margin-bottom: clamp(14px, 2.3svh, 26px);
  transform-origin: left top;
  will-change: transform;
}

.intro-logo img {
  width: 100%;
  height: auto;
  max-height: 26svh;
  object-fit: contain;
  object-position: left center;
}

.intro-message {
  max-width: 660px;
  opacity: calc(1 - (var(--intro-progress) * 1.55));
  transform: translateY(calc(var(--intro-progress) * -26px));
  will-change: opacity, transform;
}

.intro-message h1 {
  margin: 10px 0 16px;
  color: white;
  font-size: clamp(2.65rem, 5.2vw, 5.3rem);
  line-height: 0.98;
}

.intro-message > p {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 1.3vw, 1.06rem);
  line-height: 1.58;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intro-pills span {
  padding: 7px 12px;
  color: var(--gold-light);
  background: rgba(213, 164, 60, 0.08);
  border: 1px solid rgba(241, 209, 122, 0.22);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro-gallery {
  position: relative;
  width: 100%;
  max-width: 590px;
  height: min(68svh, 650px);
  min-height: 360px;
  justify-self: end;
  overflow: hidden;
  opacity: calc(1 - (var(--intro-progress) * 1.4));
  background: #111214;
  border: 1px solid rgba(241, 209, 122, 0.25);
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.52);
  transform: translateX(calc(var(--intro-progress) * 60px)) scale(calc(1 - (var(--intro-progress) * 0.04)));
  will-change: opacity, transform;
}

.intro-gallery::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 4, 5, 0.78), transparent 36%);
}

.intro-slides,
.intro-slide {
  position: absolute;
  inset: 0;
}

.intro-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1200ms ease;
}

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

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

.intro-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: white;
  font-weight: bold;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.intro-gallery-controls {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intro-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(5, 6, 7, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.intro-arrow:hover,
.intro-arrow:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.intro-counter {
  min-width: 58px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.intro-counter b {
  color: var(--gold-light);
}

.intro-scroll {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: calc(1 - (var(--intro-progress) * 2));
  text-transform: uppercase;
  transform: translateX(-50%);
}

.intro-scroll i {
  width: 30px;
  height: 1px;
  display: block;
  background: var(--gold);
  animation: intro-pulse 1.8s ease-in-out infinite;
}

.intro-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(213, 164, 60, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.intro-orbit-one {
  width: 34vw;
  height: 34vw;
  top: -19vw;
  left: -11vw;
}

.intro-orbit-two {
  width: 48vw;
  height: 48vw;
  right: -24vw;
  bottom: -30vw;
}

@keyframes intro-pulse {
  50% { transform: scaleX(0.45); transform-origin: left; }
}

/* International network and logistics */
.network-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logistics-section .section-heading {
  max-width: 820px;
}

.logistics-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

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

.logistics-card {
  min-height: 145px;
  padding: 28px;
  color: white;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.logistics-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.logistics-card h3 {
  margin-bottom: 0;
  color: white;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 650;
}

/* Products catalogue and galleries */
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.collection-carousel {
  min-width: 0;
}

.gallery-loading {
  min-height: 470px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #e9e4da;
  border-radius: 22px;
}

.gallery-stage-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(213, 164, 60, 0.12), transparent 40%),
    #0c0d0f;
  border: 1px solid rgba(213, 164, 60, 0.25);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-stage {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  touch-action: pan-y;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 500ms ease;
}

.gallery-stage:hover img,
.gallery-stage:focus-visible img {
  transform: scale(1.02);
}

.gallery-stage:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -3px;
}

.gallery-open-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: white;
  background: rgba(5, 6, 7, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  pointer-events: none;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(5, 6, 7, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

.gallery-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 13px 2px 10px;
  color: var(--muted);
  font-size: 0.76rem;
}

.gallery-counter {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.gallery-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 78px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: #141517;
  border: 2px solid transparent;
  border-radius: 10px;
  opacity: 0.58;
  scroll-snap-align: center;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}

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

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 6000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  color: white;
  background: rgba(3, 4, 5, 0.9);
  backdrop-filter: blur(14px);
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(1120px, 92vw);
  height: min(820px, 88svh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: #0b0c0e;
  border: 1px solid rgba(213, 164, 60, 0.3);
  border-radius: 22px;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.72);
}

.lightbox-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.lightbox-media img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: scale-down;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(5, 6, 7, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.lightbox-close { top: 14px; right: 14px; font-size: 1.4rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 14px; }
.lightbox-nav.next { right: 14px; }

@media (max-width: 980px) {
  .intro-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
    gap: 28px;
  }

  .intro-message h1 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
  }

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

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

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

@media (max-width: 760px) {
  .intro-spacer {
    min-height: 500px;
  }

  .intro-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(155px, 1fr);
    align-content: center;
    gap: 14px;
    padding-block: 12px 48px;
  }

  .intro-copy {
    text-align: center;
  }

  .intro-logo {
    width: min(43vw, 180px);
    margin: 0 auto 8px;
    transform-origin: left top;
  }

  .intro-logo img {
    max-height: 18svh;
    object-position: center;
  }

  .intro-message h1 {
    margin-block: 7px 10px;
    font-size: clamp(1.95rem, 9.4vw, 3rem);
    line-height: 0.98;
  }

  .intro-message > p {
    width: min(100%, 540px);
    margin: 0 auto 10px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .intro-pills {
    justify-content: center;
  }

  .intro-pills span {
    padding: 5px 8px;
    font-size: 0.55rem;
  }

  .intro-gallery {
    width: min(100%, 440px);
    height: auto;
    min-height: 0;
    max-height: 32svh;
    aspect-ratio: 16 / 9;
    justify-self: center;
    border-radius: 18px;
  }

  .intro-slide figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 1.25rem;
  }

  .intro-gallery-controls {
    top: 10px;
    right: 10px;
  }

  .intro-arrow {
    width: 32px;
    height: 32px;
  }

  .intro-scroll {
    bottom: 10px;
  }

  .network-grid,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .network-grid .location-card:first-child {
    grid-column: auto;
  }

  .product-layout {
    gap: 38px;
  }

  .collection-carousel,
  .product-section:nth-of-type(even) .collection-carousel {
    order: 0;
  }

  .gallery-stage-wrap {
    border-radius: 16px;
  }

  .gallery-arrow,
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-thumb {
    flex-basis: 66px;
  }

  .page-hero-actions .button {
    width: 100%;
  }

  .image-lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    width: 100%;
    height: min(760px, 92svh);
    border-radius: 15px;
  }

  .lightbox-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-height: 690px) {
  .intro-shell {
    padding-top: 8px;
    padding-bottom: 38px;
  }

  .intro-logo {
    width: min(33vw, 160px);
    margin-bottom: 5px;
  }

  .intro-message h1 {
    margin-block: 5px 8px;
    font-size: clamp(1.75rem, 7.4vh, 3.15rem);
  }

  .intro-message > p {
    margin-bottom: 7px;
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .intro-pills span {
    padding-block: 4px;
  }

  .intro-gallery {
    max-height: 29svh;
  }

  .intro-scroll {
    bottom: 7px;
  }
}

@media (max-width: 760px) and (max-height: 690px) {
  .intro-shell {
    grid-template-rows: auto 140px;
    align-content: center;
    gap: 6px;
    padding-block: 4px 32px;
  }

  .intro-logo {
    width: 112px;
    margin-bottom: 2px;
  }

  .intro-logo img {
    max-height: 74px;
  }

  .intro-message .eyebrow {
    font-size: 0.56rem;
  }

  .intro-message h1 {
    margin-block: 2px 5px;
    font-size: 1.58rem;
    line-height: 0.96;
  }

  .intro-message > p {
    max-width: 330px;
    margin-bottom: 0;
    font-size: 0.66rem;
    line-height: 1.24;
  }

  .intro-pills {
    display: none;
  }

  .intro-gallery {
    width: min(100%, 330px);
    height: 140px;
    max-height: none;
    aspect-ratio: auto;
  }

  .intro-slide figcaption {
    font-size: 1rem;
  }

  .intro-scroll {
    bottom: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-scroll i {
    animation: none;
  }

  .intro-slide,
  .intro-logo,
  .intro-message,
  .intro-gallery {
    transition: none;
  }
}

/* Simplified static opening: navigation and logo are visible immediately. */
.header-inner {
  min-height: 104px;
  grid-template-columns: 255px 1fr auto;
}

.brand,
.brand img {
  width: 236px;
}

.brand img {
  height: 90px;
}

.nav-link {
  padding-top: 42px;
  padding-bottom: 38px;
}

.nav-link::after {
  bottom: 29px;
}

.intro-stage.intro-static {
  position: relative;
  z-index: 0;
  inset: auto;
  min-height: calc(100svh - 142px);
  overflow: hidden;
  isolation: isolate;
  visibility: visible;
  pointer-events: auto;
}

.intro-stage.intro-static::before {
  opacity: 1;
}

.intro-static .intro-shell {
  min-height: calc(100svh - 142px);
  height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
  padding-block: clamp(32px, 5svh, 56px);
}

.intro-static .intro-message {
  max-width: 640px;
  opacity: 1;
  transform: none;
}

.intro-static .intro-message h1 {
  margin: 14px 0 30px;
  color: white;
  font-size: clamp(3.25rem, 6.1vw, 6.3rem);
  line-height: 0.95;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-static .intro-gallery {
  width: 100%;
  max-width: 590px;
  height: min(61svh, 610px);
  min-height: 350px;
  opacity: 1;
  transform: none;
}

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

  .brand,
  .brand img {
    width: 210px;
  }

  .intro-static .intro-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
    gap: 30px;
  }

  .intro-static .intro-message h1 {
    font-size: clamp(3rem, 6vw, 5.1rem);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 92px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 210px;
  }

  .brand img {
    height: 80px;
  }

  .site-nav {
    min-height: calc(100dvh - 92px);
  }

  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 130px);
  }

  .intro-static .intro-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(210px, 30svh);
    align-content: center;
    gap: 18px;
    padding-block: 24px 34px;
  }

  .intro-static .intro-copy {
    text-align: left;
  }

  .intro-static .intro-message h1 {
    margin-block: 9px 20px;
    font-size: clamp(2.35rem, 10.4vw, 4.4rem);
  }

  .intro-static .intro-gallery {
    width: min(100%, 580px);
    height: 100%;
    min-height: 210px;
    max-height: 30svh;
    aspect-ratio: auto;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand,
  .brand img {
    width: 190px;
  }

  .brand img {
    height: 74px;
  }

  .intro-static .intro-message h1 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .intro-actions .button {
    flex: 1 1 150px;
    padding-inline: 14px;
    text-align: center;
  }
}

@media (max-width: 760px) and (max-height: 690px) {
  .home-page main > .section {
    padding-block: 27px;
  }

  .home-page .section-heading {
    margin-bottom: 18px;
  }

  .home-page .section-heading .eyebrow,
  .home-page .split-copy .eyebrow {
    margin-bottom: 8px;
  }

  .home-page .section-heading h2,
  .home-page .split-copy h2,
  .home-page .cta-panel h2 {
    font-size: 2rem;
  }

  .home-page .section-heading p,
  .home-page .split-copy p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .home-page .category-card {
    height: 250px;
  }

  .home-page .category-content {
    padding: 18px;
  }

  .home-page .category-content p {
    margin-bottom: 9px;
    font-size: 0.78rem;
  }

  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 130px);
  }

  .intro-static .intro-shell {
    grid-template-rows: auto 142px;
    align-content: center;
    gap: 10px;
    padding-block: 12px 18px;
  }

  .intro-static .intro-message .eyebrow {
    font-size: 0.55rem;
  }

  .intro-static .intro-message h1 {
    margin-block: 4px 10px;
    font-size: 1.84rem;
    line-height: 0.94;
  }

  .intro-actions {
    gap: 7px;
  }

  .intro-actions .button {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 0.65rem;
  }

  .intro-static .intro-gallery {
    height: 142px;
    min-height: 142px;
    max-height: none;
  }
}

/* Hero-to-navigation logo motion. Only the logo moves; the hero remains intact. */
.home-page .brand img {
  opacity: 0;
  transition: none;
}

.intro-stage.intro-static {
  z-index: auto;
  overflow: visible;
  isolation: auto;
}

.intro-static .intro-logo {
  z-index: 1200;
  width: clamp(170px, 15vw, 195px);
  margin: 0 0 clamp(10px, 1.5svh, 16px);
  transform-origin: left top;
  will-change: transform;
}

.intro-static .intro-logo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-position: left center;
}

.intro-static .intro-message h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  line-height: 0.96;
}

.intro-static .intro-message > p {
  margin-bottom: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.intro-static .intro-shell {
  padding-block: 24px;
}

@media (max-width: 860px) {
  .intro-static .intro-shell {
    grid-template-rows: auto 200px;
    gap: 12px;
    padding-block: 16px 22px;
  }

  .intro-static .intro-logo {
    width: 145px;
    margin: 0 0 9px;
  }

  .intro-static .intro-message h1 {
    margin-block: 7px 10px;
    font-size: clamp(2.25rem, 9.8vw, 3.5rem);
  }

  .intro-static .intro-message > p {
    max-width: 600px;
    margin-bottom: 10px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .intro-static .intro-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .intro-static .intro-pills span {
    padding: 5px 7px;
    font-size: 0.52rem;
    white-space: nowrap;
  }

  .intro-static .intro-gallery {
    height: 200px;
    min-height: 200px;
    max-height: none;
  }
}

@media (max-width: 760px) and (max-height: 690px) {
  .intro-static .intro-shell {
    grid-template-rows: auto 130px;
    gap: 8px;
    padding-block: 8px 14px;
  }

  .intro-static .intro-logo {
    width: 140px;
    margin-bottom: 3px;
  }

  .intro-static .intro-logo img {
    max-height: none;
  }

  .intro-static .intro-message h1 {
    margin-block: 3px 5px;
    font-size: 1.72rem;
  }

  .intro-static .intro-message > p {
    margin-bottom: 5px;
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .intro-static .intro-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .intro-static .intro-pills span {
    padding: 4px 6px;
    font-size: 0.47rem;
    white-space: nowrap;
  }

  .intro-static .intro-gallery {
    height: 130px;
    min-height: 130px;
  }
}

/* Final hero and viewport-fit refinement. */
.site-header,
.header-inner,
.brand,
.brand img,
.nav-link {
  transition: min-height 220ms ease, width 220ms ease, height 220ms ease, padding 220ms ease;
}

.header-inner {
  min-height: 94px;
  grid-template-columns: 228px 1fr auto;
}

.brand,
.brand img {
  width: 212px;
}

.brand img {
  height: 80px;
}

.home-page .brand img {
  opacity: 1;
}

.nav-link {
  padding-top: 37px;
  padding-bottom: 33px;
}

.nav-link::after {
  bottom: 24px;
}

.site-header.is-scrolled .header-inner {
  min-height: 104px;
  grid-template-columns: 244px 1fr auto;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .brand img {
  width: 228px;
}

.site-header.is-scrolled .brand img {
  height: 88px;
}

.site-header.is-scrolled .nav-link {
  padding-top: 42px;
  padding-bottom: 38px;
}

.site-header.is-scrolled .nav-link::after {
  bottom: 29px;
}

.intro-stage.intro-static {
  min-height: calc(100svh - 134px);
  overflow: hidden;
  isolation: isolate;
}

.intro-static .intro-shell {
  min-height: calc(100svh - 134px);
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(20px, 3.5svh, 34px);
}

.intro-static .intro-logo {
  z-index: auto;
  width: clamp(235px, 20vw, 290px);
  margin: 0 0 clamp(8px, 1.4svh, 14px);
  transform: none;
  will-change: auto;
}

.intro-static .intro-logo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-position: left center;
}

.intro-static .intro-message {
  max-width: 610px;
}

.intro-static .intro-message h1 {
  margin: 0 0 clamp(10px, 1.7svh, 16px);
  font-size: clamp(2.4rem, 3.65vw, 3.85rem);
  line-height: 0.98;
}

.intro-static .intro-message > p {
  max-width: 600px;
  margin-bottom: clamp(14px, 2.2svh, 22px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.5;
}

.intro-actions {
  gap: 10px;
}

.intro-actions .button {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.69rem;
}

.intro-static .intro-gallery {
  width: 100%;
  max-width: 680px;
  height: min(69svh, 550px);
  min-height: 350px;
  border-radius: 24px;
  opacity: 1;
  transform: none;
}

.intro-slide img {
  object-fit: cover;
  object-position: center;
}

.intro-slide figcaption {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.page-hero-inner {
  min-height: min(480px, calc(100svh - 132px));
  padding-block: clamp(50px, 8svh, 78px);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.section {
  padding-block: clamp(42px, 6.5svh, 76px);
}

.section-heading {
  margin-bottom: clamp(24px, 4svh, 40px);
}

.section-heading .eyebrow,
.split-copy .eyebrow {
  margin-bottom: 14px;
}

.category-card {
  height: clamp(290px, 43svh, 370px);
  min-height: 0;
}

.category-content {
  padding: 22px;
}

.category-content h3 {
  font-size: 1.55rem;
}

.home-page .split-media {
  min-height: clamp(330px, 58svh, 455px);
}

.home-page .split-grid {
  gap: clamp(34px, 6vw, 78px);
}

.home-page .split-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
}

.home-page .split-copy p {
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-page .feature-list {
  gap: 11px;
  margin: 18px 0;
}

.benefit-card {
  padding: 26px;
}

.benefit-icon {
  margin-bottom: 18px;
}

.process-step::before {
  margin-bottom: 17px;
}

.cta-panel {
  padding: clamp(32px, 5vw, 56px);
}

.product-section {
  padding-block: clamp(48px, 7svh, 76px);
}

.network-grid .location-card {
  min-height: clamp(280px, 42svh, 350px);
  padding: 30px;
}

.about-page .network-grid .location-card {
  height: min(42svh, 320px);
  min-height: 280px;
  justify-content: flex-start;
}

.about-page .network-grid .location-card h3 {
  font-size: clamp(1.75rem, 2.45vw, 2.05rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.about-page .network-grid .location-card p {
  line-height: 1.55;
}

.about-page .network-grid .location-card address {
  margin-top: auto;
}

.about-page .logistics-section {
  padding-block: 40px;
}

.logistics-grid {
  margin-top: 30px;
}

.logistics-card {
  min-height: 124px;
  padding: 22px;
}

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

  .brand,
  .brand img {
    width: 194px;
  }

  .site-header.is-scrolled .header-inner {
    grid-template-columns: 222px 1fr auto;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img {
    width: 208px;
  }

  .intro-static .intro-shell {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: 28px;
  }

  .category-card {
    height: 340px;
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 190px;
  }

  .brand img {
    height: 72px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 94px;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img {
    width: 204px;
  }

  .site-header.is-scrolled .brand img {
    height: 78px;
  }

  .site-nav {
    min-height: calc(100dvh - 86px);
  }

  .site-header.is-scrolled .site-nav {
    min-height: calc(100dvh - 94px);
  }

  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 126px);
  }

  .intro-static .intro-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(210px, 31svh);
    align-content: center;
    gap: 14px;
    padding-block: 16px 20px;
  }

  .intro-static .intro-copy {
    text-align: left;
  }

  .intro-static .intro-logo {
    width: 160px;
    margin-bottom: 7px;
  }

  .intro-static .intro-message h1 {
    margin-bottom: 9px;
    font-size: clamp(2rem, 7.8vw, 3.15rem);
  }

  .intro-static .intro-message > p {
    margin-bottom: 11px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .intro-actions .button {
    min-height: 41px;
    padding: 8px 12px;
    font-size: 0.61rem;
  }

  .intro-static .intro-gallery {
    width: min(100%, 620px);
    height: 100%;
    min-height: 210px;
    max-height: 31svh;
    justify-self: start;
  }

  .page-hero-inner {
    min-height: min(450px, calc(100svh - 124px));
  }

  .home-page main > .section .category-grid,
  .home-page main > .section .benefit-grid,
  .home-page main > .section .process-grid {
    display: flex;
    overflow-x: auto;
    padding: 4px 3px 14px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .home-page .category-card,
  .home-page .benefit-card,
  .home-page .process-step {
    flex: 0 0 min(78vw, 350px);
    scroll-snap-align: start;
  }

  .home-page .category-card {
    height: 310px;
    min-height: 0;
  }

  .home-page .process-step {
    min-height: 180px;
    padding: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .home-page .process-step::before {
    position: static;
  }

  .home-page .process-step::after {
    display: none;
  }

  .home-page .split-media {
    display: none;
  }

  .about-page main > .section:nth-child(2) .split-media {
    display: none;
  }

  .about-page .network-grid,
  .about-page .logistics-grid,
  .about-page .value-grid {
    display: flex;
    overflow-x: auto;
    padding: 4px 3px 14px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .about-page .network-grid .location-card,
  .about-page .logistics-grid .logistics-card,
  .about-page .value-grid .value-card {
    flex: 0 0 min(78vw, 350px);
    scroll-snap-align: start;
  }

  .about-page .network-grid .location-card {
    height: 330px;
    min-height: 0;
  }

  .about-page .logistics-grid {
    margin-top: 22px;
  }

  .about-page .logistics-grid .logistics-card {
    min-height: 150px;
  }

  .product-page .product-section {
    padding-block: 24px;
  }

  .product-page .product-layout {
    gap: 14px;
  }

  .product-page .gallery-stage {
    height: 160px;
    aspect-ratio: auto;
  }

  .product-page .gallery-info {
    margin-block: 7px 5px;
    font-size: 0.66rem;
  }

  .product-page .gallery-thumbs {
    gap: 6px;
    padding-bottom: 5px;
  }

  .product-page .gallery-thumb {
    flex-basis: 50px;
  }

  .product-page .product-copy .product-number {
    margin-bottom: 8px;
    font-size: 0.64rem;
  }

  .product-page .product-copy h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }

  .product-page .product-copy > p {
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .product-page .product-points {
    gap: 6px;
    margin: 12px 0 14px;
  }

  .product-page .product-points li {
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .product-page .product-note {
    padding: 12px 14px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .product-page .product-copy > br {
    display: none;
  }

  .product-page .product-copy > .button {
    min-height: 42px;
    margin-top: 12px;
    padding-block: 8px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 82px;
  }

  .brand,
  .brand img {
    width: 174px;
  }

  .brand img {
    height: 68px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 90px;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img {
    width: 188px;
  }

  .site-header.is-scrolled .brand img {
    height: 74px;
  }

  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 122px);
  }

  .intro-actions {
    flex-wrap: nowrap;
  }

  .intro-actions .button {
    flex: 1 1 0;
  }

  .page-hero-inner {
    min-height: min(420px, calc(100svh - 120px));
    padding-block: 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section {
    padding-block: 42px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .home-page .split-media {
    min-height: 330px;
  }
}

@media (max-width: 760px) and (max-height: 690px) {
  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 122px);
  }

  .intro-static .intro-shell {
    grid-template-rows: auto 142px;
    gap: 7px;
    padding-block: 7px 12px;
  }

  .intro-static .intro-logo {
    width: 118px;
    margin-bottom: 3px;
  }

  .intro-static .intro-message h1 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    line-height: 0.96;
  }

  .intro-static .intro-message > p {
    margin-bottom: 6px;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .intro-actions {
    gap: 5px;
  }

  .intro-actions .button {
    min-height: 34px;
    padding: 6px 7px;
    font-size: 0.52rem;
  }

  .intro-static .intro-gallery {
    height: 142px;
    min-height: 142px;
    max-height: none;
  }

  .intro-slide figcaption {
    right: 12px;
    bottom: 10px;
    left: 12px;
    font-size: 1rem;
  }

  .intro-gallery-controls {
    top: 8px;
    right: 8px;
  }
}

/* Keep the complete hero visible in wide, short or landscape windows. */
@media (min-width: 861px) and (max-height: 650px) {
  .header-inner {
    min-height: 76px;
  }

  .brand,
  .brand img {
    width: 175px;
  }

  .brand img {
    height: 64px;
  }

  .nav-link {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .nav-link::after {
    bottom: 16px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 84px;
    grid-template-columns: 205px 1fr auto;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img {
    width: 188px;
  }

  .site-header.is-scrolled .brand img {
    height: 70px;
  }

  .site-header.is-scrolled .nav-link {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .site-header.is-scrolled .nav-link::after {
    bottom: 19px;
  }

  .intro-stage.intro-static,
  .intro-static .intro-shell {
    min-height: calc(100svh - 116px);
  }

  .intro-static .intro-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    gap: 24px;
    padding-block: 6px;
  }

  .intro-static .intro-logo {
    width: 185px;
    margin-bottom: 4px;
  }

  .intro-static .intro-message h1 {
    margin-bottom: 6px;
    font-size: clamp(2.2rem, 3.2vw, 2.75rem);
    line-height: 0.96;
  }

  .intro-static .intro-message > p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .intro-actions {
    gap: 7px;
  }

  .intro-actions .button {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.58rem;
  }

  .intro-static .intro-gallery {
    max-width: 690px;
    height: min(72svh, 360px);
    min-height: 300px;
  }

  .intro-slide figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 1.2rem;
  }

  .intro-gallery-controls {
    top: 12px;
    right: 12px;
  }
}
