@charset "UTF-8";

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c97a8f;
  --gold-light: #f2c4ce;
  --black: #0d1b2a;
  --black-2: #112233;
  --black-3: #1a3044;
  --white: #f5f0eb;
  --muted: #7b9bb5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav__logo {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__logo span { color: var(--gold); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav__phone {
  display: none;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav__phone:hover { color: var(--gold-light); }

.nav__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.nav__cta:hover { background: var(--gold); color: var(--black); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-light); color: var(--black); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,240,235,0.3);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--full { width: 100%; text-align: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 2.5rem;
  overflow: hidden;
}

.hero__bg--slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.2s ease-in-out;
  z-index: 0;
}

.hero__bg--slide.active { opacity: 1; }

.hero__bg--slide.active.zoom-in {
  animation: heroZoomIn 6s ease-in-out forwards;
}

.hero__bg--slide.active.zoom-out {
  animation: heroZoomOut 6s ease-in-out forwards;
}

@keyframes heroZoomIn {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

@keyframes heroZoomOut {
  0%   { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.25) 40%,
    rgba(8,8,8,0.75) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-shadow:
    0 1px 3px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,0.9),
    0 5px 18px rgba(0,0,0,0.8);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 10vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 3px 8px rgba(0,0,0,0.95),
    0 6px 24px rgba(0,0,0,0.85),
    0 16px 56px rgba(0,0,0,0.75);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
  text-shadow:
    0 1px 3px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,0.9),
    0 5px 18px rgba(0,0,0,0.8);
}

.hero__scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAR ─── */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--black-3);
  border-bottom: 1px solid var(--black-3);
  background: var(--black-2);
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}

.trust__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.trust__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--black-3);
  flex-shrink: 0;
}

/* ─── SECTION LABELS ─── */
.section__label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  text-align: center;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
}

.section__title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── SERVICES CAROUSEL ─── */
.services {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.services .section__label,
.services .section__title {
  padding: 0 1.5rem;
}

.carousel {
  position: relative;
  width: 100%;
}

/* Blur fade at top & bottom edges (services carousel) */
.services .carousel::before,
.services .carousel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 4;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.services .carousel::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black) 0%, rgba(13,27,42,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.services .carousel::after {
  bottom: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(13,27,42,0) 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, transparent 100%);
}

.services .carousel__dots { display: none; }

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.service__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.service__img--birthday   { background-image: url('images/service-birthday.jpg'); }
.service__img--christening{ background-image: url('images/service-christening.jpg'); }
.service__img--prom       { background-image: url('images/service-prom.jpg'); }
.service__img--other      { background-image: url('images/service-other.jpg'); }

.service__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 6rem 1.5rem 1.5rem;
  background: linear-gradient(to bottom,
    rgba(13,27,42,0) 0%,
    rgba(13,27,42,0.35) 30%,
    rgba(13,27,42,0.85) 62%,
    rgba(13,27,42,0.98) 100%);
  backdrop-filter: blur(1.5px);
}

.service__body h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service__body p {
  font-size: 0.88rem;
  color: rgba(245,240,235,0.82);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.service__body .btn {
  width: 100%;
  text-align: center;
}

/* Carousel controls */
.carousel__btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(201,122,143,0.3);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}

.carousel__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.carousel__btn--prev { left: 0.75rem; }
.carousel__btn--next { right: 0.75rem; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1.5rem 0 0;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid rgba(201,122,143,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot--active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ─── PRICING ─── */
.pricing {
  padding: 5rem 1.5rem;
  background: var(--black-2);
  text-align: center;
}

.pricing .section__label {
  font-size: 1.24rem;
  margin-bottom: 0.4rem;
}

/* ── Rate card (hourly pricing) ── */
.pricing__rate-card {
  max-width: 480px;
  margin: 2.5rem auto 0;
  background: var(--black);
  border: 1px solid rgba(201,122,143,0.25);
}

.pricing__rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
}

.pricing__rate-sep {
  height: 1px;
  background: var(--black-3);
}

.pricing__rate-label {
  font-size: 1rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-weight: 500;
  text-align: left;
}

.pricing__rate-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}

.pricing__features {
  list-style: none;
  padding: 1.4rem 2rem 1.6rem;
  margin: 0;
  text-align: left;
}

