:root {
  --gold: #d4af37;
  --gold-deep: #ad8620;
  --soft-pink: #f6e6ea;
  --soft-rose: #fff5f7;
  --rose-mist: #fbeff2;
  --white: #ffffff;
  --dark: #1a1a1a;
  --dark-soft: #3a3433;
  --muted: #746b68;
  --border: rgba(26, 26, 26, 0.08);
  --shadow-soft: 0 18px 55px rgba(49, 32, 20, 0.12);
  --shadow-card: 0 18px 38px rgba(49, 32, 20, 0.1);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100% - 1.5rem));
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 230, 234, 0.88), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(212, 175, 55, 0.14), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(251, 239, 242, 0.9), transparent 26%),
    linear-gradient(180deg, #fffdfd 0%, var(--rose-mist) 42%, #fff8f9 72%, #ffffff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.28;
}

.site-shell::before {
  top: 6rem;
  left: -6rem;
  background: rgba(212, 175, 55, 0.22);
}

.site-shell::after {
  right: -7rem;
  bottom: 8rem;
  background: rgba(246, 214, 223, 0.86);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: var(--container);
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(48, 27, 14, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-lockup-footer {
  align-items: flex-start;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.brand-logo-header {
  width: clamp(3.25rem, 8vw, 4.25rem);
}

.brand-logo-footer {
  width: min(100%, 4.6rem);
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  text-transform: uppercase;
}

.wordmark-primary,
.wordmark-secondary {
  font-family: "Cinzel", "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #f3dd90 0%, #d4af37 46%, #ad8620 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-lockup-header .wordmark-primary {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.brand-lockup-header .wordmark-secondary {
  font-size: clamp(0.9rem, 1.6vw, 1.14rem);
}

.brand-lockup-footer .wordmark-primary {
  font-size: 1.2rem;
}

.brand-lockup-footer .wordmark-secondary {
  font-size: 0.98rem;
}

.brand-tagline {
  margin-top: 0.85rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #df97a5;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1d784, var(--gold-deep));
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 500;
  color: var(--dark-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft-pink);
  outline: none;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  background: linear-gradient(135deg, #f3d97b, var(--gold));
  color: var(--dark);
}

.hero {
  position: relative;
  padding-top: 5.4rem;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 26%),
    radial-gradient(circle at left 18% top 34%, rgba(246, 230, 234, 0.98), transparent 24%),
    radial-gradient(circle at right 24% bottom 30%, rgba(251, 239, 242, 0.92), transparent 26%),
    linear-gradient(135deg, rgba(255, 246, 248, 0.98), rgba(255, 255, 255, 0.95));
  border-radius: 0 0 42px 42px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, rgba(255, 250, 251, 0), rgba(255, 250, 251, 1));
  z-index: -1;
}

.hero-poster {
  position: relative;
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  border-radius: 36px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background:
    linear-gradient(98deg, #eaf3fe 0%, #f6f1f7 56%, #fffafc 100%);
  box-shadow: 0 24px 62px rgba(49, 32, 20, 0.14);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.hero-poster::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 20%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(8px);
  pointer-events: none;
}

.hero-poster-copy,
.hero-poster-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-poster-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(0.35rem, 1.2vw, 1.35rem);
}

.hero-poster-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
}

.hero-poster-logo {
  width: clamp(3.2rem, 8vw, 4.4rem);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(180, 132, 25, 0.16));
}

.hero-poster-brand-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 26, 26, 0.06);
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-poster-question {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-soft);
}

.hero-poster-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 6.3vw, 4.9rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #203047;
}

.hero-poster-copy h1 span {
  display: block;
  color: var(--gold-deep);
}

.hero-text {
  max-width: 34rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-poster-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-poster-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 26, 26, 0.06);
  color: var(--dark-soft);
  font-size: 0.92rem;
  font-weight: 500;
  backdrop-filter: blur(14px);
}

