:root {
  --bg: #060606;
  --bg-soft: #111111;
  --surface: #171413;
  --surface-2: #221c18;
  --paper: #f6eee2;
  --paper-soft: rgba(246, 238, 226, 0.76);
  --ink: #211913;
  --ink-soft: rgba(33, 25, 19, 0.72);
  --gold: #b99062;
  --gold-soft: rgba(185, 144, 98, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --pad: clamp(18px, 4vw, 56px);
  --cursor-x: 50%;
  --cursor-y: 30%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 0%, rgba(33, 26, 20, 0.28), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(185, 144, 98, 0.11), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 46%, #050505 100%);
  font-family: "Amiri", serif;
}

body.is-menu-open {
  overflow: hidden;
}

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

button,
img,
canvas {
  user-select: none;
  -webkit-user-drag: none;
}

#nile-flow,
.noise,
.ambient,
.cursor-glow,
.silk-ribbon {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#nile-flow {
  z-index: -5;
  opacity: 0.44;
}

.noise {
  z-index: -4;
  opacity: 0.05;
  background-image:
    linear-gradient(transparent 0 97%, rgba(255, 255, 255, 0.08) 97% 100%),
    linear-gradient(90deg, transparent 0 97%, rgba(255, 255, 255, 0.06) 97% 100%);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.ambient {
  z-index: -3;
  border-radius: 50%;
  filter: blur(110px);
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient--gold {
  top: 6%;
  left: 62%;
  width: 320px;
  height: 320px;
  background: rgba(185, 144, 98, 0.14);
}

.ambient--blue {
  top: 58%;
  left: 2%;
  width: 360px;
  height: 360px;
  background: rgba(38, 54, 61, 0.14);
  animation-duration: 22s;
}

.silk-ribbon {
  z-index: -2;
  filter: blur(26px);
  opacity: 0.56;
}

.silk-ribbon::before {
  content: "";
  position: absolute;
  width: 54vw;
  height: 18vh;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(248, 235, 217, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(185, 144, 98, 0.2), rgba(82, 66, 53, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.14);
  animation: silkFloat 15s ease-in-out infinite alternate;
}

.silk-ribbon--one::before {
  top: 8%;
  left: -6%;
  transform: rotate(-12deg);
}

.silk-ribbon--two::before {
  top: 44%;
  right: -10%;
  width: 62vw;
  animation-duration: 17s;
  transform: rotate(10deg);
}

.silk-ribbon--three::before {
  bottom: 10%;
  left: 14%;
  width: 46vw;
  animation-duration: 19s;
  transform: rotate(-8deg);
}

.cursor-glow {
  z-index: -1;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.03), rgba(185, 144, 98, 0.05) 12%, transparent 34%);
}

.progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 2px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.05);
}

.progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.94));
  box-shadow: 0 0 22px rgba(185, 144, 98, 0.85);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 6, 6, 0.58);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu-overlay.is-visible {
  opacity: 1;
}

.app-shell {
  padding: 14px;
}

.landing {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 18px 18px 26px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(16, 14, 13, 0.98), rgba(24, 20, 18, 0.92)),
    radial-gradient(circle at top right, rgba(185, 144, 98, 0.12), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 34px 100px rgba(0, 0, 0, 0.45);
}

.landing__topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  min-height: 64px;
  direction: ltr;
}

.menu-toggle {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 58%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(185, 144, 98, 0.32);
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 26px rgba(0, 0, 0, 0.18);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 81;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(185, 144, 98, 0.54);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(185, 144, 98, 0.06);
}

.landing__brand-en {
  color: #fff9f0;
  font: 700 clamp(2rem, 5vw, 3rem) / 1 "Bodoni Moda", serif;
  letter-spacing: 0.16em;
}

.landing__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.landing__lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 238, 226, 0.82);
  font: 600 1.05rem/1 "Manrope", sans-serif;
}

.lang-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.landing__lang i {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.28);
}

