/* ==========================================================================
   Lumière Beauty Studio — stylesheet
   Palette: blush, champagne gold, deep plum.
   ========================================================================== */

/* --------------------------------------------------------------- tokens - */
:root {
  /* colour */
  --cream: #fffbf8;
  --blush-50: #fdf3f5;
  --blush-100: #f9e6ea;
  --blush-200: #f2cfd8;
  --blush-300: #e9b5c2;
  --rose: #dc9aa9;
  --rose-deep: #c2718a;
  --plum: #5c2b3e;
  --plum-deep: #351522;
  --ink: #2a1a21;
  --ink-soft: #6b5560;
  --gold: #c9a46a;
  --gold-soft: #e6d3ae;
  --white: #ffffff;

  /* type */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* spacing / layout */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-pill: 999px;

  /* effects */
  --shadow-s: 0 2px 10px rgba(92, 43, 62, 0.06);
  --shadow-m: 0 14px 40px -18px rgba(92, 43, 62, 0.28);
  --shadow-l: 0 40px 80px -40px rgba(53, 21, 34, 0.45);
  --ring: 0 0 0 3px rgba(220, 154, 169, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- reset - */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
svg { display: block; max-width: 100%; }

img { height: auto; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

button { cursor: pointer; border: 0; background: none; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------- typography - */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--plum-deep);
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}

/* --------------------------------------------------------------- layout - */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.section { padding-block: var(--section-y); position: relative; }

.section--tint { background: linear-gradient(180deg, var(--blush-50), var(--cream)); }

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--plum-deep);
  color: var(--white);
  border-radius: var(--radius-pill);
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------- buttons - */
.btn {
  --btn-bg: var(--plum-deep);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
}

.btn:active { transform: translateY(-1px); }

.btn--rose { --btn-bg: var(--rose-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum-deep);
  border: 1px solid var(--blush-200);
}

.btn--ghost:hover {
  --btn-bg: var(--white);
  border-color: var(--rose);
}

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--plum-deep);
}

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
}

.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------- announcement - */
.topbar {
  background: var(--plum-deep);
  color: var(--blush-100);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.65rem var(--gutter);
}

.topbar strong { color: var(--gold-soft); font-weight: 500; }

/* --------------------------------------------------------------- header - */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* The blur lives on a pseudo-element: `backdrop-filter` on .header itself would
   make it the containing block for the position:fixed mobile drawer. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 251, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header.is-stuck {
  border-bottom-color: var(--blush-100);
  box-shadow: 0 6px 24px -20px rgba(53, 21, 34, 0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--plum-deep);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--rose), var(--gold));
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: -2px;
}

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

.nav__list { display: flex; align-items: center; gap: 1.85rem; }

.nav__link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav__link:hover,
.nav__link.is-active { color: var(--plum-deep); }

.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: inline-flex; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--blush-200);
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--plum-deep);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.burger span + span { margin-top: 4px; }

body.nav-open .burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero - */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--a {
  width: 460px; height: 460px;
  background: var(--blush-200);
  top: -140px; left: -120px;
}

.hero__glow--b {
  width: 380px; height: 380px;
  background: var(--gold-soft);
  bottom: -160px; right: 32%;
  opacity: 0.4;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__copy { display: grid; gap: 1.6rem; justify-items: start; }

.hero h1 { max-width: 12ch; }

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
}

.hero__avatars { display: flex; }

.hero__avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
}

.hero__avatars img + img { margin-left: -14px; }

.hero__proof-text { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.45; }
.hero__proof-text strong { display: block; color: var(--plum-deep); font-weight: 500; }

.hero__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.8rem; }

.hero__media { position: relative; }

.hero__frame {
  position: relative;
  border-radius: 220px 220px var(--radius-l) var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 11 / 14;
}

.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(53, 21, 34, 0.35));
}

.hero__badge {
  position: absolute;
  left: -34px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem 0.85rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-m);
}

