:root {
  --black: #000;
  --white: #fff;
  --soft-white: #f4f4f2;
  --gray: #777;
  --line: #d8d8d8;
  --max: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .07em;
}

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

.contacts {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.login-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.brandbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brandbar-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 620px) 1fr;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1;
}

.search {
  border-bottom: 1px solid var(--black);
  display: flex;
  align-items: center;
}

.search input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  padding: 0 10px 0 0;
  background: transparent;
  font-size: 13px;
}

.search button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.search svg, .icon-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  display: grid;
  place-items: center;
}

.nav-wrap {
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.7vw, 42px);
}

.main-nav a {
  position: relative;
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 12px;
  height: 1px;
  background: var(--black);
  transition: .25s ease;
}

.main-nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
}
.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 1px;
  background: var(--black);
  display: block;
  margin: 6px auto;
}

.hero-slider {
  position: relative;
  height: min(78vh, 840px);
  min-height: 610px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-visual::before,
.slide-visual::after {
  content: "";
  position: absolute;
  transition: transform 8s ease;
}

.slide.active .slide-visual::before,
.slide.active .slide-visual::after { transform: scale(1.04); }

.visual-1 {
  background:
    linear-gradient(120deg, #111 0 42%, #e9e9e7 42% 100%);
}
.visual-1::before {
  width: 34vw; height: 72vh;
  max-height: 690px;
  right: 14vw; top: 10%;
  background: #0a0a0a;
  border-radius: 48% 48% 3% 3%;
  transform: rotate(-3deg);
}
.visual-1::after {
  width: 11vw; height: 58vh;
  right: 28vw; bottom: -4%;
  border-left: 5vw solid #fff;
  border-right: 5vw solid #fff;
  opacity: .97;
}

.visual-2 {
  background:
    radial-gradient(circle at 70% 45%, #3a3a3a 0 12%, transparent 12.5%),
    linear-gradient(90deg, #050505 0 50%, #dcdcdc 50% 100%);
}
.visual-2::before {
  width: 30vw; height: 60vh;
  right: 12vw; top: 12%;
  border: 2px solid #000;
  border-radius: 50% 50% 20% 20%;
}
.visual-2::after {
  width: 2px; height: 80%;
  background: #000;
  right: 27vw; top: 10%;
}

.visual-3 {
  background:
    repeating-linear-gradient(90deg, #0b0b0b 0 2px, transparent 2px 150px),
    linear-gradient(110deg, #111 0 56%, #efefed 56% 100%);
}
.visual-3::before {
  width: 25vw; height: 72vh;
  right: 17vw; top: 7%;
  background: #111;
  clip-path: polygon(27% 0, 73% 0, 90% 30%, 78% 100%, 22% 100%, 10% 30%);
}
.visual-3::after {
  width: 9vw; height: 55vh;
  right: 24vw; bottom: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 28% 100%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.1) 58%, rgba(0,0,0,.03));
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}
.eyebrow.light { color: rgba(255,255,255,.72); }

.slide h1,
.section-heading h2,
.buy-now h2,
.newsletter h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

.slide h1 {
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: .86;
  margin: 0;
  letter-spacing: -.05em;
}

.slide-content > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
  margin: 28px 0;
}

.btn {
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
  transition: .25s ease;
}
.btn-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.slider-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider-arrow {
  border: 0;
  background: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
}

.slider-dots {
  display: flex;
  gap: 9px;
}
.slider-dot {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.4);
  border: 0;
  padding: 0;
}
.slider-dot.active { background: #fff; }

.section { padding: 112px 0; }

.section-heading { margin-bottom: 46px; }
.section-heading.split,
.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading h2,
.newsletter h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.04em;
  margin: 0;
}
.section-copy {
  max-width: 400px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 14px;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
}

.editorial-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.editorial-card.dark { color: white; background: #090909; }

.card-shape {
  position: absolute;
  inset: 0;
}

.card-a .card-shape {
  background:
    linear-gradient(140deg, transparent 0 35%, #111 35% 62%, transparent 62%),
    #f0f0ee;
}
.card-b .card-shape::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 78%;
  left: 23%;
  bottom: -5%;
  border-radius: 48% 48% 4% 4%;
  background: #f2f2f0;
}
.card-c .card-shape {
  background:
    repeating-linear-gradient(0deg,#111 0 2px,transparent 2px 84px),
    repeating-linear-gradient(90deg,#111 0 2px,transparent 2px 84px),
    #f1f1ef;
}

.card-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.card-content p,
.card-content a {
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 600;
}
.card-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: auto 0 22px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .92;
  letter-spacing: -.04em;
  max-width: 90%;
}

.text-link {
  font-size: 10px;
  letter-spacing: .13em;
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}

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

.product-card {
  position: relative;
}

.product-image {
  aspect-ratio: .78;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.product-image span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(90px, 12vw, 180px);
  line-height: 1;
  opacity: .055;
}

.p1, .p6 { background: #efefed; }
.p2, .p5, .p8 { background: #0d0d0d; color:#fff; }
.p3, .p7 { background: #dcdcdc; }
.p4 { background: #f7f7f5; }

.product-image::after {
  content: "";
  position: absolute;
  transition: .4s ease;
}
.p1::after, .p5::after {
  width: 44%; height: 70%;
  background: #080808;
  clip-path: polygon(25% 0,75% 0,92% 24%,76% 100%,24% 100%,8% 24%);
}
.p2::after, .p4::after {
  width: 34%; height: 78%;
  border-left: 42px solid currentColor;
  border-right: 42px solid currentColor;
  color: #eaeae7;
}
.p3::after {
  width: 68%; height: 18%;
  border-radius: 50% 25% 18% 12%;
  background: #090909;
  bottom: 20%;
  transform: rotate(-8deg);
}
.p6::after, .p7::after {
  width: 40%; height: 64%;
  border: 2px solid #0b0b0b;
  border-radius: 45% 45% 0 0;
}
.p8::after {
  width: 54%; height: 43%;
  border: 2px solid #f5f5f5;
  border-radius: 50% 50% 5% 5%;
}

.product-card:hover .product-image::after { transform: scale(1.025); }

.wish {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 18px;
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}
.product-info h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
}
.product-info p {
  margin: 0;
  font-size: 11px;
  color: var(--gray);
}
.product-info strong {
  font-size: 12px;
  white-space: nowrap;
}

.buy-now {
  background: var(--black);
  color: var(--white);
}
.buy-now-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.buy-now h2 {
  font-size: clamp(52px, 7vw, 94px);
  line-height: .88;
  margin: 0;
  letter-spacing: -.05em;
}
.buy-now-copy > p:not(.eyebrow) {
  color: #aaa;
  max-width: 500px;
  line-height: 1.7;
  margin: 28px 0;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.time-circle {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.time-circle strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
  line-height: 1;
}
.time-circle span {
  font-size: 9px;
  letter-spacing: .15em;
  margin-top: 10px;
  color: #aaa;
}

.newsletter {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.newsletter-inner > div > p:not(.eyebrow) {
  color: var(--gray);
  margin-top: 20px;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--black);
}
.newsletter-form input {
  flex: 1;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}
.newsletter-form button {
  border: 0;
  background: transparent;
  padding-inline: 12px 0;
  font-size: 10px;
  letter-spacing: .13em;
  font-weight: 600;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 90px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 80px;
}
.footer-logo { display: inline-block; margin-bottom: 24px; }
.footer-brand p {
  color: #888;
  line-height: 1.7;
  font-size: 13px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h3 {
  font-size: 10px;
  letter-spacing: .14em;
  margin: 0 0 10px;
}
.footer-col a {
  color: #aaa;
  font-size: 12px;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #2c2c2c;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #777;
  font-size: 9px;
  letter-spacing: .08em;
}
.footer-bottom div { display: flex; gap: 24px; }

@media (max-width: 1050px) {
  .contacts span:last-child { display: none; }
  .brandbar-inner {
    grid-template-columns: 1fr 1.2fr .6fr;
  }
  .three-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card:last-child { grid-column: 1 / -1; min-height: 420px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .buy-now-grid { grid-template-columns: 1fr; }
  .countdown { max-width: 760px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .topbar-inner {
    min-height: 34px;
    font-size: 9px;
  }
  .contacts .separator,
  .contacts a:nth-of-type(2) { display: none; }

  .brandbar-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }
  .brandbar .logo { font-size: 28px; }
  .search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 14px;
  }
  .brandbar-inner { padding-top: 16px; }

  .nav-inner { justify-content: flex-start; min-height: 50px; }
  .menu-toggle { display: block; margin-left: -9px; }
  .main-nav {
    display: none;
    position: absolute;
    z-index: 20;
    top: auto;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 22px 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; }

  .hero-slider { min-height: 640px; height: 75vh; }
  .visual-1::before,
  .visual-2::before,
  .visual-3::before { width: 52vw; right: 4vw; opacity: .7; }
  .slide-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.35));
  }
  .slide-content { padding-bottom: 80px; }
  .slide-content > p:not(.eyebrow) { max-width: 88%; }

  .section { padding: 78px 0; }
  .section-heading.split,
  .row-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .section-copy { margin: 0; }

  .three-grid { grid-template-columns: 1fr; }
  .editorial-card,
  .editorial-card:last-child { min-height: 460px; grid-column: auto; }

  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; row-gap: 36px; }
  .product-info { flex-direction: column; gap: 6px; }
  .product-image::after { transform: scale(.8); }

  .countdown { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .time-circle { max-width: 210px; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 46px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .contacts span { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .newsletter-form { flex-direction: column; border-bottom: 0; gap: 10px; }
  .newsletter-form input { border-bottom: 1px solid #000; }
  .newsletter-form button {
    min-height: 48px;
    border: 1px solid #000;
    padding: 0 18px;
  }
}
