/* ==========================================================================
   Contano - pre-launch landing
   ========================================================================== */

/* Fonts
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'PP Mori';
  src: url('Fonts/PPMori-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Mori';
  src: url('Fonts/PPMori-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Mori';
  src: url('Fonts/PPMori-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PP Mori';
  src: url('Fonts/PPMori-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: url('Fonts/HelveticaNowDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('Fonts/HelveticaNowDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('Fonts/HelveticaNowDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('Fonts/HelveticaNowDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Tokens
   -------------------------------------------------------------------------- */
:root {
  --serif: 'PP Mori', Georgia, serif;
  --sans: 'Helvetica Now Display', Helvetica, Arial, sans-serif;

  --linen: #F4EFE6;
  --cotton: #E6D8C9;
  --stone: #B8B2A6;
  --sage: #A9B8A5;
  --terracotta: #C46A4A;
  --wood: #2B2623;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --pad: clamp(20px, 5.2vw, 10.4vw);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--wood);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.45px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul { list-style: none; margin: 0; padding: 0; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

strong { font-weight: 400; color: var(--wood); }

.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;
}

/* Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.75px;
  padding: 17px 40px;
  border-radius: 62px;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              transform 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--wood);
  color: #EDE6DD;
  border-color: rgba(237, 230, 221, 0.22);
}

.btn--primary:hover {
  background: var(--terracotta);
  color: var(--linen);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--success {
  background: var(--sage) !important;
  color: var(--wood) !important;
  border-color: transparent !important;
}

/* Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: padding 0.4s var(--ease);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.nav__inner {
  margin: 0;
  padding: 40px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.4s var(--ease);
}

.nav.is-scrolled .nav__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav.is-scrolled::before {
  -webkit-backdrop-filter: saturate(140%) blur(22px);
  backdrop-filter: saturate(140%) blur(22px);
}

.nav__brand { display: inline-flex; align-items: center; }

.nav__logo {
  height: 24px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.nav.is-scrolled .nav__logo { height: 20px; }

.nav__links {
  display: flex;
  gap: clamp(24px, 5vw, 96px);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.45px;
}

.nav__links a {
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.nav__links a:hover::after { transform: scaleX(1); }

/* Hamburger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--wood);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav__burger.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__burger.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-size: 24px;
    letter-spacing: 0.6px;
    background: var(--linen);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a::after { display: none; }
}

/* Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: clamp(700px, 58vw, 1117px);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0) 0%, #F4EFE6 100%),
    linear-gradient(180deg, #F4EFE6 0%, #F4EFE6 100%),
    url('Media/hero-bg.png') lightgray 50% / cover no-repeat;
  background-blend-mode: normal, overlay, normal;
}

.hero__content {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(120px, 11vw, 208px) var(--pad) 0;
}

.hero__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: clamp(64px, 6.2vw, 119px);
}

@media (min-width: 768px) {
  .hero__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 107px);
  font-weight: 400;
  line-height: 1.2;
}

.hero__right {
  max-width: clamp(300px, 20vw, 420px);
  flex-shrink: 0;
}

.hero__desc {
  color: rgba(43, 38, 35, 0.77);
  line-height: 1.4;
  margin-bottom: clamp(28px, 3vw, 32px);
}

.hero__image {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

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

/* Products
   -------------------------------------------------------------------------- */
.products {
  padding: clamp(80px, 8vw, 128px) 0;
}

.products__inner {
  margin: 0;
  padding: 0 var(--pad);
}

.products__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(48px, 5vw, 78px);
}

@media (min-width: 768px) {
  .products__head {
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 10vw, 325px);
  }
}

.products__title {
  font-size: clamp(36px, 3.3vw, 64px);
  white-space: nowrap;
  flex-shrink: 0;
}

.products__desc {
  color: rgba(43, 38, 35, 0.77);
  max-width: clamp(320px, 22vw, 480px);
  line-height: 1.4;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .products__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Card */
.card {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease);
}

.card:hover { transform: translateY(-8px); }

.card__img {
  display: block;
  width: 100%;
  aspect-ratio: 365 / 540;
  overflow: hidden;
  margin-bottom: clamp(24px, 2vw, 30px);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.451, -0.004, 0.185, 0.989);
}

.card:hover .card__img img {
  transform: scale(1.02);
}

.card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(24px, 2vw, 34px);
}

.card__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.card__sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  color: rgba(43, 38, 35, 0.77);
  line-height: 1.2;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.85px;
  color: var(--wood);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.card__link:hover { color: var(--terracotta); }

.card__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* About (Poznaj Contano)
   -------------------------------------------------------------------------- */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
}

