/* Priya Aesthetic Hub — baby pink theme with logo magenta accents */

:root {
  --bg: #fff5f7;
  --bg-soft: #fce8ee;
  --bg-deep: #f5d0da;
  --brand: #d4006e;
  --brand-dark: #a80055;
  --brand-soft: #e8a1a9;
  --ink: #1a1216;
  --ink-muted: #8c4a5a;
  --line: #f0b7c4;
  --white: #ffffff;
  --radius: 0.35rem;
  --shadow-soft: 0 12px 40px rgba(168, 0, 85, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-brand: "Dancing Script", "Segoe Script", "Apple Chancery", cursive;
  --font-body: "DM Sans", system-ui, sans-serif;
  --width: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #ffe0ea 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, #ffd6e4 0%, transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, #fff9fb 40%, var(--bg-soft) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

p {
  margin: 0 0 1em;
  color: var(--ink-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--brand);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 245, 247, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(212, 0, 110, 0.06);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--width));
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.logo-link:hover {
  color: inherit;
}

.logo-link img {
  height: 3.1rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-link .brand-title {
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--brand);
  margin: 0;
  padding-top: 0.12rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-link .brand-title {
    font-size: 1.35rem;
    white-space: normal;
    max-width: 9.5rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--brand);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand);
  color: var(--white) !important;
  text-decoration: none !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-ghost:hover {
  background: rgba(212, 0, 110, 0.08);
  color: var(--brand-dark);
}

.btn-soft {
  background: var(--white);
  color: var(--brand);
  border-color: var(--line);
}

.btn-soft:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero — full-bleed banner + offerings panel on the right */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #fff0f4 0%, #ffe4ec 50%, #fcd4e0 100%);
}

.hero-media {
  position: relative;
  min-height: 22rem;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

.hero-panel {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vw, 3rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 0, 110, 0.1), transparent 45%),
    linear-gradient(180deg, #fff5f7 0%, #ffe8ef 100%);
  border-left: 1px solid var(--line);
}

.hero-panel-inner {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}

.hero-panel .eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s var(--ease) 0.1s forwards;
}

.hero-panel h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  margin-bottom: 0.65rem;
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s var(--ease) 0.2s forwards;
}

.hero-panel .lede {
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s var(--ease) 0.3s forwards;
}

.hero-indicators {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s var(--ease) 0.4s forwards;
}

.hero-indicators li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(240, 183, 196, 0.65);
}

.hero-indicators li:last-child {
  border-bottom: none;
}

.hero-indicators .ind-label {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  min-width: 7.5rem;
  flex-shrink: 0;
}

.hero-indicators .ind-text {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.hero-panel .cta-row {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s var(--ease) 0.5s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 16rem;
    max-height: 42vh;
  }

  .hero-media img {
    object-position: center 20%;
  }

  .hero-panel {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 2rem 1.25rem 2.75rem;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

/* Service grid — open layout, light dividers (not heavy cards) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.5rem 2rem;
}

.service-item {
  padding: 0.25rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.service-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item h3 {
  color: var(--brand-dark);
  margin-bottom: 0.4rem;
}

.service-item p {
  margin: 0;
  font-size: 0.98rem;
}

.service-item a {
  text-decoration: none;
  color: inherit;
}

.service-item a:hover h3 {
  color: var(--brand);
}

/* Why / features */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 720px) {
  .feature-row {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 3.5rem;
  }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
}

/* Local topics */
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.topic-list li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(212, 0, 110, 0.1), rgba(255, 182, 203, 0.35));
  border-block: 1px solid var(--line);
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band .cta-row {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 0, 110, 0.1), transparent 60%),
    linear-gradient(180deg, #ffe8ef, transparent);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero .lede {
  max-width: 34rem;
  margin: 0 auto;
}

/* Services page banner */
.services-banner {
  position: relative;
  overflow: hidden;
  background: #f3c6c9;
  border-bottom: 1px solid var(--line);
}

.services-banner > img {
  width: 100%;
  height: clamp(16rem, 38vw, 28rem);
  object-fit: cover;
  object-position: right center;
  display: block;
}

.services-banner-copy {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(48%, 34rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3.5vw, 3rem) clamp(1.25rem, 4vw, 3.25rem);
  color: var(--ink);
}

.services-banner-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.services-banner-copy h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
  max-width: 16ch;
  line-height: 1.12;
}