.hero-poster-points li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero-poster-visual {
  overflow: hidden;
  min-height: 21rem;
  border-radius: 28px;
  background:
    linear-gradient(90deg, #ecf5ff 0%, rgba(246, 239, 244, 0.34) 40%, rgba(255, 255, 255, 0) 100%);
}

.hero-poster-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #ecf5ff 0%, rgba(236, 245, 255, 0.92) 18%, rgba(246, 239, 244, 0.62) 38%, rgba(255, 255, 255, 0.12) 64%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.hero-poster-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(32, 48, 71, 0.82);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.section-heading h2,
.booking-copy h2 {
  margin: 1rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

.hero-text {
  max-width: 34rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.section-heading,
.booking-highlights,
.footer-links,
.footer-bottom {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.14);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, #f2d57a, var(--gold));
  color: var(--dark);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark);
  border: 1px solid rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(12px);
}

.button-inline {
  width: fit-content;
  min-height: 2.85rem;
  padding-inline: 1.1rem;
  background: var(--soft-pink);
  color: var(--dark);
}

.button-block {
  width: 100%;
}

.button-whatsapp {
  background: #25d366;
  color: var(--white);
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.step-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
.preview-card,
.strip-card,
.step-card,
.service-card,
.review-card,
.booking-form,
.footer {
  box-shadow: var(--shadow-card);
}

.hero-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.preview-card {
  overflow: hidden;
  min-height: 12rem;
  border-radius: 26px;
  background: var(--white);
}

.preview-card img {
  height: 100%;
  object-fit: cover;
}

.preview-tall {
  grid-row: span 2;
  min-height: 25rem;
}

.info-strip {
  padding-top: 1.25rem;
}

.strip-grid {
  display: grid;
  gap: 1rem;
}

.strip-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}

.strip-card strong {
  display: block;
  font-size: 1rem;
}

.strip-card p,
.section-heading p,
.step-card p,
.service-body p,
.review-card p,
.booking-copy p,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  color: var(--dark);
}

.section-heading p,
.step-card p,
.service-body p,
.review-card p,
.booking-copy p,
.footer-copy {
  margin: 0;
}

.steps-grid,
.services-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  position: relative;
  display: grid;
  align-content: start;
  padding: 1.5rem;
  height: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfd, #fff4f6);
  border: 1px solid var(--border);
}

.step-number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.85);
}

.step-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-deep);
}

.step-card h3,
.service-body h3,
.review-card strong,
.footer h3 {
  margin: 1rem 0 0.6rem;
}

.step-card h3,
.service-body h3,
.footer h3 {
  font-size: 1.2rem;
}

.services-section,
.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 244, 246, 0.84)),
    linear-gradient(120deg, rgba(246, 230, 234, 0.52), rgba(255, 255, 255, 0.2));
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 26, 26, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow: 0 22px 40px rgba(48, 27, 14, 0.12);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 4.55;
  overflow: hidden;
  background: linear-gradient(180deg, #fffafc, #f7eef3);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.02), rgba(26, 26, 26, 0.12));
}

.service-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 420ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 0.65rem;
  height: 100%;
  padding: 1.2rem 1.2rem 1.3rem;
}

.service-body .button-inline {
  margin-top: auto;
  width: 100%;
  background: rgba(246, 230, 234, 0.86);
}

.service-body .button-inline:hover,
.service-body .button-inline:focus-visible {
  background: linear-gradient(135deg, #f2d57a, var(--gold));
}

.service-picker-head {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.service-picker-head .section-heading {
  margin-bottom: 0;
}

.service-picker-controls {
  display: flex;
  gap: 0.7rem;
}

.service-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(48, 27, 14, 0.08);
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.service-chevron:hover,
.service-chevron:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 30px rgba(48, 27, 14, 0.12);
  outline: none;
}

.service-chevron:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
  box-shadow: 0 8px 18px rgba(48, 27, 14, 0.05);
}

.service-picker-shell {
  padding: 1rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 244, 0.92)),
    var(--white);
  border: 1px solid rgba(26, 26, 26, 0.05);
  box-shadow: var(--shadow-card);
}

.service-picker-viewport {
  display: grid;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.service-picker-viewport:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.72);
  outline-offset: 3px;
}

.service-picker-row {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.service-look-card {
  flex: 0 0 clamp(9.6rem, 32vw, 11rem);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 14px 26px rgba(48, 27, 14, 0.08);
  color: var(--dark);
  scroll-snap-align: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-look-card:hover,
.service-look-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 34px rgba(48, 27, 14, 0.12);
  outline: none;
}

.service-look-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  background: linear-gradient(180deg, #fffafc, #f5edf3);
}

.service-look-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.01), rgba(26, 26, 26, 0.1));
}

.service-look-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 420ms ease;
}

.service-look-card:hover .service-look-media img,
.service-look-card:focus-visible .service-look-media img {
  transform: scale(1.04);
}

