/* ============================================
   GOYKA LP - Kobieca sesja sensualna
   Warm dark / champagne gold / serif italics
   ============================================ */

:root {
  --bg: #0e0b0a;
  --surface: #161110;
  --surface-alt: #1c1614;
  --border: rgba(233, 214, 190, .12);
  --border-strong: rgba(233, 214, 190, .28);
  --gold: #c9a46c;
  --gold-light: #e2c493;
  --gold-deep: #9c7a45;
  --gold-glow: rgba(201, 164, 108, .22);
  --blush: #e6b7ad;
  --text: #f1e9df;
  --text-muted: #b9ab9b;
  --text-dim: #8d8073;
  --ink: #1a130f;
  --error: #f0a39a;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 14px;
  --container: 1140px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
strong { font-weight: 600; color: var(--text); }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a221e; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
html { scrollbar-color: #2a221e var(--bg); }
[id] { scroll-margin-top: 5.5rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .75rem 1.5rem;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.header.is-scrolled {
  background: rgba(14, 11, 10, .72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 40px; width: auto; opacity: .92; transition: opacity .2s; }
.header__logo:hover img { opacity: 1; }

/* --- TYPOGRAPHY --- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  text-wrap: balance;
  margin-bottom: 2.5rem;
  color: var(--text);
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: -1.5rem 0 2.5rem;
  line-height: 1.7;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: .15rem;
  transition: color .2s, border-color .2s, gap .25s;
}
.link-arrow::after { content: '\2192'; }
.link-arrow:hover { color: var(--gold-light); border-color: var(--gold-light); gap: .8rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 8px 28px -8px rgba(201, 164, 108, .55), 0 2px 6px -2px rgba(0, 0, 0, .5);
}
.btn--primary:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(201, 164, 108, .65), 0 3px 8px -2px rgba(0, 0, 0, .5);
}
.btn--primary:active { transform: translateY(0); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--ghost {
  background: rgba(241, 233, 223, .06);
  color: var(--text);
  border-color: rgba(241, 233, 223, .16);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(241, 233, 223, .12); color: #fff; border-color: rgba(241, 233, 223, .3); }
.btn--sm { font-size: .85rem; padding: .65rem 1.4rem; }
.btn--lg { font-size: 1.02rem; padding: 1.05rem 2.6rem; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* =============================
   HERO
   ============================= */
.hero {
  position: relative;
  min-height: 92vh;
  max-height: 960px;
  display: grid;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg-image { position: absolute; inset: 0; z-index: 1; }
.hero__bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% top;
  filter: brightness(.62) contrast(1.05) saturate(.9);
}
.hero__bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,10,.05) 0%, rgba(14,11,10,.25) 30%, rgba(14,11,10,.8) 60%, rgba(14,11,10,.98) 100%),
    radial-gradient(60% 40% at 80% 20%, rgba(201,164,108,.12), transparent 70%);
}
.hero__bg-strip { display: none; }
@keyframes heroStripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 3rem;
  min-height: 92vh;
  max-height: 960px;
}
.hero__inner { max-width: 620px; }
.hero__title { margin-bottom: 1.25rem; }
.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.02em;
  opacity: 0;
  animation: riseIn 1s .2s var(--ease-out) forwards;
}
.hero__title--accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  animation-delay: .35s;
}
.hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  line-height: 1.65;
  max-width: 48ch;
  opacity: 0;
  animation: riseIn 1s .55s var(--ease-out) forwards;
}
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: riseIn 1s .75s var(--ease-out) forwards;
}
.hero__trust li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.hero__trust li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.hero__actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s .95s var(--ease-out) forwards;
}

/* =============================
   OPENING QUOTE
   ============================= */
