/* ─── Fonts ─────────────────────────────────────────────── */

@font-face {
  font-family: 'Seriously Nostalgic';
  src: url('../assets/fonts/SeriouslyNostalgicRegular.woff2') format('woff2'),
       url('../assets/fonts/SeriouslyNostalgicRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../assets/fonts/Helvetica Neue Regular.woff2') format('woff2'),
       url('../assets/fonts/Helvetica Neue Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../assets/fonts/HelveticaNeue-Medium.woff2') format('woff2'),
       url('../assets/fonts/HelveticaNeue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ──────────────────────────────────────────── */

:root {
  --font-serif: 'Seriously Nostalgic', Georgia, serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --color-cream: #b19a89;
  --color-white: #ffffff;
  --color-dark: #151515;

  --container-padding: 70px;
  --container-max: 1920px;
}

/* ─── Base ───────────────────────────────────────────────── */

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-white);
  background: #000;
}

/* ─── Container ──────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background: #d09f7f;
  color: var(--color-dark);
  padding: 18px 33px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #fff;
}

.btn--header {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 13px 16px;
  line-height: 1;
  font-weight: 500;
  font-size: 12px;
  border-radius: 30px;
}

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: var(--fixed-vh, 100vh);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Liquid glass rect */
.hero__glass {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 2127px;
  height: 488px;
  top: 300px;
  left: 78%;
  transform: translateX(-50%) rotate(118deg);
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px) brightness(1.04);
  -webkit-backdrop-filter: blur(5px) brightness(1.04);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

/* ─── Header ─────────────────────────────────────────────── */

.header {
  position: absolute;
  z-index: 20;
  padding-top: 15px;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  width: 56px;
  align-items: center;
  flex-shrink: 0;
}

.header__logo svg {
  width: 44px;
  height: 44px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 23px;
}

.header__nav-list li a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.header__nav-list li a:hover {
  opacity: 0.7;
}

.header__nav-list .nav-dot {
  display: flex;
  align-items: center;
}

/* ─── Hero body ──────────────────────────────────────────── */

.hero__wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

/* Top: title + description */
.hero__top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 170px;
}

.hero__top-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  gap: 60px;
}

.hero__top-inner--wrapper {
  display: flex;
  /* gap: 450px;
  align-items: flex-end; */ 
    width: 98%;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__top-divider {
  position: relative;
  width: 90%;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}

.hero__top-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  clip-path: polygon(0% 91.67%, 100% 50%, 100% 58.33%, 0% 100%);
}

.hero__top-divider-rect {
  position: absolute;
  right: 0;
  top: 0;
  width: 63px;
  height: 6px;
  background: white;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 131px;
  line-height: 93%;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 726px;
}

.hero__info {
  width: 29%;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 144%;
  max-width: 419px;
  color: var(--color-white);
}

.hero__progress {
  width: 54px;
  height: 2px;
  background: var(--color-white);
  align-self: flex-end;
}

/* Divider — starts from left viewport edge, no container padding */
.hero__divider {
  width: 79%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

/* Bottom: tagline + button */
.hero__bottom {
  padding: 26px 0 34px;
}

.hero__bottom-inner  {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__bottom-wrapper  {
  display: flex;
  align-items: center;
  gap: 44px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 35px;
  line-height: 106%;
  color: var(--color-cream);
  max-width: 290px;
}

/* ─── Slide indicators (right edge) ─────────────────────── */

.hero__indicators {
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__indicators span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  width: 100%;
  justify-content: center;
    display: flex;
    line-height: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-top-padding: 2px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: color 0.2s;
}

.hero__indicators span.is-active {
  color: var(--color-white);
}

/* ─── Learn More (bottom right) ─────────────────────────── */

.hero__learn-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hero__learn-more--wrapper {
  display: grid;
  place-items: center;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 95px;
  height: 95px;
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
}

.hero__learn-more span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── About ──────────────────────────────────────────────── */

.about {
  display: flex;
  min-height: 100vh;
  padding: 100px 0;
  padding-bottom: 0;
  background: #000;
}

.about__left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 70px;
  gap: 32px;
}

.about__right {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}

.about__right img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  text-align: center;
  color: #b19a89;
}

.about__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 100px;
  text-align: center;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  text-align: center;
  color: #b19a89;
  max-width: 629px;
}

.about__text--bottom {
  max-width: 669px;
}

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

/* ─── Collection ─────────────────────────────────────────── */

.collection {
  background: #000;
  padding: 150px 0;
}

.collection__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  text-align: center;
}

.collection__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: #b19a89;
}

.collection__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 100px;
  line-height: 123%;
  text-align: center;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.collection__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

  .collection__card--first p{
    max-width: 277px;
  }

  .collection__card--second p{
    max-width: 330px;
  }

  .collection__card--third p{
    max-width: 290px;
  }


.collection__card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.collection__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection__card-wrapper {
  top: 14px;
  right: 14px;
  bottom: 14px;
  align-items: flex-end;
  gap: 12px;
  position: absolute;
  display: flex;
  flex-direction: column;
}