.hero__badge img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.hero__badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum-deep);
  line-height: 1.2;
}

.hero__badge span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); }

.hero__ribbon {
  position: absolute;
  right: -18px;
  top: 34px;
  padding: 0.6rem 1.15rem;
  background: var(--plum-deep);
  color: var(--gold-soft);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-m);
}

/* ------------------------------------------------------------- marquee -- */
.marquee {
  border-block: 1px solid var(--blush-100);
  background: var(--blush-50);
  padding-block: 1.15rem;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: slide 34s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
  white-space: nowrap;
}

.marquee__item::after {
  content: "✦";
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold);
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

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

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-m);
  border-color: var(--blush-200);
}

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

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.service:hover .service__media img { transform: scale(1.07); }

.service__price {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--plum-deep);
}

.service__body { display: grid; gap: 0.7rem; padding: 1.6rem 1.6rem 1.9rem; }

.service__body p { font-size: 0.93rem; color: var(--ink-soft); }

.service__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ---------------------------------------------------------------- about - */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media { position: relative; }

.about__media-main {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  aspect-ratio: 4 / 3;
}

.about__media-main img { width: 100%; height: 100%; object-fit: cover; }

.about__media-inset {
  position: absolute;
  right: -26px;
  bottom: -48px;
  width: 44%;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 7px solid var(--cream);
  box-shadow: var(--shadow-m);
  aspect-ratio: 4 / 5;
}

.about__media-inset img { width: 100%; height: 100%; object-fit: cover; }

.about__copy { display: grid; gap: 1.4rem; }

.about__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--rose-deep);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--blush-100);
  margin-top: 0.5rem;
}

.stat { padding-top: 1.3rem; }

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1;
}

.stat span {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------- gallery - */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter {
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--blush-200);
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}

.filter:hover { border-color: var(--rose); color: var(--plum-deep); }

.filter.is-active {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--blush-100);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery__item.is-hidden { display: none; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

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

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(53, 21, 34, 0.6));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

.gallery__item--tall { grid-row: span 2; aspect-ratio: 4 / 10.2; }

/* ------------------------------------------------------------- lightbox - */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(42, 26, 33, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(100%, 780px);
  max-height: 82vh;
  border-radius: var(--radius-m);
  object-fit: contain;
  box-shadow: var(--shadow-l);
}

.lightbox__cap {
  margin-top: 1rem;
  text-align: center;
  color: var(--blush-100);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  transition: background-color 0.3s var(--ease);
}

.lightbox__btn:hover { background: rgba(255, 255, 255, 0.26); }

.lightbox__btn--close { top: 1.25rem; right: 1.25rem; }
.lightbox__btn--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* -------------------------------------------------------------- pricing - */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.plan {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 2.3rem 2rem;
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-l);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }

.plan--featured {
  background: linear-gradient(165deg, var(--plum-deep), #4a2030);
  border-color: transparent;
  box-shadow: var(--shadow-l);
}

.plan--featured h3,
.plan--featured .plan__price b { color: var(--white); }

.plan--featured .plan__price span,
.plan--featured p,
.plan--featured li { color: var(--blush-200); }

.plan--featured li::before { color: var(--gold-soft); }

.plan__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--gold);
  color: var(--plum-deep);
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan__price { display: flex; align-items: baseline; gap: 0.4rem; }

.plan__price b {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--plum-deep);
  line-height: 1;
}

.plan__price span { font-size: 0.8rem; color: var(--ink-soft); }

.plan__price .plan__cur {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: inherit;
  vertical-align: 0.55em;
  margin-right: 0.05em;
}

.plan--featured .plan__price .plan__cur { color: var(--gold-soft); }

.plan p { font-size: 0.92rem; color: var(--ink-soft); }

.plan__list { display: grid; gap: 0.65rem; font-size: 0.92rem; }

.plan__list li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }

.plan__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  color: var(--rose);
}

/* --------------------------------------------------------- testimonials - */
.quotes { position: relative; overflow: hidden; }