.opening {
  padding: 6rem 0 5rem;
  position: relative;
}
.opening::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 4rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform: translateX(-50%);
}
.opening__quote {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}
.opening__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.3;
  color: var(--text);
  text-wrap: balance;
}
.opening__answer {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.opening__answer p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* =============================
   FOR WHOM
   ============================= */
.for-whom { padding: 4rem 0 5rem; }
.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.for-whom__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.for-whom__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: .6rem;
}
.for-whom__item h3::before {
  content: '';
  display: inline-block;
  width: 1.5rem; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .75rem;
}
.for-whom__item p { color: var(--text-muted); line-height: 1.7; max-width: 56ch; }

/* =============================
   PHOTO BREAKS
   ============================= */
.photo-break {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.photo-break__inner { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.photo-break__inner img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-lg);
  filter: contrast(1.04);
}
.photo-break--duo,
.photo-break--trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .photo-break--duo { grid-template-columns: 1fr 1fr; gap: 6px; }
  .photo-break--trio { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
.photo-break__col { border-radius: var(--radius-lg); overflow: hidden; }
.photo-break__col img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.04);
  transition: transform .8s var(--ease-out);
}
.photo-break__col:hover img { transform: scale(1.03); }

/* =============================
   GALLERY
   ============================= */
.gallery { padding: 5rem 0 4rem; }
.gallery__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.5rem 0 max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  scroll-padding-left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  cursor: grab;
  scroll-snap-type: x proximity;
}
.gallery__scroll:active { cursor: grabbing; }
.gallery__scroll::-webkit-scrollbar { display: none; }
.gallery__track { display: flex; gap: .85rem; width: max-content; padding-right: 1.5rem; }
.gallery__item {
  flex: 0 0 auto;
  width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}
.gallery__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .6s;
  filter: brightness(.92) saturate(.95);
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.02); }
.gallery__nav {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;
}
.gallery__btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.gallery__btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,164,108,.08); }
.gallery__hint { font-size: .85rem; color: var(--text-muted); letter-spacing: .04em; margin-left: .5rem; font-variant-numeric: tabular-nums; }

/* =============================
   PROCESS
   ============================= */
.process { padding: 6rem 0; }
.process__list {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.process__step {
  counter-increment: step;
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.process__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -.85rem;
  left: 0;
  padding-right: .75rem;
  background: var(--bg);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.process__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: .5rem 0 .6rem;
}
.process__step p { color: var(--text-muted); line-height: 1.7; }

/* =============================
   PRICING
   ============================= */
.pricing { padding: 5rem 0 4rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pricing__card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: 0 24px 40px -24px rgba(0,0,0,.8); }
.pricing__card--featured {
  border-color: rgba(201,164,108,.5);
  background: linear-gradient(180deg, rgba(201,164,108,.1) 0%, var(--surface) 40%);
  box-shadow: 0 30px 60px -30px rgba(201,164,108,.35);
}
.pricing__badge {
  position: absolute;
  top: -.8rem;
  left: 1.75rem;
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
}
.pricing__card-header { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.pricing__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
  line-height: 1.1;
}
.pricing__price { display: flex; align-items: baseline; gap: .3rem; }
.pricing__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.6rem;
  line-height: .95;
  color: var(--text);
  font-variant-numeric: lining-nums;
}
.pricing__card--featured .pricing__amount { color: var(--gold-light); }
.pricing__currency { font-size: 1.1rem; color: var(--text-muted); }
.pricing__features { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.pricing__features li {
  padding: .5rem 0 .5rem 1.4rem;
  position: relative;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05em;
  width: 8px; height: 1px;
  background: var(--gold);
}
.pricing__card .btn { margin-top: auto; }
.pricing__extra {
  margin: 2.5rem auto 0;
  max-width: 70ch;
  text-align: center;
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.7;
}
.voucher {
  margin: 2.5rem auto 0;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.voucher__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.voucher__text p { color: var(--text-muted); line-height: 1.7; max-width: 62ch; }
.voucher .btn { flex-shrink: 0; }

/* =============================
   DISCRETION
   ============================= */
.discretion { padding: 3rem 0 6rem; }
.discretion__inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(201,164,108,.08), transparent 60%),
    var(--surface);
}
.discretion__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.discretion__icon { color: var(--gold); margin-bottom: 1rem; }
.discretion__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.discretion__item p { color: var(--text-muted); line-height: 1.7; font-size: .97rem; }

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials { padding: 5rem 0; background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.testimonial {
  position: relative;
  padding: 3rem 1.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}
.testimonial::before {
  content: '\201E';
  position: absolute;
  top: -.35rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .85;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1rem;
}
.testimonial__author { font-size: .85rem; color: var(--text-muted); letter-spacing: .04em; }
.testimonial__author::before { content: ''; display: inline-block; width: 1.25rem; height: 1px; background: var(--gold); vertical-align: middle; margin-right: .6rem; }

/* =============================
   ABOUT
   ============================= */
.about { padding: 6rem 0 4rem; }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.about__photo { border-radius: var(--radius-lg); overflow: hidden; max-width: 380px; }
.about__photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; filter: contrast(1.04); }
.about__text .section-title { margin-bottom: 1.5rem; }
.about__text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; max-width: 56ch; }
.about__text .btn { margin-top: 1rem; }