.pricing__features li {
  font-size: 0.9rem;
  color: var(--white);
  padding: 0.45rem 0 0.45rem 2rem;
  position: relative;
  line-height: 1.5;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background: rgba(201,122,143,0.15);
  border: 1px solid rgba(201,122,143,0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.3rem;
  text-align: center;
  line-height: 1.3rem;
}

.pricing__feature--extra {
  color: rgba(123,155,181,0.55);
  margin-top: 0.2rem;
}

.pricing__feature--extra::before {
  content: '+' !important;
  color: rgba(123,155,181,0.55) !important;
}

.pricing__cta {
  display: inline-block;
  margin: 2rem auto 3.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pricing__card {
  background: var(--black);
  border: 1px solid var(--black-3);
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: border-color 0.3s;
}

.pricing__card:hover { border-color: rgba(201,122,143,0.3); }

.pricing__card--featured {
  border-color: var(--gold);
}

.pricing__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.pricing__icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.pricing__card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing__price {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.pricing__price strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

.pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.pricing__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.pricing__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

/* "Друго" field reveal */
.form__other {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form__optional {
  font-size: 0.65rem;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* ─── CUSTOM DATE PICKER ─── */
.datepicker {
  position: relative;
}

.datepicker__input {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--black-2);
  border: 1px solid var(--black-3);
  color: var(--white);
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}

.datepicker__input:hover,
.datepicker__input:focus {
  border-color: var(--gold);
  outline: none;
}

.datepicker__input.has-value { color: var(--white); }
.datepicker__input:not(.has-value) span { color: #444; }

.datepicker__icon { color: var(--gold); flex-shrink: 0; }

.datepicker__popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  width: 100%;
  max-width: 340px;
  background: var(--black-2);
  border: 1px solid var(--gold);
  z-index: 200;
  padding: 0.9rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: fadeIn 0.18s ease;
}

.datepicker__popup[hidden] { display: none; }

.datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.datepicker__nav {
  background: none;
  border: 1px solid var(--black-3);
  color: var(--gold);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.datepicker__nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.datepicker__month-year {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

/* header button — clickable month/year selector */
.dp-header-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201,122,143,0.35);
  border-radius: 999px;
  background: rgba(201,122,143,0.08);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.dp-header-btn::after {
  content: '▾';
  font-size: 0.7em;
  color: var(--gold);
  line-height: 1;
}
.dp-header-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,122,143,0.16);
}

/* day view */
.datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.4rem;
}

.datepicker__weekdays span {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0;
}

.datepicker__days { /* wrapper only */ }

.datepicker__daygrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--white);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  background: none;
}

.dp-day:hover:not(.dp-day--disabled):not(.dp-day--selected) {
  background: var(--black-3);
  border-color: rgba(201,122,143,0.3);
}

/* month grid */
.datepicker__monthgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0.2rem;
}

.dp-month {
  padding: 0.7rem 0.3rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--white);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dp-month:hover:not(.dp-day--selected) {
  background: var(--black-3);
  border-color: rgba(201,122,143,0.3);
}

/* year grid */
.datepicker__yeargrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0.2rem;
}

.dp-year {
  padding: 0.7rem 0.3rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--white);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dp-year:hover:not(.dp-day--disabled):not(.dp-day--selected) {
  background: var(--black-3);
  border-color: rgba(201,122,143,0.3);
}

/* shared states */
.dp-day--selected,
.dp-month.dp-day--selected,
.dp-year.dp-day--selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-weight: 500;
}

.dp-day--today:not(.dp-day--selected),
.dp-month.dp-day--today:not(.dp-day--selected),
.dp-year.dp-day--today:not(.dp-day--selected) {
  border-color: rgba(201,122,143,0.5);
  color: var(--gold-light);
}

.dp-day--disabled,
.dp-year.dp-day--disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.dp-day--empty { pointer-events: none; }

/* ─── FAQ / DETAILS ─── */
.pricing__intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: -2rem;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── GUARANTEE ─── */
.guarantee {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: linear-gradient(135deg, rgba(201,122,143,0.1) 0%, rgba(13,27,42,0.4) 60%);
  border: 1px solid var(--gold);
  padding: 1.8rem 1.7rem;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 40px rgba(201,122,143,0.18);
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(242,196,206,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.guarantee__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(201,122,143,0.45);
  position: relative;
  z-index: 1;
}

.guarantee > div {
  position: relative;
  z-index: 1;
}

.guarantee h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}

.guarantee p {
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.7;
}

/* ─── FAQ ACCORDION ─── */
.faq {
  max-width: 600px;
  margin: 3rem auto 2rem;
  border: 1px solid var(--black-3);
  background: var(--black);
}