.collection__card-tag {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: #b19a89;
  white-space: nowrap;
}

.collection__card-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: #b19a89;
}

.collection__card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 30px;
  text-align: center;
}

.collection__card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.collection__card-line {
  flex: 1;
  height: 1px;
  background: rgba(177, 154, 137, 0.45);
}

.collection__card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
  text-align: center;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.collection__card-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #b19a89;
  max-width: 300px;
  text-align: center;
}

/* ─── Looks ──────────────────────────────────────────────── */

.looks {
  align-items: center;
  position: relative;
  min-height: 1772px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.looks__cards-mobile-section {
  display: none;
}

.looks__inner {
  padding-bottom: 412px;
}

.looks__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.looks__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.looks__title {
  max-width: 792px;
  font-family: var(--font-serif);
  z-index: 1;
  font-weight: 400;
  font-size: 100px;
  line-height: 123%;
  text-align: center;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.looks__cards {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.looks__card {
  max-width: 336px;
  min-height: 592px;
  justify-content: space-between;
  position: relative;
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-size: cover;
  background-position: center;
}

.looks__card--first {
  background-image: url('../assets/img/looks-card-1.png');
}

.looks__card--first p{
    max-width: 247px;
}

.looks__card--second {
  background-image: url('../assets/img/looks-card-2.png');
}

.looks__card--second p{
    max-width: 266px;
}

.looks__card--third {
  background-image: url('../assets/img/looks-card-3.png');
}

.looks__card--third p{
    max-width: 272px;
}

.looks__card--fourth {
  background-image: url('../assets/img/looks-card-4.png');
}

.looks__card--fourth p{
  max-width: 200px;
}

.looks__cards-left {
  display: flex;
  gap: 14px;
}

.looks__cards-right {
  display: flex;
  gap: 14px;
}

.looks__card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.looks__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.looks__card-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #b19a89;
}

.looks__card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #522e17;
}

.looks__card-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #522e17;
}

/* ─── Power ──────────────────────────────────────────────── */

.power {
  display: flex;
  min-height: 100vh;
}

.power__svg-mobile {
  display: none;
}

.power__left {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}

.power__left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.power__left-content {
  position: absolute;
  bottom: 70px;
  left: 70px;
  max-width: 450px;
}

.power__left-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 30px;
}

.power__left-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #fff;
  max-width: 415px;
}

.power__right {
  width: 50%;
  flex-shrink: 0;
  background-image: url('../assets/img/power-right.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 60px 70px 0;
  padding-bottom: 60px;
}

.power__right-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 100px;
  line-height: 106%;
  background: linear-gradient(143deg, #000 0%, #522e17 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.power__right-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #522e17;
  max-width: 490px;
  margin-bottom: 100px;
}

.power__btn {
  margin-bottom: 50px;
}

.power__divider {
  display: block;
  margin-bottom: 120px;
}

.power__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: auto;
}

.power__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.power__grid-item--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1.34px dashed rgba(177, 154, 137, 0.55);
}

.power__grid-item--logo img {
  width: 146px;
  height: 176px;
  max-width: 100%;
}

.power__bottom-svg {
  width: 100%;
  display: block;
  margin-top: auto;
}

/* ─── Catalog slider ─────────────────────────────────────── */

.catalog {
  background: #000;
  padding: 150px 0;
  border-bottom: 1.34px dashed rgba(247, 213, 193, 0.35);
}

.catalog__top-divider {
  width: 100%;
  border-bottom: 1.34px dashed rgba(177, 154, 137, 0.55);
  margin-bottom: 50px;
}

.catalog__inner {
  display: flex;
  height: 700px;
}

.catalog__info {
  flex: 0 0 569px;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 34px 40px var(--container-padding);
  background-image: url(../assets/img/catalog-info-bg.png);
  background-size: cover;
  background-position: center left -22px;
  background-repeat: no-repeat;
}

.catalog__info-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 100px;
  line-height: 106%;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog__desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #b19a89;
  max-width: 480px;
}

.catalog__info-bottom {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.catalog__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 38px;
  border-bottom: 1.34px dashed rgba(177, 154, 137, 0.55);
}

.catalog__logo {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.catalog__tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  max-width: 160px;
  line-height: 123%;
  color: #b19a89;
}

.catalog__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-prev,
.catalog-next {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.catalog-prev:hover,
.catalog-next:hover {
  color: var(--color-white);
}

.catalog-prev.swiper-button-disabled,
.catalog-next.swiper-button-disabled {
  opacity: 0.25;
}

.catalog-pagination,
.catalog-pagination-mobile {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.catalog-pagination .swiper-pagination-bullet,
.catalog-pagination-mobile .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(177, 154, 137, 0.5);
  border-radius: 50%;
  opacity: 1;
  margin: 0;
}

.catalog-pagination .swiper-pagination-bullet-active,
.catalog-pagination-mobile .swiper-pagination-bullet-active {
  background: #b19a89;
}

/* Swiper overrides */
.catalog-swiper {
  flex: 1;
  overflow: hidden;
  height: 100%;
}

.catalog-swiper .swiper-wrapper {
  height: 100%;
}

.catalog-swiper .swiper-slide {
  width: auto;
  height: 100%;
  flex-shrink: 0;
}

.catalog-swiper .swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 258px;
  padding: 60px 0;
}