/* =============================
   FAQ
   ============================= */
.faq { padding: 5rem 0; }
.faq__list { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  padding: 1.25rem 0;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  transition: color .2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s var(--ease-out);
}
details[open] .faq__question::after { transform: rotate(45deg); }
.faq__question:hover { color: var(--gold-light); }
.faq__answer { padding-bottom: 1.5rem; color: var(--text-muted); line-height: 1.7; max-width: 66ch; }

/* =============================
   CTA + FORM
   ============================= */
.cta-form {
  padding: 5rem 0 7rem;
  position: relative;
  background:
    radial-gradient(50% 40% at 100% 100%, rgba(201,164,108,.1), transparent 70%),
    var(--surface);
}
.cta-form__wrapper { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.cta-form__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.cta-form__title--accent { font-style: italic; font-weight: 500; color: var(--gold-light); }
.cta-form__desc { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; max-width: 44ch; }
.cta-form__person {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.75rem;
  padding: .75rem 1rem .75rem .75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  background: rgba(241,233,223,.03);
}
.cta-form__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.cta-form__person strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.1; }
.cta-form__person span { font-size: .8rem; color: var(--text-muted); letter-spacing: .03em; }
.cta-form__contact { display: flex; flex-direction: column; gap: .6rem; }
.cta-form__phone, .cta-form__email {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color .2s;
}
.cta-form__phone:hover, .cta-form__email:hover { color: var(--gold-light); }
.cta-form__social { display: flex; gap: .5rem; margin-top: .75rem; }
.cta-form__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, transform .3s var(--ease-out);
}
.cta-form__social-link:hover { color: var(--gold-light); border-color: var(--gold); transform: translateY(-2px); }

