@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/CormorantGaramond-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/CormorantGaramond-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/CormorantGaramond-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/CormorantGaramond-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/PlayfairDisplay-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/BodoniModa-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair VF';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 87.5%;
  font-display: swap;
  src: url('assets/fonts/Playfair-var.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4ede1;
  --band: #ede2ce;
  --surface: #f2eadd;
  --navy: #101b33;
  --gold: #b4762f;
  --clay: #bf8163;
  --clay-dark: #a2664a;
  --text: #4a423a;
  --line: rgba(16, 27, 51, 0.14);
  --edge: clamp(18px, 3.4vw, 48px);
  --col: clamp(150px, 21vw, 300px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: var(--navy);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 62px);
  padding: 14px var(--edge);
  background: var(--bg);
}

.logo {
  flex: 1;
}

.logo img {
  height: clamp(52px, 5.4vw, 74px);
  width: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav a { transition: color 0.25s; }
.nav a:hover { color: var(--gold); }

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.request-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--navy);
  background: none;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.request-btn:hover { background: var(--clay); border-color: var(--clay); color: #fdf9f4; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.burger span {
  height: 1.5px;
  background: var(--navy);
}

.hero {
  padding: clamp(14px, 2vw, 30px) var(--edge) clamp(30px, 4vw, 56px);
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: 'Playfair VF', 'Bodoni Moda', Georgia, serif;
  font-weight: 600;
  font-stretch: 87.5%;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: var(--navy);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__title span { display: block; }
.hero__title span:nth-child(1) { font-size: clamp(20px, 5.6vw, 79px); }
.hero__title span:nth-child(2) { font-size: clamp(24px, 6.8vw, 95px); }

.hero__rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: clamp(10px, 1.2vw, 18px) auto clamp(8px, 0.9vw, 14px);
  background: var(--clay);
}

.hero__kicker {
  margin: 0;
  font-family: 'Playfair VF', Georgia, serif;
  font-size: clamp(11px, 1.15vw, 16px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero__where {
  margin: 5px 0 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(14px, 1.3vw, 19px);
  color: var(--navy);
}

.hero__lead {
  max-width: 460px;
  margin: clamp(14px, 1.6vw, 22px) auto 0;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
  color: var(--text);
}

.hero__shots {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 2px;
  width: 84%;
  margin: clamp(18px, 2.4vw, 34px) auto 0;
}

.hero__reel.is-reel .hero__shots,
.hero__reel.is-reel .hero__brands {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4px) / 3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero__shots::-webkit-scrollbar,
.hero__brands::-webkit-scrollbar { display: none; }

.hero__shots > img,
.hero__brand { scroll-snap-align: start; }

.hero__shots img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero__brands {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 2px;
  width: 84%;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 30px) 0 0;
}

.hero__brand {
  display: grid;
  grid-template-rows: clamp(34px, 3.9vw, 56px) auto;
  align-items: center;
  justify-items: center;
  padding: 0 clamp(8px, 1.4vw, 24px);
  border-left: 1px solid var(--line);
}

.hero__brand:first-child { border-left: 0; }

.hero__mark {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0;
}

.hero__mark { height: clamp(var(--mk-min), var(--mk-vw), var(--mk-max)); }

.hero__brand h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 1.6vw, 23px);
  font-weight: 400;
  color: var(--navy);
}