.footer__logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.footer__logo img {
  width: 146px;
  height: auto;
  display: block;
}

.footer__nav {
  flex: 1;
  display: flex;
  gap: 80px;
}

.footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__col--ig img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__col--ig a:hover img {
  opacity: 1;
}

.footer__col-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-transform: capitalize;
  background: linear-gradient(143deg, #b19a8a 0%, #f7d5c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #b19a89;
}

.footer__col-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__inner--mobile {
  display: none;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0;
}

.footer__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__mobile-ig img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__mobile-ig:hover img {
  opacity: 1;
}

.footer__mobile-cols {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer__mobile-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__licence {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #b19a89;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

/* ─── Burger ─────────────────────────────────────────────── */

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(217, 217, 217, 0.3);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  flex-shrink: 0;
}

.burger svg {
  width: 20px;
  height: 15px;
}

/* ─── Offcanvas ──────────────────────────────────────────── */

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.offcanvas-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #0e0a06;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas--open {
  transform: translateX(0);
}

.offcanvas__close {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.offcanvas__nav-list {
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offcanvas__nav-list li a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.offcanvas__nav-list li a:hover {
  opacity: 0.7;
}

/* ─── Catalog mobile ─────────────────────────────────────── */

.catalog-mobile {
  display: none;
  padding: 0 0 60px;
  background: #000;
  background-image: url(../assets/img/catalog-info-bg.png);
  background-size: cover;
  background-position: center center;
}

.catalog-mobile .catalog__title {
  margin-top: 30px;
  margin-bottom: 16px;
}

.catalog-mobile .catalog__desc {
  margin-bottom: 24px;
}

.catalog-swiper-mobile {
  width: 100%;
  overflow: hidden;
}

.catalog-swiper-mobile .swiper-slide {
  height: 460px;
}

.catalog-swiper-mobile .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-mobile__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 22px 0;
}

.catalog-prev-mobile,
.catalog-next-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1;
}

/* ─── Popup ──────────────────────────────────────────────── */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 1037px;
  background-image: url('../assets/img/popup-bg.png');
  background-size: cover;
  background-position: center;
  padding: 146px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.popup-overlay--visible .popup {
  transform: translateY(0);
}

.popup__close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.popup__close:hover {
  opacity: 1;
}

.popup__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 55px;
  line-height: 105%;
  color: #1a1105;
  text-align: center;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 500px;
  width: 100%;
}

.popup__input {
  width: 100%;
  padding: 20px 30px;
  border-radius: 100px;
  border: 1px solid rgba(82, 46, 23, 0.25);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #1a1105;
  outline: none;
  transition: border-color 0.2s;
}

.popup__input::placeholder {
  color: rgba(82, 46, 23, 0.35);
}

.popup__input:focus {
  border-color: rgba(82, 46, 23, 0.4);
}

.popup__submit {
  margin-top: 10px;
}

/* ─── Gravity Forms inside the consultation popup (match the original design) ── */
.popup .gform_wrapper {
  width: 100%;
  max-width: 500px;
}

.popup .gform_wrapper form {
  margin: 0;
}

.popup .gform_wrapper .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.popup .gform_wrapper .gfield {
  margin: 0;
}

.popup .gform_wrapper .gfield_label,
.popup .gform_wrapper .gform_required_legend {
  display: none;
}

.popup .gform_wrapper .ginput_container {
  margin: 0;
}

.popup .gform_wrapper input[type="text"],
.popup .gform_wrapper input[type="tel"],
.popup .gform_wrapper input[type="email"] {
  width: 100%;
  padding: 20px 30px;
  border-radius: 100px;
  border: 1px solid rgba(82, 46, 23, 0.25);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #1a1105;
  outline: none;
  transition: border-color 0.2s;
}

.popup .gform_wrapper input::placeholder {
  color: rgba(82, 46, 23, 0.35);
}

.popup .gform_wrapper input:focus {
  border-color: rgba(82, 46, 23, 0.4);
}

.popup .gform_wrapper .gform_footer {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
  padding: 0;
}

.popup .gform_wrapper .gfield_description.validation_message {
  font-size: 12px;
  color: #c0392b;
  padding-top: 4px;
}

.popup .gform_wrapper .gform_confirmation_message {
  text-align: center;
  font-family: var(--font-sans);
  color: #1a1105;
}

/* Hide Gravity Forms' top error summary ("There was a problem…") in the popup.
   Inline per-field messages (.validation_message) stay so users still see what to fix. */
.popup .gform_wrapper .gform_submission_error,
.popup .gform_wrapper .gform_validation_errors {
  display: none;
}