.landing__lang .is-active {
  color: var(--gold);
}

.menu-drawer {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 75;
  width: min(320px, calc(100vw - 42px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 16, 15, 0.98), rgba(27, 22, 20, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.menu-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #fff6ea;
}

.menu-drawer__header strong {
  font: 700 1.15rem/1 "Manrope", sans-serif;
}

.menu-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(185, 144, 98, 0.5);
  background: transparent;
  color: var(--gold);
  font-size: 1.35rem;
  cursor: pointer;
}

.menu-drawer__links {
  display: grid;
  gap: 10px;
}

.menu-drawer__links a {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 238, 226, 0.94);
  font: 600 1rem/1.2 "Manrope", sans-serif;
  transition: transform 180ms ease, background-color 180ms ease;
}

.menu-drawer__links a:hover {
  transform: translateY(-1px);
  background: rgba(185, 144, 98, 0.09);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0;
  direction: ltr;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(54, 40, 30, 0.94), rgba(75, 57, 43, 0.72) 46%, rgba(56, 43, 32, 0.08));
  border: 1px solid var(--line-soft);
  min-height: 560px;
  animation: panelBreath 8s ease-in-out infinite alternate;
}

.hero-panel__copy {
  position: relative;
  z-index: 2;
  padding: 28px 22px 28px;
  display: grid;
  gap: 16px;
  align-content: center;
  direction: rtl;
}

.hero-panel__eyebrow {
  margin: 0;
  color: rgba(246, 238, 226, 0.9);
  font-size: 1rem;
}

.hero-panel h1,
.hero-panel h2,
.info-card__copy h3,
.contact-banner__copy h2 {
  margin: 0;
}

.hero-panel h1 {
  color: #fff9f0;
  font: 700 clamp(3.4rem, 12vw, 5.6rem) / 0.95 "Bodoni Moda", serif;
  letter-spacing: 0.08em;
}

.hero-panel h2 {
  color: #f1cb8b;
  font-size: clamp(1.8rem, 7vw, 2.85rem);
  line-height: 1.3;
  max-width: 12ch;
}

.hero-panel__lead {
  margin: 0;
  max-width: 28rem;
  color: rgba(246, 238, 226, 0.92);
  font-size: clamp(1.04rem, 3.7vw, 1.34rem);
  line-height: 1.75;
}

.cta-button {
  width: min(100%, 240px);
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  border: 1px solid rgba(185, 144, 98, 0.86);
  color: var(--paper);
  background: rgba(185, 144, 98, 0.04);
  font: 700 1rem/1 "Manrope", sans-serif;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: rgba(185, 144, 98, 0.09);
}

.cta-button__arrow {
  font-size: 1.2rem;
}

.hero-panel__visual {
  position: relative;
  min-height: 100%;
}

.hero-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(270deg, rgba(31, 22, 16, 0.04) 0%, rgba(31, 22, 16, 0.14) 44%, rgba(31, 22, 16, 0.34) 100%);
  z-index: 1;
}

.hero-panel::after,
.info-card::before,
.stats-panel article::before,
.contact-banner::before,
.menu-drawer::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -12%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  transform: rotate(12deg) translateX(-150%);
  animation: panelSheen 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-panel__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: brightness(1.02) contrast(1.03);
}

.cards-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(249, 244, 237, 0.98), rgba(239, 229, 215, 0.98));
  border: 1px solid rgba(185, 144, 98, 0.16);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  border-color: rgba(185, 144, 98, 0.3);
}

.info-card__copy {
  padding: 20px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.info-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 144, 98, 0.75);
  color: var(--gold);
  font-size: 1.3rem;
}