.service-look-body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 0.9rem 0.9rem 1rem;
}

.service-look-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-look-body strong {
  font-size: 1rem;
  line-height: 1.25;
}

.service-look-book {
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 600;
}

.service-picker-note {
  margin: 1rem 0 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
}

.gallery-poster {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #f3e9ec, #ece0e4);
  border: 1px solid rgba(26, 26, 26, 0.05);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.02) 0%,
    rgba(12, 12, 12, 0.14) 48%,
    rgba(12, 12, 12, 0.78) 100%
  );
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.gallery-card:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.72);
  outline-offset: 3px;
}

.gallery-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem;
  color: var(--white);
}

.gallery-card-copy span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.gallery-card-copy strong {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.gallery-card-feature {
  min-height: clamp(28rem, 82vw, 44rem);
}

.gallery-card-feature .gallery-card-copy {
  padding: 1.6rem;
}

.gallery-card-feature .gallery-card-copy strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
}

.gallery-card-center img {
  object-position: center center;
}

.gallery-card-waves img {
  object-position: center 18%;
}

.gallery-card-updo img,
.gallery-card-pony img,
.gallery-card-curls img {
  object-position: center 14%;
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 26, 26, 0.05);
}

.review-card strong {
  margin: auto 0 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.booking-section {
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.82), rgba(255, 255, 255, 1)),
    radial-gradient(circle at left, rgba(212, 175, 55, 0.16), transparent 24%);
}

.booking-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.booking-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.booking-copy {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.booking-highlights article {
  display: grid;
  align-content: start;
  padding: 1rem 1.1rem;
  height: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 26, 26, 0.05);
}

.booking-highlights strong {
  display: block;
  margin-bottom: 0.35rem;
}

.booking-highlights span {
  color: var(--muted);
  line-height: 1.6;
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 26, 26, 0.05);
}

.booking-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--dark-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 16px;
  background: #fffdfd;
  color: var(--dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.booking-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
}

.booking-style-note {
  margin: -0.15rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(246, 230, 234, 0.62);
  color: var(--dark-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.booking-style-note.is-active {
  background: rgba(242, 213, 122, 0.2);
  color: var(--dark);
}

.footer {
  margin: 0.5rem auto 1rem;
  padding: 2.4rem 0 1.4rem;
  width: var(--container);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.97), rgba(18, 18, 18, 1)),
    var(--dark);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  padding-bottom: 1.8rem;
}

.footer-brand .brand-copy strong,
.footer h3,
.footer-bottom p:first-child {
  color: var(--white);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 18rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  outline: none;
}

.footer-bottom {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-powered {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

@media (min-width: 42rem) {
  .section {
    padding: 5.75rem 0;
  }

  .topbar {
    padding-inline: 1.2rem;
  }

  .hero-poster {
    padding: 1.45rem;
  }

  .hero-poster-copy {
    padding: 0.9rem 1rem 1.1rem;
  }

  .hero-poster-visual {
    min-height: 26rem;
  }

  .hero-actions,
  .strip-grid,
  .steps-grid,
  .reviews-grid,
  .booking-highlights,
  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-powered {
    justify-self: end;
    text-align: right;
  }

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

  .form-row,
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-picker-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-picker-controls {
    justify-content: flex-end;
  }

  .service-look-card {
    flex-basis: 11rem;
  }

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

  .gallery-card-feature {
    grid-column: 1 / -1;
    min-height: 35rem;
  }
}

@media (min-width: 64rem) {
  .topbar {
    padding: 0.85rem 1.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0.7rem 1rem;
  }

  .hero-poster {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    align-items: stretch;
    min-height: 33rem;
    padding: 1.6rem;
  }

  .hero-poster-copy {
    padding: 1.4rem 1.5rem 1.4rem 1.3rem;
  }

  .hero-poster-visual {
    min-height: 100%;
  }

  .hero-poster-image {
    object-position: 74% center;
  }

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

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }

  .service-picker-shell {
    padding: 1.15rem;
  }

  .service-look-card {
    flex-basis: 12rem;
  }

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

  .gallery-poster {
    grid-template-columns: minmax(0, 1.42fr) repeat(2, minmax(0, 0.78fr));
  }

  .gallery-card {
    min-height: 20.5rem;
  }

  .gallery-card-feature {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 43rem;
  }

  .booking-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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