.services-banner-copy .lede {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .services-banner {
    display: flex;
    flex-direction: column;
  }

  .services-banner > img {
    height: 14rem;
    order: 1;
    object-position: 70% center;
  }

  .services-banner-copy {
    position: relative;
    width: 100%;
    inset: auto;
    order: 2;
    padding: 1.5rem 1.25rem 1.85rem;
    background: linear-gradient(180deg, #f8d4d7, #fff5f7);
  }

  .services-banner-copy h1,
  .services-banner-copy .lede {
    max-width: none;
  }
}

/* Services accordion */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.service-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.service-nav a:hover {
  color: var(--brand);
  border-color: var(--brand-soft);
}

.accordion {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin-inline: auto;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 400;
}

.accordion-item[open] summary::after {
  content: "–";
}

.accordion-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid transparent;
}

.accordion-item[open] .accordion-body {
  border-top-color: var(--line);
  padding-top: 1rem;
}

.service-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.service-dl dt {
  font-weight: 650;
  color: var(--ink);
  font-size: 0.98rem;
}

.service-dl dd {
  margin: 0.15rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  max-width: 36rem;
  margin-inline: auto;
}

/* About */
.prose {
  max-width: 40rem;
  margin-inline: auto;
}

.prose h2 {
  margin-top: 2rem;
}

.offer-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-cloud li {
  font-size: 0.88rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  color: var(--ink-muted);
}

.contact-details strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-details a {
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-soft);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.enquiry-form {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.enquiry-form h2 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.12);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-error {
  color: #b00040;
  font-size: 0.88rem;
  margin: 0.5rem 0 0;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #e8fff4;
  border: 1px solid #9ad4b5;
  border-radius: var(--radius);
  color: #1a5c3a;
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
}

/* Gallery */
.gallery-note {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: block;
  padding: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  width: 100%;
  text-align: left;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.gallery-tile:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.35), var(--shadow-soft);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.04);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 21, 32, 0.72) 0%, transparent 48%);
  pointer-events: none;
}

.gallery-tile span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Lightbox */
.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 12, 18, 0.78);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 56rem);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: rise-in 0.35s var(--ease);
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 3.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: var(--white);
}

.lightbox-caption {
  margin: 0;
  color: #ffe4ec;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--brand);
  color: var(--white);
}

body.lightbox-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #2a1520;
  color: #f7d5e0;
  padding: 3.5rem 0 7.5rem;
  margin-top: 0;
}

.site-footer a {
  color: #ffc2d6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  height: 4.5rem;
  width: auto;
  background: var(--white);
  border-radius: 0.5rem;
  padding: 0.35rem;
  flex-shrink: 0;
}

.footer-brand .brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
}

.footer-brand p {
  color: #e8b8c8;
  font-size: 0.95rem;
  margin: 0;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-meta {
  color: #e8b8c8;
  font-size: 0.92rem;
  margin: 0 0 0.5rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  padding-right: 11rem;
  border-top: 1px solid rgba(255, 194, 214, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #d4a0b4;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
  justify-content: flex-end;
  max-width: calc(100% - 0.5rem);
}

@media (max-width: 820px) {
  .footer-bottom {
    padding-right: 5.5rem;
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

.footer-legal a {
  color: #ffc2d6;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-sep {
  opacity: 0.65;
  color: #d4a0b4;
}

.footer-powered-link {
  font-weight: 600;
}

.legal-prose h2 {
  font-size: 1.45rem;
  margin-top: 1.75rem;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 34rem;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 16px 48px rgba(42, 21, 32, 0.18);
  padding: 1.15rem 1.25rem;
  display: none;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.cookie-banner.is-visible {
  display: flex;
  animation: rise-in 0.45s var(--ease);
}

.cookie-banner h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--brand-dark);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.cookie-banner p a {
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: 100%;
}

.cookie-actions .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

@media (min-width: 640px) {
  .cookie-banner {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    margin-inline: 0;
  }
}

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.15rem 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 245, 247, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
    border-bottom: none !important;
  }

  .hero-panel {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 2rem 1.25rem 2.75rem;
  }
}

/* eKTextAi widgets — on mobile the WhatsApp script caps spacing to 20px,
   so it lands under the webchat launcher. Keep a vertical stack instead. */
a.wa-widget-button {
  z-index: 1000002 !important;
}

@media (max-width: 768px) {
  #cbw-launcher-button {
    right: 16px !important;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  }

  #ek-voice-fab {
    right: 16px !important;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
  }

  a.wa-widget-button {
    right: 16px !important;
    bottom: calc(160px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-panel .eyebrow,
  .hero-panel h1,
  .hero-panel .lede,
  .hero-indicators,
  .hero-panel .cta-row,
  .service-item {
    opacity: 1;
    transform: none;
  }
}