.about__inner {
  margin: 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1200px) {
  .about__inner {
    grid-template-columns: clamp(320px, 22vw, 28vw) 1fr auto;
    gap: 0;
    align-items: stretch;
  }
}

.about__image-left {
  overflow: hidden;
  align-self: stretch;
}

.about__image-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1199px) {
  .about__image-left video {
    aspect-ratio: 417 / 677;
  }
}

.about__text {
  padding: 0;
  align-self: start;
}

@media (min-width: 1200px) {
  .about__text {
    padding-left: clamp(40px, 5vw, 6.5vw);
  }
}

.about__title {
  font-size: clamp(36px, 3.3vw, 64px);
  margin-bottom: clamp(120px, 12vw, 247px);
}

.about__title .tm {
  font-size: 0.55em;
  vertical-align: super;
  font-family: var(--serif);
  font-weight: 400;
}

.about__paragraphs {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7.5vw, 147px);
  max-width: clamp(360px, 28vw, 580px);
}

.about__p {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.2;
  color: rgba(43, 38, 35, 0.77);
}

.about__p--muted { opacity: 0.5; color: var(--wood); }

.about__p strong {
  font-weight: 400;
  color: var(--wood);
}

.about__images-right {
  position: relative;
  width: 254px;
  height: 421px;
  flex-shrink: 0;
  align-self: start;
}

@media (max-width: 1199px) {
  .about__images-right {
    width: 100%;
    height: auto;
    display: flex;
    gap: 16px;
  }
  .about__small { width: 50%; height: auto; }
}

@media (min-width: 1200px) {
  .about__small {
    position: absolute;
    width: 169px;
    height: 228px;
    object-fit: cover;
  }

  .about__small--top {
    top: 0;
    right: 0;
  }

  .about__small--bottom {
    top: 115px;
    right: 85px;
  }
}

/* CTA (signup)
   -------------------------------------------------------------------------- */
.cta {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  text-align: center;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__tag {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: 1.2px;
  line-height: 1.2;
  margin-bottom: clamp(28px, 2.2vw, 42px);
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.6vw, 107px);
  line-height: 1.2;
  margin-bottom: clamp(36px, 3.2vw, 61px);
}

.cta__desc {
  max-width: clamp(360px, 28vw, 580px);
  line-height: 1.4;
  color: rgba(43, 38, 35, 0.77);
  letter-spacing: 0.6px;
  margin-bottom: clamp(48px, 4.2vw, 80px);
}

.cta__desc strong {
  color: var(--wood);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: clamp(360px, 26vw, 560px);
  position: relative;
}

.form input[type="email"] {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.75px;
  color: var(--wood);
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 48px;
  padding: 16px 32px;
  outline: none;
  text-align: center;
  transition: border-color 0.3s var(--ease);
}

.form input[type="email"]::placeholder {
  color: var(--wood);
  opacity: 1;
}

.form input[type="email"]:focus {
  border-color: var(--wood);
}

.form .btn {
  width: 100%;
  border-radius: 48px;
  padding: 16px 32px;
}

.form .btn:hover {
  background: var(--terracotta);
  color: var(--linen);
  transform: translateY(-2px);
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: rgba(43, 38, 35, 0.8);
  margin-top: -2px;
}

.form__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--wood);
  flex-shrink: 0;
}

.form__error {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 10px);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  min-height: 16px;
  text-align: center;
}

.form__success {
  text-align: center;
  padding: 12px 8px;
}

.form__success h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.form__success p {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.45px;
  color: rgba(43, 38, 35, 0.77);
}

.perks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: clamp(48px, 5vw, 80px);
}

.perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: rgba(43, 38, 35, 0.77);
}

.perks__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Instagram
   -------------------------------------------------------------------------- */
.instagram {
  padding: clamp(80px, 10vw, 140px) 0;
}

.instagram__inner {
  margin: 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .instagram__inner {
    grid-template-columns: 1fr clamp(320px, 24vw, 34vw) 1fr;
    gap: clamp(32px, 4vw, 6vw);
  }
}

.instagram__title {
  font-size: clamp(28px, 2.1vw, 40px);
  line-height: 1.4;
}

.instagram__center {
  width: 100%;
}

.instagram__center img {
  width: 100%;
  aspect-ratio: 452 / 695;
  object-fit: cover;
}

.instagram__right {
  align-self: start;
  padding-top: clamp(80px, 18vw, 348px);
}

.instagram__note {
  font-size: clamp(16px, 1.1vw, 20px);
  letter-spacing: 0.4px;
  line-height: 1.4;
  max-width: 32ch;
  margin-bottom: clamp(48px, 5vw, 107px);
}

.instagram__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 20px);
  letter-spacing: 0.4px;
  transition: color 0.3s var(--ease);
}