.hero__country {
  display: block;
  margin: 4px 0 12px;
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__brand p {
  margin: 0;
  font-size: clamp(10px, 0.92vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.hero__cta {
  justify-self: center;
  margin: clamp(24px, 3vw, 40px) auto 0;
}

.block {
  display: grid;
  grid-template-columns: var(--col) 1fr;
  gap: clamp(20px, 4vw, 62px);
  align-items: start;
  padding: clamp(38px, 5vw, 72px) 0 clamp(38px, 5vw, 72px) var(--edge);
}

.block__side p {
  margin: 0 0 16px;
  max-width: 260px;
  font-size: 15px;
}

.block__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}

.block__num {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.block__title {
  font-size: clamp(21px, 2.2vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 0 22px;
  background: var(--gold);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s, gap 0.25s;
}

.arrow-link:hover { color: var(--gold); gap: 18px; }
.arrow-link--ruled { border-top: 1px solid var(--line); margin-top: 6px; }

.company__media {
  padding-right: var(--edge);
}

.collage { display: block; width: 100%; }
.collage img { display: block; width: 100%; max-width: 100%; height: auto; }

.expand {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand.is-open { grid-template-rows: 1fr; }

.expand__inner {
  overflow: hidden;
  min-height: 0;
}

button.arrow-link {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px 0 0;
}

button.arrow-link span { transition: transform 0.35s; }
button.arrow-link[aria-expanded="true"] span { transform: rotate(90deg); }

.about {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(26px, 5vw, 76px);
  margin-top: clamp(34px, 4vw, 62px);
  padding-right: var(--edge);
}

.about h3 {
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.3;
  margin-bottom: 18px;
}

.about p {
  margin: 0 0 16px;
  font-size: 16px;
  max-width: 560px;
}

.about__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about__list li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 9px;
  height: 1px;
  background: var(--gold);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 30px) var(--edge) 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.crumbs a {
  color: rgba(74, 66, 58, 0.75);
  transition: color 0.25s;
}

.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }
.crumbs b { font-weight: 500; color: var(--navy); }

.legal__text {
  max-width: 760px;
  padding-right: var(--edge);
}

.legal__text h2 {
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 34px 0 12px;
}

.legal__text h2:first-child { margin-top: 0; }

.legal__text p {
  margin: 0 0 14px;
  font-size: 16px;
}

.contact-panel__legal {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(74, 66, 58, 0.85);
}

.contact-panel__legal a { border-bottom: 1px solid var(--line); }
.contact-panel__legal a:hover { color: var(--gold); }

.footer__legal a { border-bottom: 1px solid var(--line); }
.footer__legal a:hover { color: var(--gold); }
.footer__legal span + span { margin-left: auto; }

.band {
  display: grid;
  grid-template-columns: var(--col) 1fr;
  gap: clamp(20px, 4vw, 62px);
  align-items: center;
  padding: clamp(34px, 4.4vw, 62px) var(--edge);
  background: var(--band);
}

.band__side p {
  margin: 0;
  max-width: 240px;
  font-size: 15px;
}

.band__side p + p { margin-top: 14px; }

.band__side .block__head { margin-bottom: 10px; }

.discs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding-right: clamp(0px, 4vw, 60px);
}

.disc { margin: 0; text-align: center; }

.disc img {
  width: clamp(140px, 19vw, 270px);
  height: auto;
  margin: 0 auto 6px;
  -webkit-mask-image: radial-gradient(closest-side, #000 46%, rgba(0, 0, 0, 0) 82%);
  mask-image: radial-gradient(closest-side, #000 46%, rgba(0, 0, 0, 0) 82%);
}

.disc figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}

.slider {
  position: relative;
  padding-right: var(--edge);
}

.slider__track {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: clamp(10px, 1.4vw, 20px);
}

.slider.is-reel .slider__track {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * clamp(10px, 1.4vw, 20px)) / 3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider__track::-webkit-scrollbar { display: none; }
.card { scroll-snap-align: start; }

.card {
  display: flex;
  flex-direction: column;
  background: none;
}

.card__story {
  margin: 15px clamp(14px, 1.4vw, 20px) 0;
  padding: 12px 10px;
  border: 1px solid var(--line);
  background: none;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.card__story:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--band);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: contain;
  padding: 10% 14% 14%;
}

.card__body { padding: 18px clamp(14px, 1.4vw, 20px) 22px; }

.card__body h3 {
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.card__country {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.card__body p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.5;
}

.card__body .arrow-link {
  border-top: 1px solid var(--line);
  width: 100%;
  padding-top: 12px;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: rgba(16, 27, 51, 0.5);
  cursor: pointer;
  padding: 6px;
}

.slider__arrow { display: none; }
.slider.is-reel .slider__arrow { display: block; }
.slider__arrow--prev { left: -26px; }
.slider__arrow--next { right: calc(var(--edge) - 26px); }
.slider__arrow:hover { color: var(--gold); }
.slider__arrow[disabled] { opacity: 0.25; cursor: default; }

.hero__reel { position: relative; }
.hero__lane { position: relative; }

.hero__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: rgba(16, 27, 51, 0.55);
  cursor: pointer;
  padding: 10px 6px;
  transition: color 0.25s;
}

.hero__arrow svg {
  display: block;
  width: clamp(20px, 1.8vw, 30px);
  height: clamp(44px, 3.9vw, 64px);
}

.hero__reel.is-reel .hero__arrow { display: block; }

.hero__arrow:hover { color: var(--gold); }
.hero__arrow[disabled] { opacity: 0.22; cursor: default; }
.hero__arrow--prev { left: calc(8% - 46px); }
.hero__arrow--next { right: calc(8% - 46px); }

.slider__bar {
  display: none;
  height: 1px;
  margin-top: 22px;
  background: var(--line);
}

.slider__bar i {
  display: block;
  width: 33%;
  height: 2px;
  margin-top: -0.5px;
  background: var(--clay);
}

.band--partnership {
  grid-template-columns: var(--col) 1fr;
  align-items: center;
}

.btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 38px;
  border: 0;
  background: var(--clay);
  color: #fdf9f4;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover { background: var(--clay-dark); }

.story {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.story[hidden] { display: none; }

.story__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 51, 0.42);
}

.story__body {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(26px, 3vw, 44px);
  background: var(--bg);
  text-align: center;
}

.story__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

.story__logo {
  width: min(180px, 55%);
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.story__country {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.story__body h2 {
  font-size: clamp(23px, 2.4vw, 31px);
  margin-bottom: 22px;
}

.story__text {
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.story__text p {
  margin: 0 0 15px;
  font-size: 15.5px;
  line-height: 1.65;
}

.story__text p:first-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: var(--navy);
}

.story__text p:last-child { margin-bottom: 26px; }

.story .btn { display: inline-flex; }

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.contact-panel[hidden] { display: none; }

.contact-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 51, 0.4);
}

.contact-panel__body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  overflow-y: auto;
}

