﻿.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background-color: #3a2f1a;
  background-image: url("../assets/media/hero/sanasectik-approved-hero.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 26, 14, 0.34);
}

.hero__inner {
  width: min(100% - 32px, 900px);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 22px;
  border-radius: var(--radius-sm);
  background: rgba(223, 179, 109, 0.88);
  color: #ffffff;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 900;
}

.hero__title {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 7vw, 62px);
  font-weight: 900;
  line-height: 1.25;
}

.hero__lead {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 3vw, 22px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
}

.trust-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.trust-pill::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
}

.hero__actions {
  display: grid;
  width: min(100%, 470px);
  gap: 12px;
  margin-top: 42px;
}

.hero__actions .btn {
  min-height: 58px;
  padding-inline: 30px;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section--warm {
  background: var(--color-bg-primary);
}

.showcase-grid {
  display: grid;
  gap: 20px;
}

.showcase-grid--3,
.showcase-grid--4 {
  grid-template-columns: 1fr;
}

.showcase-card,
.choice-tile,
.mini-card {
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: rgba(253, 246, 238, 0.72);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}

.showcase-card {
  min-height: 250px;
  padding: 38px 28px;
}

.choice-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px 18px;
}

.mini-card {
  padding: 24px 18px;
}

.showcase-card:hover,
.choice-tile:hover,
.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 23, 42, 0.36);
  box-shadow: 0 10px 28px rgba(120, 23, 42, 0.12);
}

.choice-tile--featured,
.choice-tile--soft {
  background: rgba(120, 23, 42, 0.06);
  border-color: rgba(120, 23, 42, 0.22);
}

.choice-tile--featured .large-icon,
.choice-tile--soft .large-icon {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-button);
}

.large-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(223, 179, 109, 0.55);
  border-radius: 999px;
  background: rgba(223, 179, 109, 0.24);
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 900;
}

.large-icon .svg-icon {
  width: 32px;
  height: 32px;
}

.large-icon--text {
  font-size: 20px;
}

.choice-tile .large-icon {
  margin-bottom: 4px;
}

.showcase-card h3,
.choice-tile h3,
.mini-card h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.35;
}

.showcase-card p,
.choice-tile p,
.mini-card p {
  margin: 0;
  color: var(--color-text-secondary);
}

.gallery-preview {
  display: grid;
  gap: 18px;
}

.model-media-grid {
  display: grid;
  gap: 18px;
}

.catalog-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
  padding: 4px 0 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.catalog-tab {
  min-height: 44px;
  flex: 0 0 auto;
  border: 1.5px solid rgba(120, 23, 42, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary);
  padding: 8px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-tab:hover,
.catalog-tab.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.catalog-grid {
  align-items: stretch;
}

.model-media-card {
  overflow: hidden;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.catalog-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.model-media-card__visual {
  min-height: 280px;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.catalog-card__visual {
  min-height: auto;
  background: rgba(120, 23, 42, 0.05);
}

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

.model-media-card__visual--necklace {
  background-image: url("https://lh3.googleusercontent.com/aida/AP1WRLujegro9WAJtRJde0URDqH24178c6hFV-WYXosqjj5ZgCAiuGmmu-fYR959jYBpmf1-F113RSBhqZIr2Q6R30kATj3WfJBDApYfvIZU7f3JUFNwOhMAXtlmAqDjGuw_cCsTFdGVXoq9lR2qg262DUVmKVbBMOJhUpIZOUBA0pu8jii2XmsJJF6O9WthqS2kk7a3HtUj8fXREwJPZcm1Zms0lZVU2IUKBDvgVTHEFI0ZuqxHY9U5xezrBQwT");
}

.model-media-card__visual--placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(120, 23, 42, 0.08), rgba(223, 179, 109, 0.24));
  color: var(--color-primary);
  text-align: center;
  font-weight: 900;
}

.media-placeholder-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(120, 23, 42, 0.16);
  border-radius: 999px;
  background: rgba(253, 246, 238, 0.8);
}

.media-placeholder-icon .svg-icon {
  width: 34px;
  height: 34px;
}

