:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #000000;
  --line: #f2f2f2;
  --nav: #f1c0ba;

  --container: 1487px;
  --gutter: 20px;

  --heroTitle: clamp(2.2rem, 4.6vw + 0.8rem, 6.2rem);
  --heroSub: clamp(1.2rem, 2.2vw + 0.4rem, 3.2rem);
  --body: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial,
  sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  transform: translateY(-200%);
  transition: transform 160ms ease;
  z-index: 9999;
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.container.pair {
  display: grid;
  grid-template-columns: 1fr 1.76fr;
  gap: 112px;
  align-items: stretch;
}

.container.pair2 {
  display: grid;
  grid-template-columns: 1fr 1.86fr;
  gap: 92px;
  align-items: stretch;
}

.container.pair3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
}

.container.pair4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
  justify-items: end;
}

.pair__img {
  height: auto;
  object-fit: cover;
  max-height: 747px;
}

.pair__img--left {
  justify-self: left;
}

.pair__img--right {
  justify-self: right;
}

.final {
  max-height: 1755px;
  margin: 0 auto;
}

.pair__img_tall {
  max-height: 1001px;
}
.single {
  max-width: 693px;
  margin: 0 auto;
  height: 560px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .container.pair {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container.pair2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container.pair3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container.pair4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pair__img {
    width: 100%;
  }

  .single {
    max-width: 100%;
  }
}

.section-title, .section-link {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-link {
  text-decoration: underline;
  text-underline-offset: 1px;
}

p {
  margin: 0;
  font-size: var(--body);
  color: var(--muted);
  font-weight: 500;
  line-height: 200%;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(241, 192, 186, 0.8);
  outline-offset: 3px;
  border-radius: 6px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #333;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.brand-logo__img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--nav);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.nav__link:hover {
  color: #e9a9a1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.icon-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-link img {
  width: 100%;
  height: 100%;
}

.icon-link__ghost {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #ddd;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu__inner {
  padding: 16px 0 22px;
  display: grid;
  gap: 10px;
}

.mobile-menu__link {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--nav);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero {
  padding: 56px 0 0;
}

.hero__frame {
  position: relative;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 19vw, 177px);
  transform: translateX(-50%);
  width: min(100%, 1487px);
  padding: 0 12px;
  text-align: center;
  color: #fff;
}

.hero__title {
  margin: 0;
  font-size: var(--heroTitle);
  font-weight: 500;
  line-height: 1;
}

.hero__subtitle {
  margin: 12px 0 0;
  font-size: var(--heroSub);
  font-weight: 500;
  color: #fff;
}

.section {
  padding: 28px 0;
}

.text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3.5vw, 84px);
}

.text-cols p {
  width: 96%;
}

#main-video {
  height: 515px;
  object-fit: cover;
}

.video__frame {
  position: relative;
  display: block;
}

.video__img {
  width: 100%;
  height: auto;
  display: block;
}

.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  cursor: pointer;
}

.quote {
  padding-top: 24px;
  padding-bottom: 24px;
}

.quote__text {
  text-align: center;
  color: #000;
  font-weight: 500;
  font-size: var(--body);
}

.look__img {
  width: 100%;
  height: auto;
  display: block;
}

.section-head {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.product__img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
}

.product__img img {
  width: 100%;
  height: auto;
  display: block;
}

.product__meta {
  padding-top: 10px;
  display: grid;
  gap: 6px;
}

.product__name {
  font-size: 12px;
  line-height: 12px;
  color: #333;
  font-weight: 500;
}

.product__price {
  font-size: 12px;
  line-height: 12px;
  color: #000;
  font-weight: 500;
}

.button {
  display: flex;
}

.bottom__button {
  margin: 0 auto;
  background: transparent;
  padding: 17px 38px;
  border-radius: 30px;
  font-size: var(--body);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border: 1px solid black;
  font-weight: 500;
  cursor: pointer;
}
.site-footer {
  border-top: 1px solid var(--line);
}

.footer__bottom {
  padding: 18px 0 28px;
}

.footer__text {
  font-size: 12px;
  color: #333;
}

@keyframes slideme {
  0% { left: -30px; margin-left: 0; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; }
}
.btn-shine {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.btn-shine:hover::after {
  content: "";
  display: block;
  width: 30px;
  height: 200px;
  margin-left: 60px;
  background: #fff;
  opacity: 0.5;
  position: absolute;
  left: -40px;
  top: -100px;
  z-index: 1;
  transform: rotate(45deg);
  animation: slideme 3s ease-in-out infinite;
}

@media (max-width: 980px) {
  .brand-logo {
    position: static;
    transform: none;
  }
  .text-cols {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  #main-video {
    height: 419px;
  }
  .single {
    height: 419px;
  }
  :root {
    --body: .8rem;
  }
  .nav {
    display: none;
  }
  .section {
    padding: 28px 0;
  }
  .nav-toggle {
    display: inline-flex;
  }

  .brand-logo__img {
    height: 46px;
  }

  .product-grid {
    grid-template-columns: repeat(4, 80%);
    grid-template-rows: 1fr;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 20px;
  }
}