.info-card__copy h3 {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.info-card__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.info-card__action {
  margin-top: 16px;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(185, 144, 98, 0.42);
  background: rgba(185, 144, 98, 0.08);
  color: var(--ink);
  font: 700 0.96rem/1 "Manrope", sans-serif;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.info-card__action:hover {
  transform: translateY(-1px);
  background: rgba(185, 144, 98, 0.14);
  border-color: rgba(185, 144, 98, 0.58);
}

.info-card__media {
  min-height: 210px;
  background-color: #d8cab7;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.info-card--wide .info-card__media {
  min-height: 170px;
}

.info-card__media--cotton {
  background-image:
    linear-gradient(180deg, rgba(36, 25, 18, 0.08), rgba(36, 25, 18, 0.18)),
    url("./assets/world-map.png");
  background-position: center, center;
}

.info-card__media--craft {
  background-image:
    linear-gradient(180deg, rgba(23, 18, 13, 0.1), rgba(23, 18, 13, 0.26)),
    url("./assets/cotton-close.png");
  background-position: center, center;
}

.info-card__media--folded {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(17, 17, 17, 0.04)),
    url("./assets/fabric.png");
  background-position: center, center;
}

.info-card__media--cotton-close {
  background-image:
    linear-gradient(180deg, rgba(36, 25, 18, 0.08), rgba(36, 25, 18, 0.16)),
    url("./assets/cotton-close.png");
  background-position: center, center;
}

.info-card__media--package {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(36, 25, 18, 0.08)),
    url("./assets/folded-shirts.png");
  background-position: center, center;
}

.info-card__media--fabric {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(36, 25, 18, 0.08)),
    url("./assets/fabric.png");
  background-position: center, center 62%;
}

.info-card__media--craft-detail {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(36, 25, 18, 0.08)),
    url("./assets/package.png");
  background-position: center, center 80%;
}

.info-card__media--materials {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(36, 25, 18, 0.08)),
    url("./assets/cotton-field.png");
  background-position: center, center;
}

.info-card__media--sustainability {
  background-image:
    linear-gradient(180deg, rgba(36, 25, 18, 0.08), rgba(36, 25, 18, 0.16)),
    url("./assets/cotton-field.png");
  background-position: center, center;
}

.info-card__media--map {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(36, 25, 18, 0.08)),
    url("./assets/sewing.jpg");
  background-position: center, center;
  background-color: #f5f0e9;
}

.stats-panel {
  margin-top: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-radius: 22px;
  background: rgba(26, 22, 20, 0.94);
  border: 1px solid rgba(185, 144, 98, 0.12);
}

.stats-panel article {
  position: relative;
  padding: 18px 16px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, background-color 220ms ease;
}

.stats-panel article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}

.stats-panel__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.stats-panel__item {
  padding: 8px 6px;
}

.stats-panel__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-panel__icon {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.55rem;
}

.stats-panel strong {
  display: block;
  color: #fff7ec;
  font: 700 2rem/1 "Manrope", sans-serif;
  margin-bottom: 8px;
}

.stats-panel p {
  margin: 0;
  color: rgba(246, 238, 226, 0.9);
  font-size: 1rem;
}

.contact-banner {
  position: relative;
  margin-top: 14px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(249, 244, 237, 0.98), rgba(239, 229, 215, 0.98));
  border: 1px solid rgba(185, 144, 98, 0.16);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.contact-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22);
}

.contact-banner__copy {
  padding: 24px 20px;
  display: grid;
  gap: 12px;
}

.contact-banner__copy p {
  margin: 0;
  color: rgba(33, 25, 19, 0.7);
}

.contact-banner__copy h2 {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.1;
}

.contact-banner__sublead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.04rem;
}

.contact-banner__items {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.contact-link {
  min-height: 56px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(185, 144, 98, 0.34);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font: 700 1rem/1 "Manrope", sans-serif;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(185, 144, 98, 0.58);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.contact-link__icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
}

.landing__footer {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(246, 238, 226, 0.92);
}

.landing__footer-icon {
  color: var(--gold);
}

.landing__footer p {
  margin: 0;
  font-size: 1.02rem;
}

.landing__credit {
  width: 100%;
  text-align: center;
  color: rgba(246, 238, 226, 0.7);
  font: 600 0.92rem/1.6 "Manrope", sans-serif;
}

.landing__credit-link {
  color: #f1cb8b;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-inline-start: 8px;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.landing__credit-link:hover {
  color: #fff4de;
  text-shadow: 0 0 18px rgba(241, 203, 139, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.15, 1);
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(22px, -16px, 0) scale(1.08);
  }
}