.contact-panel__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

.contact-panel h2 {
  font-size: clamp(22px, 2.2vw, 29px);
  margin-bottom: 8px;
}

.contact-panel__lead {
  margin: 0 0 24px;
  font-size: 15.5px;
  max-width: 320px;
}

.contact-panel__direct {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--navy);
}

.contact-panel__direct a:hover { color: var(--gold); }

.contact-panel__direct span {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-panel input,
.contact-panel textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: 8px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  resize: none;
}

.contact-panel input:focus,
.contact-panel textarea:focus { outline: none; border-bottom-color: var(--gold); }
.contact-panel .invalid { border-bottom-color: #b4553f; }

.contact-panel button[type="submit"] {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}

.contact-note {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  color: var(--gold);
}

.footer {
  padding: clamp(30px, 3.6vw, 48px) var(--edge) 18px;
  background: var(--surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: var(--col) repeat(3, 1fr) auto;
  gap: clamp(16px, 2.6vw, 40px);
  align-items: start;
}

.logo--footer img { height: clamp(56px, 5.6vw, 80px); }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}

.footer__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer__col a { transition: color 0.25s; }
.footer__col a:hover { color: var(--gold); }

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.socials { display: flex; gap: 20px; color: var(--navy); }
.socials a { display: flex; }
.socials a:hover { color: var(--gold); }
.socials svg { width: 34px; height: 34px; }

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: rgba(74, 66, 58, 0.85);
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; }
  .topbar { gap: 16px; }
  .nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 6px var(--edge) 18px;
  }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .logo--footer { grid-column: 1 / -1; }
  .footer__meta { grid-column: 1 / -1; align-items: flex-start; flex-direction: row; justify-content: space-between; }
}