/* --- FORM --- */
.form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.form__row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.form__group { margin-bottom: 1.1rem; }
.form__label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.form__optional { color: var(--text-dim); font-weight: 400; letter-spacing: 0; }
.form__input {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  caret-color: var(--gold);
}
.form__input::placeholder { color: var(--text-dim); }
.form__input:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 0; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow); }
.form__input[aria-invalid="true"] { border-color: var(--error); }
.form__textarea { resize: vertical; min-height: 5.5rem; line-height: 1.5; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a46c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__select option { background: var(--surface); color: var(--text); }
.form__date { color-scheme: dark; color: var(--text); }
.form__date::-webkit-calendar-picker-indicator { filter: invert(.85) sepia(.5) saturate(2) hue-rotate(-10deg); cursor: pointer; }
.form__date::-webkit-datetime-edit { color: var(--text); }
.form__date:invalid::-webkit-datetime-edit { color: var(--text-dim); }
.form__error {
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--error);
}
.form__error::before { content: '\2716\00a0'; font-size: .7rem; }
.form__consent { margin-top: .25rem; }
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1.45;
  color: var(--text-muted);
  position: relative;
}
.form__checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form__checkmark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
  margin-top: 1px;
}
.form__checkbox input:checked + .form__checkmark { background: var(--gold); border-color: var(--gold); }
.form__checkbox input:checked + .form__checkmark::after {
  content: '';
  width: 6px; height: 11px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.form__checkbox input:focus-visible + .form__checkmark { box-shadow: 0 0 0 3px var(--gold-glow); outline: 2px solid var(--gold-light); outline-offset: 2px; }
.form__checkbox.is-invalid .form__checkmark { border-color: var(--error); }
.form__consent-toggle {
  background: none; border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: .85rem;
  padding: .35rem .25rem;
  margin: -.35rem -.25rem;
  min-height: 24px;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--font-body);
}
.form__consent-details { margin-top: .6rem; padding-left: 1.7rem; font-size: .78rem; line-height: 1.55; color: var(--text-dim); }
.form__hp { position: absolute; left: -9999px; top: -9999px; }
.form .btn--full { margin-top: .5rem; }
.form__status { margin-top: .75rem; font-size: .9rem; color: var(--error); min-height: 1.2em; }
.form__status:empty { display: none; }
.form__privacy {
  display: flex; align-items: center; gap: .4rem;
  margin: 1.25rem 0 .9rem;
  font-size: .78rem;
  color: var(--text-dim);
}
.form--success { text-align: center; padding: 3rem 1.5rem; }
.form__success-msg {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: .75rem;
  line-height: 1.1;
}
.form__success-sub { color: var(--text-muted); line-height: 1.7; }