.faq__item {
  border-bottom: 1px solid var(--black-3);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq__item--active .faq__question {
  color: var(--gold-light);
}

.faq__arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--active .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq__item--active .faq__answer-wrap {
  grid-template-rows: 1fr;
}

.faq__answer {
  min-height: 0;
  overflow: hidden;
}

.faq__answer p {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__item--active .faq__answer p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Pricing card btn spacing */
.pricing__card .btn { margin-top: 1.5rem; }

/* ─── GALLERY ─── */
.gallery {
  padding: 5rem 1.5rem;
  background: var(--black-2);
}

.gallery__grid {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery__item {
  background: var(--black-3);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.gallery__item:hover { transform: scale(1.02); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 70%);
}

.gallery__item--tall { aspect-ratio: 2/3; grid-row: span 2; }
.gallery__item--wide { aspect-ratio: 2/1; grid-column: span 2; }

.gallery__note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 1rem;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.how__step { display: flex; flex-direction: column; gap: 0.6rem; }

@media (max-width: 767px) {
  .how__step:nth-child(2) {
    text-align: right;
    align-items: flex-end;
  }
}

.how__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}

.how__step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

.how__step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 5rem 0 4rem;
  background: var(--black-2);
  overflow: hidden;
}

.testimonials .section__label,
.testimonials .section__title {
  padding: 0 1.5rem;
}

.carousel--testimonials .carousel__slide {
  background: transparent;
  border: none;
  padding: 0 1.5rem;
  aspect-ratio: auto;
  height: auto;
}

.testimonial {
  background: var(--black);
  border: 1px solid var(--black-3);
  padding: 2rem 1.6rem;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial__avatar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: 145%;
  background-position: center 30%;
  border: 2px solid rgba(201,122,143,0.4);
}

.testimonial__avatar--maria    { background-image: url('images/avatar-maria.jpg');    background-position: center 28%; }
.testimonial__avatar--stefan   { background-image: url('images/avatar-stefan.jpg');   background-position: 58% 26%; }
.testimonial__avatar--viktoria { background-image: url('images/avatar-viktoria.jpg'); background-position: center 24%; }

.testimonial__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.testimonial__name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}

.testimonial__name span {
  color: var(--muted);
  font-weight: 400;
}

/* Soft blended edges for the testimonials panel */
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  pointer-events: none;
  z-index: 2;
}
.testimonials { position: relative; }
.testimonials::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black) 0%, rgba(13,27,42,0) 100%);
}
.testimonials::after {
  bottom: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(13,27,42,0) 100%);
}

/* Testimonials controls row: ← • • • → */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.8rem 0 0;
}

.carousel--testimonials .carousel__btn {
  position: static;
  transform: none;
  width: 42px;
  height: 42px;
}

.carousel--testimonials .carousel__controls .carousel__dots {
  padding: 0;
}

.carousel--testimonials .carousel__dot {
  width: 10px;
  height: 10px;
  border-width: 1px;
}

.carousel--testimonials .carousel__dot--active {
  transform: scale(1.25);
}

/* ─── CONTACT ─── */
.contact {
  padding: 5rem 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  background: var(--black);
  position: relative;
  z-index: 20;
}

.contact__sub {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: -2rem;
  margin-bottom: 0.6rem;
}

.contact__phone {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact__phone a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,196,206,0.4);
}

.contact__phone a:hover { border-color: var(--gold-light); }

/* ─── FORM ─── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__group input,
.form__group select {
  background: var(--black-2);
  border: 1px solid var(--black-3);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form__group input::placeholder { color: #444; }

.form__group input:focus,
.form__group select:focus {
  border-color: var(--gold);
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__group select option { background: var(--black-2); }

.form__note {
  text-align: center;
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 0.05em;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.trust__item.reveal:nth-child(1) { transition-delay: 0s; }
.trust__item.reveal:nth-child(3) { transition-delay: 0.1s; }
.trust__item.reveal:nth-child(5) { transition-delay: 0.2s; }

.how__step.reveal:nth-child(1) { transition-delay: 0s; }
.how__step.reveal:nth-child(2) { transition-delay: 0.12s; }
.how__step.reveal:nth-child(3) { transition-delay: 0.24s; }

.pricing__card.reveal:nth-child(1) { transition-delay: 0s; }
.pricing__card.reveal:nth-child(2) { transition-delay: 0.12s; }
.pricing__card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ─── FOOTER ─── */
.footer {
  padding: 2.5rem 1.5rem;
  background: var(--black-2);
  border-top: 1px solid var(--black-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer__logo {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__logo span { color: var(--gold); }

.footer__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.footer__phone a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.footer__phone a:hover { text-decoration: underline; }

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── DESKTOP ─── */
@media (min-width: 768px) {
  .nav { padding: 1.2rem 3rem; }

  .nav__phone { display: inline; }

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

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

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

  .form__row { grid-template-columns: 1fr 1fr; }

  .contact { padding: 7rem 1.5rem; }

  .hero__title { font-size: 5.5rem; }
}

/* ─── SUCCESS MODAL ─── */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 11, 18, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.success-modal.is-open { display: flex; animation: fadeIn 0.25s ease; }

.success-modal__card {
  background: var(--black-2);
  border: 1px solid var(--gold);
  max-width: 380px;
  width: 100%;
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: modalPop 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(201, 122, 143, 0.12);
  border: 1px solid rgba(201, 122, 143, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.success-modal__card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.success-modal__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.success-modal__card .btn { width: 100%; }

@keyframes modalPop {
  0%   { opacity: 0; transform: translateY(12px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* honeypot — visually removed, kept in accessibility/DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* footer social icons */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin: 1rem 0 0.4rem;
}
.footer__social a {
  color: var(--muted);
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
}
.footer__social a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}
