/* ── Design Tokens (Dark) ── */
:root {
  color-scheme: dark;
  --rose: #ff2a8a;
  --rose-dark: #e0107a;
  --rose-light: #ff5cad;
  --rose-glow: rgba(255, 42, 138, 0.4);
  --mauve: #a67a80;
  --bg: #0c0a0b;
  --bg-elevated: #141012;
  --bg-card: #1a1517;
  --bg-input: #110e0f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f0f2;
  --text-muted: #9a888c;
  --text-soft: #b8a8ac;
  --gold: #d4b978;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container--narrow { width: min(720px, 92vw); }

/* ── Typography ── */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

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

.section__desc {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header .section__desc { margin-inline: auto; }

.section { padding: 6rem 0; }
.section--alt { background: var(--bg-elevated); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn--primary:hover {
  background: var(--rose-light);
  border-color: var(--rose-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--rose-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

.btn:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 3px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
  color: var(--text);
}

.nav--scrolled {
  background: rgba(12, 10, 11, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

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

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo picture {
  display: contents;
}

.nav__logo-img {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--rose-light); }

.nav__cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
}

.nav__cta:hover {
  background: var(--rose-light) !important;
  color: var(--bg) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture {
  display: contents;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12, 10, 11, 0.55) 0%,
    rgba(12, 10, 11, 0.75) 40%,
    rgba(26, 14, 18, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 8rem 0 6rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Stats ── */
.stats {
  background: var(--bg-elevated);
  color: var(--text);
  padding: 3rem 0;
  border-block: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image picture {
  display: contents;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
}

.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  background: var(--rose-glow);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.about__features svg { color: var(--rose); flex-shrink: 0; }

/* ── Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.service-card--featured {
  border: 2px solid var(--rose);
  box-shadow: 0 0 40px var(--rose-glow);
}

.service-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.service-card__icon {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 12px var(--rose-glow);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card__includes {
  margin-bottom: 1.5rem;
}

.service-card__includes li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__includes li::before {
  content: "·";
  position: absolute;
  left: 0.25rem;
  color: var(--rose);
  font-weight: bold;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-light);
  transition: color var(--transition);
}

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

.services__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  margin: 0;
  border: 1px solid var(--border);
}

.gallery__item picture {
  display: contents;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 20, 0);
  transition: background var(--transition);
}

.gallery__item:hover::after { background: rgba(255, 42, 138, 0.15); }

.gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Pricing ── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: var(--transition);
}

.price-card:hover,
.price-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: 0 0 32px var(--rose-glow);
  outline: none;
}

.price-card__media {
  position: relative;
  overflow: hidden;
}

.price-card__media picture {
  display: contents;
}

.price-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.price-card:hover .price-card__media img {
  transform: scale(1.04);
}

.price-card__zoom {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(12, 10, 11, 0.7);
  border: 1px solid var(--border-strong);
  color: var(--rose-light);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.price-card:hover .price-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.price-card__label {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.pricing__note {
  text-align: center;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 620px;
  margin-inline: auto;
}

.pricing__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Guide ── */
.guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guide__note {
  text-align: center;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 620px;
  margin-inline: auto;
}

.guide__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.services__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Process ── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process__step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--rose);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.process__step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Booking ── */
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.book__info p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.book__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

a.book__contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose);
}

.book__contact-item svg { color: var(--rose); flex-shrink: 0; }

.book__contact-item strong {
  display: block;
  font-size: 0.875rem;
}

.book__contact-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.book__address {
  display: block;
  line-height: 1.5;
}

.book__panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.book__form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-input);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-glow);
}

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

.form__field-error {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #ef9a9a;
}

.form__group input.form__input--invalid,
.form__group select.form__input--invalid,
.form__group textarea.form__input--invalid {
  border-color: #ef5350;
  box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.15);
}

.form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form__booking {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form__or {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: var(--mauve);
}

.form__or span {
  flex-shrink: 0;
  padding-bottom: 0.12em;
}

.form__or::before,
.form__or::after {
  content: "";
  flex: 1;
  max-width: 5.5rem;
  height: 1px;
}

.form__or::before {
  background: linear-gradient(to right, transparent, rgba(255, 42, 138, 0.55));
}

.form__or::after {
  background: linear-gradient(to left, transparent, rgba(255, 42, 138, 0.55));
}

.form__status {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.form__status--success {
  background: rgba(46, 125, 50, 0.15);
  color: #81c784;
  border: 1px solid rgba(129, 199, 132, 0.35);
}

.form__status--error {
  background: rgba(198, 40, 40, 0.15);
  color: #ef9a9a;
  border: 1px solid rgba(239, 154, 154, 0.35);
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── FAQ ── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

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

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--rose);
  transition: transform var(--transition);
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { color: var(--rose-light); }

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  margin: 0 auto 1rem;
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.footer__brand picture {
  display: contents;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--rose-light); }

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 11, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
  touch-action: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  padding: 1rem;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

.lightbox__close { top: 1rem; right: 1.5rem; font-size: 2.5rem; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ── Floating CTA ── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--rose);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.float-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .about__grid,
  .book__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-accent { display: none; }

  .services__grid,
  .process__steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .guide__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }

  .nav__logo-img { height: 52px; }

  .pricing__grid { gap: 1rem; }

  .price-card__label {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
  }

  .price-card__zoom { opacity: 1; transform: none; }

  .guide__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .guide__cta .btn { width: 100%; justify-content: center; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav__links--open { right: 0; }

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

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

  .book__form { padding: 1.75rem; }

  .float-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}
