:root {
  color-scheme: dark;
  --ink: #050505;
  --ink-soft: #12110f;
  --surface-high: #1c1914;
  --paper: #fff8e8;
  --paper-soft: #f5ebd5;
  --muted: #c8bfa9;
  --acid: #d8a83e;
  --acid-soft: #ffd978;
  --rust: #2a2316;
  --outline: #9b854d;
  --line: rgba(216, 168, 62, 0.24);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 168, 62, 0.08), transparent 30rem),
    radial-gradient(circle at 12% 44%, rgba(59, 45, 14, 0.14), transparent 32rem),
    var(--ink);
  color: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 168, 62, 0.07), transparent 24rem),
    repeating-linear-gradient(0deg, rgba(255, 217, 120, 0.01) 0 1px, transparent 1px 5px);
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 12px;
  background: var(--acid-soft);
  color: var(--ink);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  min-height: 94px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.company-card-head img {
  border: 1px solid rgba(216, 168, 62, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(216, 168, 62, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--acid);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-self: end;
  gap: 1rem;
}

.language-switcher {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 62, 0.34);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.045);
}

.language-button {
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  background: linear-gradient(135deg, #9a6a18, var(--acid-soft), #b77b1d);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(216, 168, 62, 0.42);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 16px;
  height: 1px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  min-height: calc(100svh - 94px);
  margin: 0 auto;
  padding: 5rem 0 6rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.6rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--acid-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p,
blockquote {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.6vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  background: linear-gradient(105deg, #9a6a18 0%, var(--acid-soft) 46%, #b77b1d 100%);
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 500;
}

.hero-description {
  max-width: 590px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 2.4rem;
  align-items: center;
  gap: 1.7rem;
}

.primary-button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 1.45rem;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  border: 1px solid rgba(255, 248, 232, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, #9a6a18 0%, var(--acid-soft) 48%, #b77b1d 100%);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(216, 168, 62, 0.28);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(216, 168, 62, 0.42);
}

.text-link {
  color: var(--acid);
  font-size: 0.8rem;
  text-underline-offset: 0.42rem;
}

.hero-facts {
  display: grid;
  max-width: 660px;
  margin: 4.8rem 0 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.hero-facts div {
  padding: 1rem;
  border: 1px solid rgba(216, 168, 62, 0.3);
  border-radius: 14px;
  background: rgba(28, 25, 20, 0.72);
  box-shadow: inset 0 1px rgba(255, 248, 232, 0.025);
}

.hero-facts div + div {
  padding-left: 1rem;
}

.hero-facts dt {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-gallery {
  position: relative;
  min-height: 630px;
}

.hero-gallery::before {
  position: absolute;
  top: 3%;
  right: -22%;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(216, 168, 62, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(216, 168, 62, 0.36);
  border-radius: 18px;
  background: var(--surface-high);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 42px rgba(216, 168, 62, 0.1);
}

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

.hero-image-main {
  top: 1%;
  right: 0;
  width: 78%;
  height: 82%;
  transform: rotate(2.6deg);
}

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

.hero-image-secondary {
  bottom: 1%;
  left: 0;
  width: 47%;
  height: 48%;
  border: 10px solid var(--ink);
  border-radius: 16px;
  transform: rotate(-4deg);
}

.hero-image-secondary img {
  object-position: center 45%;
}

.hero-stamp {
  position: absolute;
  right: -1rem;
  bottom: 4%;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 232, 0.35);
  background: linear-gradient(145deg, #8c702e, var(--acid-soft), #7b5c1d);
  color: var(--ink);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 14px 34px rgba(216, 168, 62, 0.32);
}

.hero-stamp strong {
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.hero-stamp small {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  color: var(--acid-soft);
}

.marquee div {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-around;
  gap: 2.5rem;
}

.marquee span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.marquee i {
  font-style: normal;
}

.collection {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: 8.5rem 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: 4rem;
}

.section-heading h2,
.about-copy h2,
.contact-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5.5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 0.3rem;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-note {
  display: flex;
  margin: 3.8rem 0 2rem;
  align-items: center;
  gap: 0.75rem;
}

.showcase-note > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(216, 168, 62, 0.55);
}

.showcase-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.7rem 1rem;
  perspective: 1400px;
}

.product-card {
  --image-height: 480px;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --shine-x: 50%;
  --shine-y: 35%;
  --image-x: 0px;
  --image-y: 0px;
  --card-lift: 0px;
  --card-scale: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  transform:
    perspective(1000px)
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    translateZ(var(--card-lift))
    scale(var(--card-scale));
  transform-style: preserve-3d;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
  will-change: transform;
}

.product-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: var(--image-height);
  background: radial-gradient(
    circle at var(--shine-x) var(--shine-y),
    rgba(255, 255, 255, 0.22),
    transparent 38%
  );
  content: "";
  opacity: 0.38;
  pointer-events: none;
  transform: translateZ(130px);
  transition: opacity 180ms ease;
}

.product-card-wide {
  --image-height: 580px;
  grid-column: span 2;
}

.product-card:hover {
  --card-lift: 38px;
  --card-scale: 1.02;
  z-index: 10;
  filter: drop-shadow(0 44px 42px rgba(0, 0, 0, 0.34));
}

.product-card:hover::before {
  opacity: 0.68;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(216, 168, 62, 0.34);
  border-radius: 18px;
  background: var(--ink-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 26px rgba(216, 168, 62, 0.08);
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.product-card-wide .product-image {
  height: 580px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--image-x), var(--image-y), 56px);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-image:not(.product-image-dark) img {
  object-fit: contain;
}

.product-image-cutout {
  isolation: isolate;
  overflow: visible;
}

.product-image-cutout::before,
.product-image-cutout::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.product-image-cutout::before {
  inset: 0;
  z-index: -2;
}

.product-image-cutout::after {
  right: 10%;
  bottom: 8%;
  z-index: -1;
  width: 80%;
  height: 14%;
  border-radius: 50%;
  background: rgba(18, 17, 15, 0.2);
  filter: blur(22px);
}

.product-image-cutout img {
  position: relative;
  z-index: 1;
  padding: 0.9rem;
  filter:
    drop-shadow(0 28px 18px rgba(18, 17, 15, 0.24))
    drop-shadow(0 52px 36px rgba(18, 17, 15, 0.18));
  transform:
    translate3d(var(--image-x), calc(var(--image-y) - 10px), 115px)
    scale(1.08);
  transform-origin: center 76%;
}

.cutout-keratin::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 217, 120, 0.18), transparent 34%),
    linear-gradient(145deg, #1c1914, #0b0a08);
  border-radius: inherit;
}

.cutout-almond::before {
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 217, 120, 0.22), transparent 34%),
    linear-gradient(145deg, #2a2316, #0d0b07);
  border-radius: inherit;
}

.cutout-mint::before {
  background:
    radial-gradient(circle at 75% 20%, rgba(216, 168, 62, 0.18), transparent 34%),
    linear-gradient(145deg, #1c1914, #090806);
  border-radius: inherit;
}

.product-image-dark img {
  object-position: center 38%;
}

.product-image-lifestyle img {
  object-fit: cover;
  object-position: center 48%;
}

.product-card:hover .product-image img {
  transform: translate3d(var(--image-x), var(--image-y), 90px) scale(1.055);
}

.product-card:hover .product-image-cutout img {
  filter:
    drop-shadow(0 38px 22px rgba(18, 17, 15, 0.3))
    drop-shadow(0 78px 52px rgba(18, 17, 15, 0.26));
  transform:
    translate3d(var(--image-x), calc(var(--image-y) - 26px), 190px)
    scale(1.2);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 248, 232, 0.26);
  background: linear-gradient(135deg, #9a6a18, var(--acid-soft), #b77b1d);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-details {
  display: flex;
  padding-top: 1.1rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  transform: translateZ(48px);
  transition: transform 260ms ease;
}

.product-card:hover .product-details {
  transform: translateZ(92px) translateY(4px);
}

.product-type {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-details h3 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.product-size {
  flex: 0 0 auto;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.about-visual,
.about-copy {
  min-height: 650px;
  padding: clamp(4rem, 7vw, 7.5rem) max(1.5rem, calc((100vw - var(--content)) / 2));
}

.about-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 168, 62, 0.16), transparent 20rem),
    linear-gradient(145deg, var(--surface-high), var(--ink-soft));
  color: var(--paper);
}

.about-visual::after {
  position: absolute;
  top: -24%;
  right: -18%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(216, 168, 62, 0.24);
  border-radius: 50%;
  content: "";
}

.about-visual .eyebrow {
  color: var(--acid-soft);
}

.about-number {
  position: absolute;
  top: 2.8rem;
  left: max(1.5rem, calc((100vw - var(--content)) / 2));
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.about blockquote {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-copy {
  padding-left: clamp(3rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 12% 88%, rgba(59, 45, 14, 0.14), transparent 22rem),
    var(--ink-soft);
}

.about-copy h2 {
  margin-bottom: 2.4rem;
}

.about-copy > p {
  max-width: 610px;
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-list {
  max-width: 610px;
  margin: 2.8rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list li::before {
  position: absolute;
  left: 0;
  color: var(--acid);
  content: "↗";
}

.contact {
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: 8.5rem 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.8rem 0 2rem;
  color: var(--muted);
  line-height: 1.75;
}

.primary-button-light {
  border-color: rgba(255, 248, 232, 0.32);
  background: linear-gradient(135deg, #9a6a18 0%, var(--acid-soft) 48%, #b77b1d 100%);
}

.company-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(216, 168, 62, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 168, 62, 0.14), transparent 14rem),
    var(--ink-soft);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), 0 0 32px rgba(216, 168, 62, 0.08);
}

.company-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 72px;
  height: 72px;
  border-top: 1px solid var(--acid);
  border-right: 1px solid var(--acid);
  border-radius: 0 18px 0 0;
  content: "";
}

.company-card-head {
  display: flex;
  padding-bottom: 1.6rem;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.company-card-head p {
  margin: 0 0 0.25rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.company-card-head span {
  color: var(--muted);
  font-size: 0.72rem;
}

.company-card dl {
  margin: 0;
}

.company-card dl div {
  display: grid;
  padding: 1.15rem 0;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.company-card dt {
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.78rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.company-card dd a {
  text-underline-offset: 0.3rem;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 3rem), var(--content));
  min-height: 120px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 1.4rem;
}

html[dir="rtl"] body {
  font-family: Arial, sans-serif;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .hero-facts div {
  padding: 1rem;
}

html[dir="rtl"] .hero-facts div + div {
  padding: 1rem;
}

html[dir="rtl"] .product-badge {
  right: 1rem;
  left: auto;
}

html[dir="rtl"] .service-list li {
  padding-right: 2rem;
  padding-left: 0;
}

html[dir="rtl"] .service-list li::before {
  right: 0;
  left: auto;
}

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

  .main-nav {
    position: fixed;
    inset: 94px 0 0;
    display: none;
    padding: 3rem 1.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
    background: rgba(5, 5, 5, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .menu-button {
    display: flex;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    width: min(100%, 620px);
    min-height: 680px;
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .product-card-wide {
    grid-column: span 1;
  }

  .product-card,
  .product-card-wide {
    --image-height: 500px;
  }

  .product-card-wide .product-image,
  .product-image {
    height: 500px;
  }

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

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

  .about-visual,
  .about-copy {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header,
  .hero,
  .collection,
  .contact,
  .site-footer {
    width: min(calc(100% - 2rem), var(--content));
  }

  .site-header {
    min-height: 78px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .language-button {
    width: 34px;
    height: 32px;
  }

  .main-nav {
    inset: 78px 0 0;
  }

  .hero {
    padding: 4rem 0 4.8rem;
    gap: 2.5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-facts {
    margin-top: 3.5rem;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 1rem;
  }

  .hero-facts div + div {
    padding-left: 1rem;
  }

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

  .hero-image-main {
    width: 82%;
    height: 82%;
  }

  .hero-image-secondary {
    width: 48%;
    height: 46%;
    border-width: 7px;
  }

  .hero-stamp {
    right: 0;
    width: 102px;
    height: 102px;
  }

  .marquee div {
    justify-content: flex-start;
  }

  .collection,
  .contact {
    padding: 6rem 0;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .showcase-note {
    margin-top: 2.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-card,
  .product-card-wide {
    --image-height: min(125vw, 560px);
  }

  .product-card-wide .product-image,
  .product-image {
    height: min(125vw, 560px);
  }

  .about-visual,
  .about-copy {
    padding: 5rem 1rem;
  }

  .about-number {
    top: 2rem;
    left: 1rem;
  }

  .about-copy {
    padding-top: 5.5rem;
  }

  .company-card {
    padding: 1.3rem;
  }

  .company-card dl div {
    grid-template-columns: 90px 1fr;
  }

  .site-footer {
    padding: 2.2rem 0;
    grid-template-columns: 1fr;
    gap: 1.3rem;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-self: center;
  }

  html[dir="rtl"] .hero-facts div + div {
    padding: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .product-card,
  .product-card:hover {
    --card-lift: 0px;
    --card-scale: 1;
    filter: none;
    transform: none !important;
    will-change: auto;
  }

  .product-image,
  .product-image img,
  .product-card:hover .product-image img,
  .product-image-cutout img,
  .product-card:hover .product-image-cutout img,
  .product-details,
  .product-card:hover .product-details,
  .product-card::before {
    transform: none !important;
  }
}
  box-shadow: 0 14px 34px rgba(216, 168, 62, 0.32);