/* --- FOOTER --- */
.footer { padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.footer__logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: .12em; color: var(--text); }
.footer__brand p { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: center; }
.footer__links a { font-size: .85rem; color: var(--text-muted); padding: .25rem 0; }
.footer__links a:hover { color: var(--gold-light); }
.footer__legal { font-size: .78rem; color: var(--text-dim); }
.footer__legal a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; display: inline-block; padding: .3rem 0; }
.footer__legal a:hover { color: var(--gold-light); }
.footer__credit { text-align: center; font-size: .75rem; color: var(--text-dim); margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer__credit-link { color: var(--text-muted); font-weight: 600; }
.footer__credit-link:hover { text-decoration: underline; }

/* =============================
   MOTION
   ============================= */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.for-whom__grid .reveal:nth-child(2), .process__list .reveal:nth-child(2), .pricing__grid .reveal:nth-child(2), .testimonials__grid .reveal:nth-child(2), .discretion__grid .reveal:nth-child(2) { transition-delay: .1s; }
.for-whom__grid .reveal:nth-child(3), .process__list .reveal:nth-child(3), .pricing__grid .reveal:nth-child(3), .testimonials__grid .reveal:nth-child(3), .discretion__grid .reveal:nth-child(3) { transition-delay: .2s; }
.for-whom__grid .reveal:nth-child(4), .process__list .reveal:nth-child(4) { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__title-line, .hero__title-sub, .hero__trust, .hero__actions { opacity: 1; transform: none; filter: none; animation: none; }
}

/* =============================
   TABLET / DESKTOP
   ============================= */
@media (min-width: 768px) {
  .header { padding: .9rem 2.5rem; }
  .hero__bg-image--mobile { display: none; }
  .hero__bg-strip { display: block; position: absolute; inset: 0; z-index: 1; overflow: hidden; }
  .hero__strip-track {
    display: flex;
    gap: 2px;
    height: 100%;
    width: max-content;
    animation: heroStripScroll 48s linear infinite;
  }
  .hero__strip-track img {
    height: 100%; width: auto;
    object-fit: cover;
    filter: brightness(.72) contrast(1.04) saturate(.9);
    flex-shrink: 0;
  }
  .hero__bg-strip::after {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background:
      linear-gradient(90deg, rgba(14,11,10,.97) 0%, rgba(14,11,10,.85) 30%, rgba(14,11,10,.35) 55%, rgba(14,11,10,.08) 75%, transparent 100%),
      linear-gradient(180deg, rgba(14,11,10,.25) 0%, transparent 30%, rgba(14,11,10,.55) 100%);
  }
  .hero__content { padding: 6rem 4rem 4.5rem; }
  .for-whom__grid { grid-template-columns: 1fr 1fr; gap: 0 3rem; }
  .for-whom__item:nth-child(-n+2) { border-top: none; }
  .gallery__item { width: 320px; }
  .gallery__item img { height: 470px; }
  .process__list { grid-template-columns: repeat(2, 1fr); gap: 3rem 3rem; }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .voucher { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; padding: 2rem 2.25rem; }
  .discretion__inner { padding: 3.5rem 3rem; }
  .discretion__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 380px 1fr; gap: 4rem; }
  .cta-form__wrapper { grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
  .form { padding: 2.25rem; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; }
  .footer__links { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .hero__content { padding: 6rem 4rem 5.5rem; }
  .process__list { grid-template-columns: repeat(4, 1fr); gap: 3rem 2.5rem; }
  .gallery__item { width: 340px; }
  .gallery__item img { height: 510px; }
  .pricing__card--featured { transform: translateY(-8px); }
  .pricing__card--featured:hover { transform: translateY(-11px); }
  .form { padding: 2.5rem; }
}

/* =============================
   MOBILE TIGHTENING (after base rules)
   ============================= */
@media (max-width: 767.98px) {
  .opening { padding: 4rem 0 3rem; }
  .for-whom { padding: 2.5rem 0 3rem; }
  .for-whom__item { padding: 1.25rem 0; }
  .for-whom__item h3 { font-size: 1.35rem; }
  .gallery { padding: 3.5rem 0 3rem; }
  .gallery__item img { height: 340px; }
  .pricing { padding: 3.5rem 0 3rem; }
  .pricing__card { padding: 1.5rem 1.35rem; }
  .pricing__card--featured { order: -1; margin-top: .75rem; }
  .pricing__amount { font-size: 3rem; }
  .pricing__card-header { margin-bottom: .9rem; padding-bottom: .9rem; }
  .pricing__features li { padding: .35rem 0 .35rem 1.3rem; }
  .pricing__features { margin-bottom: 1.1rem; }
  .voucher { padding: 1.5rem 1.35rem; margin-top: 1.5rem; }
  .discretion { padding: 1.5rem 0 3.5rem; }
  .discretion__inner { padding: 2.25rem 1.35rem; }
  .discretion__grid { gap: 1.5rem; }
  .process { padding: 3.5rem 0; }
  .process__list { gap: 1.75rem; }
  .photo-break { padding: .5rem 0; margin-bottom: 1rem; }
  .testimonials { padding: 3.5rem 0; }
  .testimonial { padding: 3rem 1.35rem 1.35rem; }
  .testimonial__text { font-size: 1.15rem; }
  .about { padding: 3.5rem 0 2.5rem; }
  .about__grid { gap: 1.5rem; }
  .about__photo { max-width: 200px; }
  .faq { padding: 3rem 0; }
  .cta-form { padding: 3.5rem 0 4.5rem; }
  .cta-form__wrapper { gap: 2rem; }
  .cta-form__person { margin-bottom: 1.25rem; }
  .section-title { margin-bottom: 1.75rem; }
  .section-lead { margin: -1rem 0 1.75rem; }
  .photo-break__col img { aspect-ratio: 4 / 5; max-height: 65vh; object-position: center 18%; }
}

/* --- GRAIN --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: soft-light;
}