.media-tag {
  position: absolute;
  inset-inline-end: 16px;
  bottom: 16px;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(253, 246, 238, 0.94);
  color: var(--color-primary);
  padding: 7px 14px;
  font-weight: 900;
}

.model-media-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
  text-align: right;
}

.catalog-card .model-media-card__body {
  grid-template-rows: auto auto 1fr auto auto;
}

.catalog-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-card__badges span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(120, 23, 42, 0.08);
  color: var(--color-primary);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
}

.showcase-video-card {
  width: min(100%, 720px);
  margin: 0 auto;
  overflow: hidden;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.showcase-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: rgba(120, 23, 42, 0.08);
}

.model-media-card__body h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
}

.model-media-card__body p {
  margin: 0;
  color: var(--color-text-secondary);
}

.model-media-card__body strong {
  color: var(--color-primary);
  font-size: 18px;
}

.gallery-tile {
  min-height: 320px;
  overflow: hidden;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-white);
  background-position: center;
  background-size: cover;
  position: relative;
  box-shadow: var(--shadow-card);
}

.gallery-tile:first-child {
  background-image: url("https://lh3.googleusercontent.com/aida/AP1WRLujegro9WAJtRJde0URDqH24178c6hFV-WYXosqjj5ZgCAiuGmmu-fYR959jYBpmf1-F113RSBhqZIr2Q6R30kATj3WfJBDApYfvIZU7f3JUFNwOhMAXtlmAqDjGuw_cCsTFdGVXoq9lR2qg262DUVmKVbBMOJhUpIZOUBA0pu8jii2XmsJJF6O9WthqS2kk7a3HtUj8fXREwJPZcm1Zms0lZVU2IUKBDvgVTHEFI0ZuqxHY9U5xezrBQwT");
}

.gallery-tile:nth-child(2) {
  background-image: url("https://lh3.googleusercontent.com/aida/AP1WRLvVtPDFyLi6P7X6yNM4QkLYzRqL8zWXyp4NHnccb-gBxD0aypm1PM7FolJz0xCao5-wZNsp1WFOvZV6X9ZwcS918pKuMluGvDOaye0ywt9kozmThJwwhqR2DAtHfvVPH9UZ_G93Y4XhPnciICnz32GZHECI4p9diURMmTnLrwcWPkliN--6HWMbpk_hLTezHYiKfW7ZXi_eFvjIpxyqzoxHHHaqpukOy-AsEHeWUnbUs6nK3N7jKYU1KB5i");
}

.gallery-tile span {
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(253, 246, 238, 0.94);
  color: var(--color-primary);
  padding: 7px 14px;
  font-weight: 900;
}

.price-card {
  width: min(100%, 640px);
  position: relative;
  margin: 0 auto;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  padding: 64px 24px 46px;
  text-align: center;
}

.offer-badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  border-end-start-radius: var(--radius-sm);
  background: var(--color-gold);
  color: #ffffff;
  padding: 10px 26px;
  font-weight: 900;
}

.price-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 22px;
}

.price-now {
  color: var(--color-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 13vw, 76px);
  font-weight: 800;
  line-height: 1;
}

.check-list {
  width: fit-content;
  display: grid;
  gap: 12px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.check-list li {
  color: var(--color-text-primary);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
  border: 1.5px solid var(--color-success);
  border-radius: 999px;
  color: var(--color-success);
  font-size: 12px;
}

.steps {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 900;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0 18px;
  box-shadow: var(--shadow-card);
}

.faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-primary);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "⌄";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(120, 23, 42, 0.08);
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #ffffff;
}

.faq-chevron {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(120, 23, 42, 0.08);
  color: var(--color-primary);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-chevron .svg-icon {
  width: 18px;
  height: 18px;
}

.faq details[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #ffffff;
}

.faq summary::after {
  content: none;
  display: none;
}

.faq p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--color-text-secondary);
}

.final-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 760px) {
  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    width: auto;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 220px;
  }

  .showcase-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    padding-inline: 70px;
  }
}

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}