@media (max-width: 760px) {
  .hero { text-align: left; }
  .hero__rule { margin-left: 0; }

  .hero__shots,
  .hero__brands {
    width: auto;
    margin-left: calc(var(--edge) * -1);
    margin-right: calc(var(--edge) * -1);
  }
  .hero__shots { gap: 0; }
  .hero__reel.is-reel .hero__shots { grid-auto-columns: calc(100% / 3); }
  .hero__reel.is-reel .hero__arrow { display: none; }
  .hero__shots img { aspect-ratio: 2 / 3; }

  .hero__brands {
    gap: 0;
    background: var(--band);
    padding: 18px 0 20px;
    text-align: center;
  }
  .hero__brand { padding: 0 4px; }
  .hero__brand h2 { font-size: 13px; white-space: nowrap; }
  .hero__mark { height: var(--mk-mob); }
  .hero__brand p { font-size: 10px; letter-spacing: 0.08em; }

  .hero__cta {
    display: flex;
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
  }


  .block,
  .band {
    grid-template-columns: 1fr;
    padding-right: var(--edge);
  }
  .block { padding-left: var(--edge); }
  .hero__line--mid { margin-top: 0; }
  .footer__col { font-size: 13px; word-break: break-word; }
  .about { grid-template-columns: 1fr; padding-right: 0; }
  .discs { grid-template-columns: 1fr; gap: 26px; padding-right: 0; }
  .disc img { width: 150px; height: 150px; }
  .slider { padding-right: 0; overflow: hidden; }
  .slider__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .slider__track::-webkit-scrollbar { display: none; }
  .card { scroll-snap-align: start; }
  .slider__arrow,
  .slider__bar { display: block; }
  .slider__arrow--prev { left: -8px; }
  .slider__arrow--next { right: -8px; }
  .btn { justify-self: start; margin-top: 22px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about p { max-width: none; }
}

@media (max-width: 1080px) {
  .slider { overflow: hidden; }
  .slider__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 46%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .slider__track::-webkit-scrollbar { display: none; }
  .card { scroll-snap-align: start; }
  .slider__arrow,
  .slider__bar { display: block; }
  .slider__arrow--prev { left: -8px; }
  .slider__arrow--next { right: -8px; }
  .crumbs { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 900px) {
  .company__media { padding-right: var(--edge); }
}

@media (max-width: 760px) {
  .topbar { gap: 10px; padding: 12px var(--edge); }
  .logo img { height: 44px; }
  .request-btn { padding: 8px 12px; font-size: 9.5px; letter-spacing: 0.12em; }
  .topbar__right { gap: 12px; }

  .crumbs { padding-top: 14px; font-size: 10px; letter-spacing: 0.16em; }

  .block { padding-left: var(--edge); padding-right: var(--edge); }
  .block__side p { max-width: none; }

  .slider__track { grid-template-columns: repeat(3, 78%); }

  .footer__col { font-size: 13px; word-break: break-word; }
  .footer__legal { flex-direction: column; gap: 8px; font-size: 11.5px; }
  .footer__legal span + span { margin-left: 0; }

  .legal__text { padding-right: 0; }
  .legal__text h2 { margin-top: 26px; }

  .contact-panel__body { width: 100%; }

  .contact-panel__close {
    top: 6px;
    right: 6px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
    padding: 0;
  }

  .story { padding: 0; }
  .story__body { max-height: 100%; height: 100%; padding: 54px 20px 28px; }
  .story__close {
    top: 6px;
    right: 6px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .hero__line--mid,
  .hero__line--mid { margin-top: 12px; }
  .hero__line--mid { margin-left: 0; }

  .disc img { width: 150px; }
  .btn { width: 100%; }
}

@media (max-width: 560px) {
  .hero { padding-left: var(--edge); padding-right: var(--edge); }
  .logo img { height: 38px; }
  .request-btn { padding: 8px 10px; font-size: 9px; }
  .footer__col a { font-size: 12.5px; overflow-wrap: anywhere; }
}

@media (max-width: 900px) {
  #company .block__side { order: 1; }
  #company .expand { order: 2; }
  #company .company__media { order: 3; }
  #company .about { order: 4; }
}