.instagram__link:hover { color: var(--terracotta); }

.instagram__arrow {
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  transition: transform 0.3s var(--ease);
}

.instagram__link:hover .instagram__arrow {
  transform: rotate(-45deg) translateX(4px);
}

/* Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--wood);
  color: var(--linen);
  padding: clamp(48px, 5vw, 77px) var(--pad) 32px;
}

.footer__inner {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: clamp(48px, 8vw, 120px);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__left { flex: 1; }

.footer__brand { margin-bottom: clamp(24px, 2.5vw, 36px); }

.footer__logo {
  height: 24px;
  width: 155px;
}

.footer__tagline {
  font-size: 20px;
  letter-spacing: 0.4px;
  opacity: 0.5;
  line-height: 1.4;
  margin-bottom: clamp(80px, 10vw, 198px);
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social a {
  display: flex;
  width: 16px; height: 16px;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.footer__social a:hover { opacity: 1; }
.footer__social img { width: 16px; height: 16px; }

.footer__nav {
  display: flex;
  gap: clamp(48px, 8vw, 256px);
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  opacity: 0.5;
  margin-bottom: clamp(32px, 3vw, 60px);
  line-height: 1.4;
}

.footer__col ul { display: flex; flex-direction: column; gap: clamp(8px, 1vw, 15px); }

.footer__col li a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.4;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.footer__col li a:hover { color: var(--terracotta); }

.footer__bottom {
  margin: 0;
  padding-top: 0;
  display: flex;
  justify-content: flex-end;
}

.footer__bottom span {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  opacity: 0.5;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .footer__bottom { justify-content: center; }
}

/* Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: 0s;
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Product page (PDP)
   ========================================================================== */

.pdp {
  padding: clamp(130px, 12vw, 223px) 0 clamp(64px, 6vw, 100px);
}

.pdp__inner {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 64px);
}

@media (min-width: 900px) {
  .pdp__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 148px);
    align-items: start;
  }
}

/* Gallery + carousel
   -------------------------------------------------------------------------- */
.pdp__gallery {
  display: flex;
  flex-direction: column;
}

.carousel__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.carousel__viewport.is-dragging {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel__slide img {
  width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.carousel__thumbs {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.carousel__thumb {
  flex: 1;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.35s var(--ease);
}

.carousel__thumb.is-active {
  opacity: 1;
}

.carousel__thumb:hover {
  opacity: 0.75;
}

.carousel__thumb.is-active:hover {
  opacity: 1;
}

.carousel__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* Product info
   -------------------------------------------------------------------------- */
.pdp__info {
  display: flex;
  flex-direction: column;
  padding-top: clamp(0px, 2.6vw, 50px);
}

.pdp__collection {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 1.4;
  color: var(--wood);
  margin-bottom: 0;
}

.pdp__title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: clamp(80px, 9vw, 185px);
}

.pdp__avail {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 1.4;
  margin-bottom: clamp(200px, 22vw, 415px);
}

.pdp__avail strong {
  font-weight: 500;
  color: var(--wood);
}

/* Accordion
   -------------------------------------------------------------------------- */
.accordion {
  width: 100%;
}

.accordion__item {
  border-top: 1px solid rgba(43, 38, 35, 0.15);
}

.accordion__item:last-child {
  border-bottom: 1px solid rgba(43, 38, 35, 0.15);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 1.4vw, 24px) 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
  line-height: 1.4;
  color: var(--wood);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--wood);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.accordion__icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0;
}

.accordion__item.is-open .accordion__body {
  max-height: 300px;
  padding-bottom: clamp(16px, 1.4vw, 24px);
}

.accordion__body p {
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.5;
  color: rgba(43, 38, 35, 0.77);
  padding-top: 8px;
}

.accordion__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: clamp(16px, 1.4vw, 24px);
}

.accordion__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 1.4;
  color: var(--wood);
}

.accordion__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Similar products
   -------------------------------------------------------------------------- */
.similar {
  padding: clamp(64px, 6vw, 100px) 0 clamp(80px, 8vw, 140px);
}

.similar__inner {
  padding: 0 var(--pad);
}

.similar__title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.3vw, 56px);
  margin-bottom: clamp(40px, 4vw, 74px);
}

.similar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .similar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .similar__grid { grid-template-columns: repeat(3, 1fr); }
}

.similar__card {
  display: block;
  overflow: hidden;
  transition: transform 0.55s var(--ease);
}

.similar__card:hover { transform: translateY(-8px); }

.similar__card img {
  width: 100%;
  aspect-ratio: 365 / 547;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 0.6s cubic-bezier(0.451, -0.004, 0.185, 0.989);
}

.similar__card:hover img {
  transform: scale(1.02);
}