.quotes__viewport { overflow: hidden; }

.quotes__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}

.quote {
  flex: 0 0 100%;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  padding-inline: clamp(0.5rem, 4vw, 4rem);
}

.quote__stars { color: var(--gold); letter-spacing: 4px; }

.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--plum-deep);
  max-width: 26ch;
  text-wrap: balance;
}

.quote__who { display: grid; gap: 0.15rem; }

.quote__who b { font-weight: 500; color: var(--plum); }

.quote__who span {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.quotes__dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 2.5rem; }

.quotes__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blush-200);
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.quotes__dot.is-active { background: var(--rose-deep); transform: scale(1.35); }

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

.kit figure {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 1;
}

.kit img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.kit figure:hover img { transform: scale(1.06); }

.kit figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

/* ------------------------------------------------------------------ faq - */
.faq { display: grid; gap: 0.85rem; max-width: 780px; margin-inline: auto; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.faq__item.is-open { border-color: var(--blush-200); box-shadow: var(--shadow-s); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum-deep);
}

.faq__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--blush-200);
  color: var(--rose-deep);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
    color 0.4s var(--ease);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

.faq__a > div { overflow: hidden; }

.faq__a p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------- booking - */
.booking {
  position: relative;
  background:
    linear-gradient(105deg, rgba(53, 21, 34, 0.94) 0%, rgba(53, 21, 34, 0.78) 45%, rgba(92, 43, 62, 0.45) 100%),
    var(--book-img, none) center / cover no-repeat;
  color: var(--blush-100);
}

.booking h2 { color: var(--white); }
.booking .eyebrow { color: var(--gold-soft); }

.booking__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.booking__intro { display: grid; gap: 1.4rem; }
.booking__intro p { color: var(--blush-200); }

.booking__contacts { display: grid; gap: 1rem; margin-top: 0.5rem; }

.booking__contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.booking__contact i {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-style: normal;
}

.form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(255, 251, 248, 0.97);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}

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

.field { display: grid; gap: 0.4rem; }

.field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-s);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: var(--ring);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c0485f; }

.field__error {
  font-size: 0.76rem;
  color: #c0485f;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.field.is-invalid .field__error { opacity: 1; }

.form__note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; }

.form__status {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-s);
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  font-size: 0.9rem;
  color: var(--plum);
}

.form__status.is-shown { display: block; }

/* --------------------------------------------------------------- footer - */
.footer {
  background: var(--plum-deep);
  color: var(--blush-200);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .brand { color: var(--white); }
.footer .brand__name small { color: var(--gold-soft); }

.footer__blurb { font-size: 0.92rem; margin-top: 1rem; max-width: 34ch; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.footer__links { display: grid; gap: 0.6rem; font-size: 0.93rem; }
.footer__links a { transition: color 0.3s var(--ease); }
.footer__links a:hover { color: var(--white); }

.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.socials a:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(249, 230, 234, 0.65);
}

/* ------------------------------------------------------------- to-top --- */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--white);
  box-shadow: var(--shadow-m);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}

.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }

/* ------------------------------------------------------------ reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive- */
@media (max-width: 1080px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4 / 5; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { justify-items: center; text-align: center; }
  .hero h1 { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__badge { left: -12px; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .about__media-inset { right: 0; bottom: -36px; width: 40%; }

  .booking__grid { grid-template-columns: 1fr; }
  .kit { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .burger { display: grid; }
  .nav__cta { display: none; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(53, 21, 34, 0.5);
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
  }

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

  .nav__list { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav__link { font-size: 1rem; }
  .nav .nav__cta { display: inline-flex; }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(42, 26, 33, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
  }

  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__ribbon { right: 0; }
  .hero__badge { left: 0; bottom: 16px; }
  .lightbox__btn--prev { left: 0.4rem; }
  .lightbox__btn--next { right: 0.4rem; }
}

/* -------------------------------------------------------------- motion -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