@keyframes silkFloat {
  from {
    transform: rotate(-10deg) translate3d(-2%, 0, 0) scaleX(1);
  }
  to {
    transform: rotate(8deg) translate3d(8%, 2%, 0) scaleX(1.08);
  }
}

@keyframes panelSheen {
  0%,
  18% {
    transform: rotate(12deg) translateX(-150%);
  }
  46% {
    transform: rotate(12deg) translateX(260%);
  }
  100% {
    transform: rotate(12deg) translateX(260%);
  }
}

@keyframes panelBreath {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-3px) scale(1.002);
  }
}

@media (min-width: 768px) {
  .app-shell {
    padding: 26px;
  }

  .landing {
    padding: 26px 26px 34px;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 700px;
  }

  .hero-panel__copy {
    padding: 44px 34px;
  }

  .hero-panel__visual {
    min-height: auto;
  }

  .hero-panel__visual img {
    object-position: 72% center;
  }

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

  .info-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
  }

  .info-card--image-right {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
  }

  .stats-panel {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 0;
    padding: 16px 18px;
  }

  .stats-panel article {
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .stats-panel article:first-child {
    border-left: 0;
  }

  .stats-panel__pair {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .contact-banner {
    padding: 4px;
  }

  .contact-banner__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .landing__topbar {
    padding-inline: 6px;
    margin-bottom: 28px;
  }

  .hero-panel {
    min-height: 760px;
  }

  .hero-panel__copy {
    padding: 54px 34px 42px;
  }

  .hero-panel h1 {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .hero-panel h2 {
    font-size: clamp(2.2rem, 3vw, 3.25rem);
  }

  .hero-panel__visual img {
    object-position: 72% center;
  }

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

  .info-card {
    grid-column: span 6;
  }

  .info-card--wide {
    grid-column: span 12;
  }

  .info-card--product {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .contact-banner__copy {
    padding: 34px 30px;
  }
}

@media (max-width: 767px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  }

  .landing__brand {
    justify-self: center;
    gap: 8px;
  }

  .landing__lang {
    font-size: 0.94rem;
  }

  .menu-drawer {
    top: 16px;
    left: 16px;
    width: min(290px, calc(100vw - 32px));
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .landing__brand-ar {
    font-size: 0.9rem;
    transform: translateY(-2px);
  }

  .cta-button {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    justify-content: center;
    gap: 10px;
  }

  .info-card__copy h3 {
    font-size: 1.65rem;
  }

  .info-card__action {
    width: 100%;
  }

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

  .hero-panel__copy {
    padding: 22px 16px 20px;
    gap: 12px;
  }

  .hero-panel h1 {
    font-size: clamp(2rem, 9.8vw, 3rem);
    letter-spacing: 0.04em;
  }

  .hero-panel h2 {
    font-size: clamp(1.3rem, 5.8vw, 1.8rem);
  }

  .hero-panel__lead {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .hero-panel__body {
    font-size: 0.92rem;
  }

  .hero-panel__visual img {
    object-position: 69% center;
  }

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

  .silk-ribbon::before {
    width: 88vw;
    height: 14vh;
  }

  .silk-ribbon--two::before {
    width: 94vw;
  }
}

.is-en {
  direction: ltr;
}

.is-en .hero-panel__copy,
.is-en .info-card__copy,
.is-en .contact-banner__copy,
.is-en .menu-drawer {
  direction: ltr;
  text-align: left;
}

.is-en .landing__brand-ar {
  order: 2;
}
