:root {
  --bg: #fffaf7;
  --paper: #fffdfb;
  --ink: #3e2634;
  --ink-2: #725566;
  --rose: #d178a2;
  --rose-2: #b85783;
  --blush: #f8e9f0;
  --peach: #fae9de;
  --gold: #b58a5f;
  --line: #ead8df;
  --white: #fff;
  --shadow: 0 22px 70px rgba(79, 40, 58, 0.13);
  --shadow-sm: 0 12px 34px rgba(79, 40, 58, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  z-index: 9999;
}
.skip:focus {
  top: 1rem;
}
.topbar {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.topbar a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ===================================
   LARGE LUXURY HEADER
=================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(209, 120, 162, 0.25);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(209, 120, 162, 0.75),
    transparent
  );
}

/* Allow the header to use more screen width */
.site-header .container {
  width: min(1480px, calc(100% - 3rem));
}

/* Main header row */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 190px;
  gap: 2rem;

  transition: min-height 0.3s ease;
}

/* ===================================
   LARGE HORIZONTAL LOGO
=================================== */

.brand-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;

  width: 420px;
  min-width: 420px;
  padding: 0;
}

.brand-logo img {
  display: block;

  width: 100%;
  height: auto;
  max-width: none;

  object-fit: contain;
  object-position: left center;

  transition:
    width 0.3s ease,
    transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.025);
}

/* ===================================
   NAVIGATION
=================================== */

.nav-links {
  display: flex;
  align-items: center;

  margin-left: auto;
  gap: 1.15rem;

  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-links > a:not(.btn) {
  position: relative;
  padding: 0.55rem 0;
}

.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute;

  right: 50%;
  bottom: 0;
  left: 50%;

  height: 2px;
  border-radius: 999px;

  background: var(--rose);

  transition:
    left 0.25s ease,
    right 0.25s ease;
}

.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current='page']::after {
  right: 0;
  left: 0;
}

.nav-links .btn {
  min-height: 54px;
  padding-inline: 1.5rem;

  box-shadow:
    0 12px 28px rgba(209, 120, 162, 0.3),
    0 0 22px rgba(209, 120, 162, 0.12);
}

/* Hide hamburger on desktop */
.menu {
  display: none;
}

/* ===================================
   SHRINK HEADER WHEN SCROLLING
=================================== */

.site-header.scrolled {
  background: rgba(255, 250, 247, 0.99);

  box-shadow: 0 10px 35px rgba(62, 38, 52, 0.11);
}

.site-header.scrolled .nav {
  min-height: 118px;
}

.site-header.scrolled .brand-logo {
  width: 300px;
  min-width: 300px;
}

/* ===================================
   SMALLER DESKTOPS
=================================== */

@media (max-width: 1250px) {
  .site-header .container {
    width: min(1180px, calc(100% - 2rem));
  }

  .nav {
    min-height: 150px;
    gap: 1rem;
  }

  .brand-logo {
    width: 330px;
    min-width: 330px;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.82rem;
  }

  .nav-links .btn {
    padding-inline: 1rem;
  }

  .site-header.scrolled .brand-logo {
    width: 260px;
    min-width: 260px;
  }
}

/* ===================================
   TABLET AND MOBILE MENU
=================================== */

@media (max-width: 980px) {
  .nav {
    min-height: 115px;
  }

  .brand-logo {
    width: 300px;
    min-width: 0;
  }

  .menu {
    display: block;
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    border: 1px solid var(--line);
    border-radius: 50%;

    background: white;
    cursor: pointer;
  }

  .menu span {
    display: block;

    width: 20px;
    height: 2px;
    margin: 4px auto;

    background: var(--ink);
  }

  .nav-links {
    position: fixed;
    inset: 146px 1rem auto 1rem;

    display: none;
    flex-direction: column;
    align-items: stretch;

    margin: 0;
    padding: 1rem;

    background: rgba(255, 253, 251, 0.99);
    border: 1px solid var(--line);
    border-radius: 24px;

    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .site-header.scrolled .nav {
    min-height: 88px;
  }

  .site-header.scrolled .brand-logo {
    width: 220px;
    min-width: 0;
  }

  .site-header.scrolled .nav-links {
    inset: 119px 1rem auto 1rem;
  }
}

/* ===================================
   PHONES
=================================== */

@media (max-width: 600px) {
  .site-header .container {
    width: calc(100% - 1.2rem);
  }

  .nav {
    min-height: 94px;
    gap: 0.75rem;
  }

  .brand-logo {
    width: 235px;
  }

  .nav-links {
    inset: 125px 0.6rem auto 0.6rem;
  }

  .site-header.scrolled .brand-logo {
    width: 190px;
  }

  .site-header.scrolled .nav-links {
    inset: 110px 0.6rem auto 0.6rem;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .brand-logo {
    width: 195px;
  }

  .site-header.scrolled .brand-logo {
    width: 165px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #e7a0be);
  color: white;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(209, 120, 162, 0.28);
  transition: 0.2s ease;
  border: 0;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(209, 120, 162, 0.36);
}
.btn.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.dark {
  background: var(--ink);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose-2);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.06;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.6rem;
}
.lead {
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  color: var(--ink-2);
  max-width: 680px;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 226, 237, 0.96),
      transparent 32%
    ),
    linear-gradient(120deg, #fffdfb 0%, #fff6fa 52%, #f7e6ee 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(244, 194, 216, 0.28);
  right: -180px;
  top: -190px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 4.5rem;
  align-items: center;
  padding: 5.4rem 0 4.6rem;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.1rem;
}
.micro {
  color: var(--ink-2);
  font-size: 0.9rem;
}
.hero-visual {
  position: relative;
  min-height: 650px;
}
.hero-visual .main-photo {
  position: absolute;
  inset: 0 0 0 8%;
  width: 92%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 220px 220px 38px 38px;
  box-shadow: var(--shadow);
}
.hero-visual .floating-card {
  position: absolute;
  left: -5%;
  bottom: 34px;
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-visual .floating-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.hero-visual .seal {
  position: absolute;
  right: -10px;
  top: 36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--ink);
  color: white;
  border: 8px solid var(--bg);
  font-family: var(--serif);
  font-size: 1rem;
  transform: rotate(7deg);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-block: 1px solid var(--line);
}
.trust-strip div {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 800;
}
.trust-strip div:last-child {
  border-right: 0;
}
.section {
  padding: 6.5rem 0;
}
.section.soft {
  background: var(--blush);
}
.section.peach {
  background: var(--peach);
}
.section.dark {
  background: var(--ink);
  color: white;
}
.section.dark .card h3 {
  color: var(--ink);
}

.section.dark .card p {
  color: var(--ink-2);
}
.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head p {
  color: var(--ink-2);
}
.dark .section-head p {
  color: #eadce4;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.tag {
  display: inline-flex;
  width: max-content;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-2);
  font-size: 0.76rem;
  font-weight: 900;
}
.price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--rose-2);
  margin-top: auto;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.photo-stack {
  position: relative;
  min-height: 620px;
}
.photo-stack .one {
  position: absolute;
  inset: 0 16% 0 0;
  width: 76%;
  height: 100%;
  object-fit: cover;
  border-radius: 180px 180px 30px 30px;
  box-shadow: var(--shadow);
}
.photo-stack .two {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 46%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-sm);
}
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d77fa3;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.band {
  padding: 4rem;
  border-radius: 42px;
  background: linear-gradient(135deg, #432a39, #874b68);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.band p {
  color: #f2e6ec;
}
.page-hero {
  padding: 6.2rem 0 4.4rem;
  background: linear-gradient(135deg, #fffafc, #f7e7ef);
}
.page-hero h1 {
  font-size: clamp(3.3rem, 7vw, 5.9rem);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th,
.price-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  background: var(--blush);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 900;
  color: var(--rose-2);
  white-space: nowrap;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.gallery .a {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery .b {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery .c {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery .d,
.gallery .e,
.gallery .f {
  grid-column: span 4;
  grid-row: span 4;
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.3rem;
}
.faq details + details {
  margin-top: 0.85rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.contact-list {
  display: grid;
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blush);
}
.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 560px;
}
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}
.site-footer {
  background: #281b23;
  color: white;
  padding: 4.5rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 3rem;
}
.site-footer p,
.site-footer a {
  color: #e9dce3;
}
.footer-links {
  display: grid;
  gap: 0.55rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: #d5c4ce;
}
.legal {
  max-width: 860px;
}
.legal h2 {
  font-size: 2rem;
  margin-top: 2.4rem;
}
.notice {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--blush);
  border: 1px solid var(--line);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .menu {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 117px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 650px;
    margin-inline: auto;
    width: 100%;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }
  .topbar {
    font-size: 0.75rem;
  }
  .hero-grid {
    padding: 3rem 0;
    gap: 2.7rem;
  }
  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-visual .main-photo {
    inset: 0 0 0 0;
    width: 100%;
    border-radius: 140px 140px 28px 28px;
  }
  .hero-visual .floating-card {
    left: 10px;
    bottom: 18px;
    width: 210px;
  }
  .hero-visual .seal {
    width: 112px;
    height: 112px;
    right: 0;
  }
  .section.dark .card * {
    color: inherit;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip div:nth-child(2) {
    border-right: 0;
  }
  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 4.5rem 0;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    min-height: 500px;
  }
  .photo-stack .one {
    width: 84%;
  }
  .photo-stack .two {
    height: 225px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 235px;
  }
  .gallery .a,
  .gallery .b,
  .gallery .c,
  .gallery .d,
  .gallery .e,
  .gallery .f {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery .a {
    grid-column: span 2;
  }
  .band {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .map-card,
  .contact-map {
    min-height: 430px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* =========================================
   WHY CLIENTS CHOOSE US
   ========================================= */

.section.dark .card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 45px rgba(20, 8, 15, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.section.dark .card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(20, 8, 15, 0.3);
}

.section.dark .card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 1.8rem;
}

.section.dark .card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--ink-2);
}

.section.dark .card::before {
  content: '';
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-2);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.section.dark .card:nth-child(1)::before {
  content: '✦';
}

.section.dark .card:nth-child(2)::before {
  content: '◷';
}

.section.dark .card:nth-child(3)::before {
  content: '✓';
}

.section.dark .card::after {
  content: '';
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(248, 233, 240, 0.75);
}

/* ===================================
   PREP & AFTERCARE CARDS
=================================== */

.prep-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff7fa 100%);
  border: 1px solid #efd6e1;
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 18px 45px rgba(60, 25, 40, 0.08);
  transition: 0.35s;
}

.prep-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(60, 25, 40, 0.15);
}

.prep-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(236, 190, 214, 0.18);
}
.prep-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fdebf2;
  font-size: 2rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tip-box {
  margin-top: 35px;
  background: #fff;
  border-left: 5px solid #d77fa3;
  border-radius: 18px;
  padding: 20px;
}
.tip-box strong {
  color: #b04f78;
  display: block;
  margin-bottom: 10px;
}
/* Keep the bride's head visible in the main gallery image */
.gallery .a {
  object-position: center 18%;
}

/* =========================================
   2026 PREMIUM HOMEPAGE UPGRADE
========================================= */
.home-premium {
  overflow-x: hidden;
}
.lux-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #fffdfa 0%, #fff4f7 48%, #f5dce8 100%);
}
.lux-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0.5;
}
.lux-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.lux-orb-one {
  width: 34rem;
  height: 34rem;
  left: -13rem;
  top: -15rem;
  background: rgba(255, 219, 232, 0.6);
}
.lux-orb-two {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  bottom: -14rem;
  background: rgba(181, 138, 95, 0.13);
}
.lux-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 5rem;
  align-items: center;
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}
.lux-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.35rem);
}
.lux-hero-copy .lead {
  max-width: 650px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 750;
}
.hero-proof span::before {
  content: '✦';
  color: var(--rose);
  margin-right: 0.45rem;
}
.btn-glow {
  box-shadow:
    0 16px 40px rgba(209, 120, 162, 0.38),
    0 0 0 0 rgba(209, 120, 162, 0.28);
  animation: softPulse 3s infinite;
}
@keyframes softPulse {
  0%,
  100% {
    box-shadow:
      0 16px 40px rgba(209, 120, 162, 0.34),
      0 0 0 0 rgba(209, 120, 162, 0.22);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(209, 120, 162, 0.45),
      0 0 0 10px rgba(209, 120, 162, 0);
  }
}
.lux-hero-media {
  position: relative;
  min-height: 620px;
}
 .hero-visual .seal {
    width: 112px;
    height: 112px;
    right: 0;
  }
  .hero-visual .seal {
  position: absolute;
  right: -10px;
  top: 36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--ink);
  color: white;
  border: 8px solid var(--bg);
  font-family: var(--serif);
  font-size: 1rem;
  transform: rotate(7deg);
}
.arch-image {
  position: absolute;
  inset: 0 3rem 0 0;
  overflow: hidden;
  border-radius: 260px 260px 34px 34px;
  box-shadow: 0 35px 90px rgba(77, 38, 56, 0.22);
}
.arch-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 24, 35, 0.26));
}
.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 253, 251, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  padding: 1rem 1.15rem;
}
.hero-note small,
.hero-note strong {
  display: block;
}
.hero-note small {
  color: var(--ink-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.hero-note-top {
  right: 0;
  top: 12%;
}
.hero-note-bottom {
  left: -1.5rem;
  bottom: 9%;
}
.sparkle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-2);
  font-size: 1.2rem;
}
.experience-bar {
  background: #33212c;
  color: white;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.experience-grid > div {
  padding: 1.45rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.experience-grid > div:last-child {
  border-right: 0;
}
.experience-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: #f2bdd3;
}
.experience-grid span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #eadce4;
}
.split-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 3rem;
  align-items: end;
  max-width: none;
}
.split-head > p {
  color: var(--ink-2);
  margin-bottom: 0.6rem;
}
.premium-service-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 1.25rem;
}
.premium-service-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.premium-service-card.feature {
  min-height: 560px;
}
.premium-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.premium-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(33, 18, 27, 0.86) 100%
  );
  z-index: 1;
}
.premium-service-card:hover img {
  transform: scale(1.055);
}
.service-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  color: white;
  padding: 2rem;
}
.service-overlay h3 {
  font-size: 2.1rem;
  margin: 0.85rem 0 0.5rem;
}
.service-overlay p {
  color: #f4e8ee;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}
.service-meta strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: #ffd7e8;
}
.service-meta a {
  font-weight: 800;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-collage {
  position: relative;
  min-height: 650px;
}
.story-main {
  width: 82%;
  height: 610px;
  object-fit: cover;
  border-radius: 180px 180px 32px 32px;
  box-shadow: var(--shadow);
}
.story-detail {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 46%;
  height: 260px;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-sm);
}
.story-badge {
  position: absolute;
  top: 8%;
  right: 2%;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 800;
}
.story-badge span {
  color: var(--rose);
  margin-right: 0.4rem;
}
.benefit-list {
  display: grid;
  gap: 1.15rem;
  margin: 2rem 0;
}
.benefit-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.benefit-list span {
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-2);
  font-weight: 900;
}
.benefit-list h3 {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
}
.benefit-list p {
  margin: 0;
  color: var(--ink-2);
}
.text-link {
  display: inline-flex;
  font-weight: 900;
  color: var(--rose-2);
  text-underline-offset: 0.25em;
}
.glow-process {
  background: #33212c;
  color: white;
}
.glow-process .section-head p {
  color: #eadce4;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.process-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 2.2rem;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.process-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  right: -65px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(209, 120, 162, 0.18);
}
.process-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f4bfd5;
  color: #4a2938;
  font-weight: 950;
  margin-bottom: 1.5rem;
}
.process-card h3 {
  font-size: 2rem;
}
.process-card p {
  color: #eadce4;
}
.bridal-feature {
  background: linear-gradient(135deg, #fffafa, #f8e8ef);
}
.bridal-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bridal-image-wrap {
  position: relative;
}
.bridal-image-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 260px 260px 34px 34px;
  box-shadow: var(--shadow);
}
.bridal-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 850;
}
.mini-timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 2.3rem;
}
.mini-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--rose);
}
.mini-timeline div {
  position: relative;
  padding-left: 2.2rem;
}
.mini-timeline div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 15px;
  height: 15px;
  border: 4px solid var(--bg);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px var(--rose);
}
.mini-timeline span,
.mini-timeline strong {
  display: block;
}
.mini-timeline span {
  color: var(--rose-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-timeline strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}
.home-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 115px;
  gap: 1rem;
}
.gallery-tile {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: none;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-tile.tall {
  grid-column: span 5;
  grid-row: span 5;
}
.gallery-tile.wide {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-tile::after {
  content: 'View';
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  opacity: 0;
  transform: translateY(8px);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.72rem;
  transition: 0.25s ease;
}
.gallery-tile:hover img {
  transform: scale(1.05);
}
.gallery-tile:hover::after {
  opacity: 1;
  transform: none;
}
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.faq-preview-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.faq-preview .faq details {
  box-shadow: var(--shadow-sm);
}
.final-cta-section {
  padding-top: 5rem;
}
.lux-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4.5rem;
  border-radius: 42px;
  color: white;
  background: linear-gradient(135deg, #3f2735, #8b4d6a);
  box-shadow: 0 30px 80px rgba(65, 34, 49, 0.24);
}
.lux-cta::after {
  content: '';
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.lux-cta h2 {
  max-width: 760px;
}
.lux-cta p {
  color: #f1e4eb;
}
.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  min-width: 245px;
  text-align: center;
}
.cta-phone {
  font-weight: 900;
  color: white;
}
.premium-footer .footer-logo {
  display: block;
  width: min(330px, 100%);
  margin-bottom: 1rem;
}
.premium-footer .footer-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(20, 12, 17, 0.9);
  backdrop-filter: blur(10px);
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 980px) {
  .lux-hero-grid,
  .story-grid,
  .bridal-feature-grid,
  .faq-preview-grid {
    grid-template-columns: 1fr;
  }
  .lux-hero-grid {
    gap: 2.5rem;
    padding: 4rem 0;
  }
  .lux-hero-media {
    min-height: 600px;
    max-width: 680px;
    width: 100%;
    margin: auto;
  }
  .premium-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .premium-service-card.feature {
    grid-column: 1/-1;
  }
  .split-head {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-grid > div:nth-child(2) {
    border-right: 0;
  }
  .experience-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .story-grid,
  .bridal-feature-grid,
  .faq-preview-grid {
    gap: 3rem;
  }
  .lux-cta {
    padding: 3rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .lux-hero-grid {
    min-height: 0;
    padding: 3.2rem 0;
  }
  .lux-hero-copy h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-proof {
    display: grid;
  }
  .lux-hero-media {
    min-height: 500px;
  }
  .arch-image {
    inset: 0;
    border-radius: 170px 170px 28px 28px;
  }
  .hero-note-top {
    top: 7%;
    right: -0.2rem;
  }
  .hero-note-bottom {
    left: 0.5rem;
    bottom: 5%;
  }
  .experience-grid strong {
    font-size: 1.25rem;
  }
  .premium-service-grid {
    grid-template-columns: 1fr;
  }
  .premium-service-card,
  .premium-service-card.feature {
    min-height: 470px;
    grid-column: auto;
  }
  .story-collage {
    min-height: 520px;
  }
  .story-main {
    width: 88%;
    height: 500px;
  }
  .story-detail {
    height: 190px;
  }
  .bridal-image-wrap img {
    height: 560px;
    border-radius: 180px 180px 28px 28px;
  }
  .home-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }
  .gallery-tile,
  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-tile.tall {
    grid-row: span 2;
  }
  .gallery-tile.wide {
    grid-column: span 2;
  }
  .lux-cta {
    padding: 2.2rem;
    border-radius: 30px;
  }
}
@media (max-width: 430px) {
  .hero-note {
    padding: 0.75rem 0.85rem;
  }
  .hero-note-top {
    display: none;
  }
  .experience-grid span {
    font-size: 0.68rem;
  }
  .home-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .gallery-tile,
  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-column: 1;
    grid-row: span 1;
  }
}

/* Phase 2: premium services page */
.services-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(224, 161, 187, 0.3),
      transparent 30%
    ),
    linear-gradient(135deg, #fffafc 0%, #f7e6ee 55%, #efe0e8 100%);
}
.services-hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -200px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(126, 67, 94, 0.16);
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.14),
    0 0 0 160px rgba(255, 255, 255, 0.08);
}
.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 5rem;
  min-height: 760px;
  padding: 5rem 0;
}
.services-hero-copy h1 {
  max-width: 700px;
  font-size: clamp(4.2rem, 7.3vw, 7.3rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.services-hero-copy h1 em {
  color: var(--rose-2);
  font-weight: inherit;
}
.services-hero-copy .lead {
  max-width: 620px;
}
.services-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(76, 47, 62, 0.16);
}
.services-hero-proof strong,
.services-hero-proof span {
  display: block;
}
.services-hero-proof strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--rose-2);
}
.services-hero-proof span {
  margin-top: 0.15rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.services-hero-media {
  position: relative;
  min-height: 610px;
}
.services-main-image {
  position: absolute;
  inset: 0 7% 0 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 280px 280px 34px 34px;
  box-shadow: var(--shadow);
}
.services-detail-image {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 39%;
  height: 265px;
  object-fit: cover;
  border: 9px solid #f8edf2;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.services-float-card {
  position: absolute;
  left: -7%;
  bottom: 9%;
  display: grid;
  min-width: 170px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.services-float-card span,
.services-float-card small {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-2);
}
.services-float-card strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--rose-2);
}
.services-intro {
  padding-top: 8rem;
}
.service-showcase {
  display: grid;
  gap: 1.6rem;
}
.service-showcase-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.service-showcase-card.reverse .service-showcase-image {
  order: 2;
}
.service-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.service-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.service-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.service-title-row h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.service-title-row strong {
  flex: none;
  font-family: var(--serif);
  font-size: 2.45rem;
  color: var(--rose-2);
}
.service-details {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 2rem;
  padding: 0;
  list-style: none;
}
.service-details li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink-2);
}
.service-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose-2);
  font-weight: 950;
}
.service-showcase-content .btn {
  align-self: flex-start;
}
.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-mini-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-mini-card.accent {
  background: #3c2732;
  color: white;
  border-color: #3c2732;
}
.service-mini-card.accent p,
.service-mini-card.accent span {
  color: #eadce4;
}
.service-mini-card.accent .service-kicker {
  color: #542c40;
  background: #f2bfd5;
}
.service-mini-card h3 {
  font-size: 2rem;
}
.service-mini-card p {
  color: var(--ink-2);
}
.mini-card-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.service-mini-card.accent .mini-card-bottom {
  border-color: rgba(255, 255, 255, 0.14);
}
.mini-card-bottom strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--rose-2);
}
.service-mini-card.accent .mini-card-bottom strong {
  color: #f3c8da;
}
.mini-card-bottom a {
  font-weight: 900;
  color: var(--rose-2);
}
.package-section {
  background: linear-gradient(180deg, #fbf4f7, #f4e3eb);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.package-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(115, 68, 90, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}
.package-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -85px;
  top: -85px;
  border-radius: 50%;
  background: rgba(214, 140, 174, 0.11);
}
.package-number {
  display: block;
  font-family: var(--serif);
  font-size: 4.7rem;
  line-height: 1;
  color: rgba(128, 73, 99, 0.16);
}
.package-card h3 {
  margin: 0.8rem 0;
  font-size: 1.85rem;
}
.package-card p {
  color: var(--ink-2);
}
.package-card > strong {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--rose-2);
}
.package-card a {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--rose-2);
}
.package-card.best-value {
  transform: translateY(-12px);
  border-color: rgba(170, 91, 126, 0.35);
  box-shadow: 0 24px 65px rgba(89, 46, 65, 0.16);
}
.package-card.bridal-package {
  background: #3a2631;
  color: white;
}
.package-card.bridal-package p {
  color: #eadce4;
}
.package-card.bridal-package .package-number {
  color: rgba(255, 255, 255, 0.13);
}
.package-card.bridal-package > strong,
.package-card.bridal-package a {
  color: #f4c4d8;
}
.group-section {
  background: #33212c;
  color: white;
}
.group-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5rem;
}
.group-image {
  position: relative;
}
.group-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 250px 250px 32px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.group-image-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.group-image-note strong,
.group-image-note span {
  display: block;
}
.group-image-note span {
  font-size: 0.75rem;
  color: var(--ink-2);
}
.group-content .lead,
.group-content .microcopy {
  color: #eadce4;
}
.group-price-list {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0;
}
.group-price-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.group-price-list span {
  font-weight: 850;
}
.group-price-list strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: #f2bdd3;
}
.group-price-list small {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: #eadce4;
}
.retail-section {
  background: #fffafc;
}
.retail-grid {
  display: grid;
  grid-template-columns: 0.85fr 0.72fr 1fr;
  align-items: center;
  gap: 3rem;
}
.retail-copy p {
  color: var(--ink-2);
}
.retail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 190px 190px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.retail-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.retail-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.12rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.retail-list > div:last-child {
  border-bottom: 0;
}
.retail-list span {
  font-weight: 800;
}
.retail-list strong {
  font-family: var(--serif);
  color: var(--rose-2);
}
.service-guide-section {
  background: #f8eef2;
}
.service-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-guide-grid .process-card {
  background: white;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.service-guide-grid .process-card p {
  color: var(--ink-2);
}
.service-guide-grid .process-card h3 {
  font-size: 1.8rem;
}
.service-guide-grid .text-link {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}
@media (max-width: 1050px) {
  .services-hero-grid,
  .group-grid {
    grid-template-columns: 1fr;
  }
  .services-hero-grid {
    gap: 3rem;
  }
  .services-hero-media {
    width: min(720px, 100%);
    min-height: 650px;
    margin: auto;
  }
  .services-float-card {
    left: 0;
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card.best-value {
    transform: none;
  }
  .retail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .retail-copy {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
  .services-hero-grid {
    min-height: 0;
    padding: 3.5rem 0;
  }
  .services-hero-copy h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }
  .services-hero-proof {
    grid-template-columns: 1fr;
  }
  .services-hero-media {
    min-height: 520px;
  }
  .services-main-image {
    width: 88%;
    border-radius: 190px 190px 28px 28px;
  }
  .services-detail-image {
    width: 43%;
    height: 190px;
    border-width: 6px;
  }
  .service-showcase-card,
  .service-showcase-card.reverse {
    grid-template-columns: 1fr;
  }
  .service-showcase-card.reverse .service-showcase-image {
    order: 0;
  }
  .service-showcase-image img {
    min-height: 360px;
    height: 360px;
  }
  .service-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }
  .service-mini-grid,
  .package-grid,
  .service-guide-grid {
    grid-template-columns: 1fr;
  }
  .package-card {
    min-height: 340px;
  }
  .group-image img {
    height: 520px;
    border-radius: 180px 180px 28px 28px;
  }
  .retail-grid {
    grid-template-columns: 1fr;
  }
  .retail-copy {
    grid-column: auto;
  }
  .retail-image img {
    height: 470px;
  }
}
@media (max-width: 430px) {
  .services-hero-media {
    min-height: 440px;
  }
  .services-detail-image {
    display: none;
  }
  .services-main-image {
    inset: 0;
    width: 100%;
  }
  .services-float-card {
    left: 0.7rem;
    bottom: 0.7rem;
  }
  .service-showcase-content {
    padding: 1.6rem;
  }
  .group-image img {
    height: 440px;
  }
}

/* Phase 3: premium bridal landing page */
.bridal-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffafc 0%, #f7e8ef 55%, #ead1dd 100%);
}
.bridal-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.72), transparent);
  pointer-events: none;
}
.bridal-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 5rem;
  min-height: 780px;
  padding: 5.5rem 0 6.5rem;
}
.bridal-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.bridal-hero-copy .lead {
  max-width: 660px;
  color: var(--ink-2);
}
.bridal-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 2rem;
  color: #6d4859;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bridal-hero-points span::before {
  content: '✦';
  margin-right: 0.48rem;
  color: #b46f8e;
}
.bridal-hero-media {
  position: relative;
  min-height: 660px;
}
.bridal-main-frame {
  position: absolute;
  inset: 0 2% 0 17%;
  overflow: hidden;
  border-radius: 250px 250px 36px 36px;
  box-shadow: 0 35px 90px rgba(77, 40, 57, 0.2);
}
.bridal-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.bridal-detail-frame {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 36%;
  height: 275px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 120px 120px 28px 28px;
  box-shadow: 0 18px 50px rgba(72, 38, 54, 0.2);
}
.bridal-detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bridal-hero-note {
  position: absolute;
  right: -2%;
  bottom: 30px;
  width: min(315px, 55%);
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.bridal-hero-note strong,
.bridal-hero-note span {
  display: block;
}
.bridal-hero-note strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.bridal-hero-note span {
  margin-top: 0.2rem;
  color: var(--ink-2);
  font-size: 0.76rem;
  line-height: 1.5;
}
.bridal-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.55;
}
.bridal-orb-one {
  width: 420px;
  height: 420px;
  right: -160px;
  top: -120px;
  background: rgba(191, 119, 151, 0.19);
}
.bridal-orb-two {
  width: 280px;
  height: 280px;
  left: -140px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.78);
}
.bridal-intro-section {
  background: #fff;
}
.bridal-intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 5rem;
  align-items: start;
}
.bridal-intro-copy {
  position: sticky;
  top: 150px;
}
.bridal-intro-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}
.bridal-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.bridal-signature span,
.bridal-signature strong {
  display: block;
}
.bridal-signature span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-2);
}
.bridal-signature strong {
  margin-top: 0.45rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.bridal-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bridal-benefit-grid article {
  min-height: 285px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(150deg, #fff, #fcf4f7);
  box-shadow: var(--shadow-sm);
}
.bridal-benefit-grid article:nth-child(2),
.bridal-benefit-grid article:nth-child(3) {
  transform: translateY(28px);
}
.bridal-benefit-grid article > span {
  font-family: var(--serif);
  font-size: 3.6rem;
  color: rgba(151, 83, 113, 0.18);
}
.bridal-benefit-grid h3 {
  font-size: 1.6rem;
}
.bridal-benefit-grid p {
  color: var(--ink-2);
}
.bridal-package-section {
  background: #34222d;
  color: #fff;
}
.bridal-package-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.bridal-package-card {
  padding: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.2);
}
.bridal-package-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #efbdd2;
}
.bridal-price {
  margin: 0.4rem 0;
  font-family: var(--serif);
  font-size: 6.3rem;
  line-height: 1;
  color: #fff;
}
.bridal-price sup {
  font-size: 2rem;
  vertical-align: top;
}
.bridal-price-note {
  max-width: 470px;
  color: #eadce4;
}
.bridal-package-list {
  margin: 1.8rem 0;
}
.bridal-package-list li {
  color: #f4eaf0;
}
.bridal-package-card small {
  display: block;
  margin-top: 1rem;
  color: #cdbac4;
}
.bridal-package-image {
  position: relative;
}
.bridal-package-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 260px 260px 36px 36px;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.28);
}
.bridal-package-quote {
  position: absolute;
  left: -55px;
  bottom: 42px;
  max-width: 390px;
  padding: 1.5rem 1.7rem;
  border-radius: 26px;
  background: #fff;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
  box-shadow: var(--shadow);
}
.bridal-timeline-section {
  background: linear-gradient(180deg, #fbf3f7, #fff);
}
.bridal-timeline {
  position: relative;
  max-width: 950px;
  margin: 4rem auto 0;
}
.bridal-timeline::before {
  content: '';
  position: absolute;
  left: 126px;
  top: 15px;
  bottom: 15px;
  width: 1px;
  background: linear-gradient(#c18aa3, #ead0dc);
}
.bridal-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 3.2rem;
  align-items: start;
  padding: 0 0 3.2rem;
}
.bridal-timeline article:last-child {
  padding-bottom: 0;
}
.timeline-marker {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(156, 91, 120, 0.2);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--rose-2);
  text-align: center;
}
.timeline-marker span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bridal-timeline h3 {
  margin: 0.5rem 0;
  font-size: 2rem;
}
.bridal-timeline p {
  max-width: 650px;
  color: var(--ink-2);
}
.bridal-party-section {
  background: #fff;
}
.bridal-party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.bridal-party-media {
  position: relative;
}
.bridal-party-media img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 40px 240px 40px 40px;
  box-shadow: var(--shadow);
}
.bridal-party-badge {
  position: absolute;
  right: -30px;
  bottom: 32px;
  max-width: 300px;
  padding: 1.3rem 1.45rem;
  border-radius: 24px;
  background: #3a2631;
  color: #fff;
  box-shadow: var(--shadow);
}
.bridal-party-badge strong,
.bridal-party-badge span {
  display: block;
}
.bridal-party-badge strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.bridal-party-badge span {
  margin-top: 0.2rem;
  color: #e8d7df;
  font-size: 0.75rem;
}
.bridal-party-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}
.bridal-party-list {
  margin: 2rem 0;
}
.bridal-party-list div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.bridal-party-list strong,
.bridal-party-list span {
  display: block;
}
.bridal-party-list span {
  margin-top: 0.25rem;
  color: var(--ink-2);
}
.bridal-gallery-section {
  background: #f7ebf1;
}
.bridal-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 310px 310px;
  gap: 1rem;
}
.bridal-editorial-grid .lightbox-trigger {
  min-height: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: none;
  cursor: zoom-in;
}
.bridal-editorial-grid .tall {
  grid-row: 1/3;
}
.bridal-editorial-grid .wide {
  grid-column: 2/4;
}
.bridal-editorial-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.bridal-editorial-grid button:hover img {
  transform: scale(1.04);
}
.bridal-faq-section {
  background: #fff;
}
.bridal-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.bridal-faq-grid h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}
.bridal-faq-grid .faq-list details {
  background: #fffafc;
}
.bridal-final-cta {
  padding-top: 0;
  background: #fff;
}
.bridal-cta-card {
  padding: 5rem 2rem;
  border-radius: 42px;
  background: linear-gradient(135deg, #3b2632, #6d4054);
  color: #fff;
  text-align: center;
  box-shadow: 0 35px 80px rgba(63, 34, 47, 0.2);
}
.bridal-cta-card h2 {
  max-width: 900px;
  margin: 0.5rem auto;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
}
.bridal-cta-card p {
  color: #eadce4;
}
.bridal-cta-card .hero-actions {
  justify-content: center;
}
.bridal-cta-card .btn.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
@media (max-width: 1050px) {
  .bridal-hero-grid,
  .bridal-intro-grid,
  .bridal-package-grid,
  .bridal-party-grid,
  .bridal-faq-grid {
    grid-template-columns: 1fr;
  }
  .bridal-hero-grid {
    gap: 3rem;
  }
  .bridal-hero-media {
    width: min(760px, 100%);
    margin: auto;
  }
  .bridal-intro-copy {
    position: static;
  }
  .bridal-benefit-grid article:nth-child(2),
  .bridal-benefit-grid article:nth-child(3) {
    transform: none;
  }
  .bridal-package-image {
    width: min(720px, 100%);
    margin: auto;
  }
  .bridal-package-quote {
    left: 20px;
  }
  .bridal-party-media {
    width: min(720px, 100%);
    margin: auto;
  }
  .bridal-party-badge {
    right: 20px;
  }
}
@media (max-width: 760px) {
  .bridal-hero-grid {
    min-height: 0;
    padding: 3.5rem 0 5rem;
  }
  .bridal-hero-copy h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }
  .bridal-hero-media {
    min-height: 520px;
  }
  .bridal-main-frame {
    inset: 0 0 0 8%;
    border-radius: 190px 190px 30px 30px;
  }
  .bridal-detail-frame {
    width: 38%;
    height: 190px;
    border-width: 6px;
  }
  .bridal-hero-note {
    right: 0;
    bottom: 14px;
  }
  .bridal-benefit-grid {
    grid-template-columns: 1fr;
  }
  .bridal-benefit-grid article {
    min-height: 230px;
  }
  .bridal-package-card {
    padding: 2rem;
  }
  .bridal-price {
    font-size: 5rem;
  }
  .bridal-package-image img {
    height: 540px;
    border-radius: 190px 190px 30px 30px;
  }
  .bridal-package-quote {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: none;
  }
  .bridal-timeline::before {
    left: 48px;
  }
  .bridal-timeline article {
    grid-template-columns: 96px 1fr;
    gap: 1.2rem;
  }
  .timeline-marker {
    min-height: 96px;
    font-size: 1.2rem;
  }
  .bridal-party-media img {
    height: 560px;
    border-radius: 30px 160px 30px 30px;
  }
  .bridal-editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 220px 300px;
  }
  .bridal-editorial-grid .tall {
    grid-column: 1/3;
    grid-row: auto;
  }
  .bridal-editorial-grid .wide {
    grid-column: 1/3;
  }
  .bridal-cta-card {
    padding: 4rem 1.3rem;
  }
}
@media (max-width: 430px) {
  .bridal-hero-media {
    min-height: 440px;
  }
  .bridal-detail-frame {
    display: none;
  }
  .bridal-main-frame {
    inset: 0;
  }
  .bridal-hero-note {
    width: 88%;
    right: 6%;
  }
  .bridal-package-image img {
    height: 470px;
  }
  .bridal-party-media img {
    height: 470px;
  }
  .bridal-party-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .bridal-timeline::before {
    display: none;
  }
  .bridal-timeline article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .timeline-marker {
    width: 96px;
  }
  .bridal-editorial-grid {
    grid-template-rows: 280px 190px 250px;
  }
}

/* Phase 4: Premium Gallery */
.gallery-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: linear-gradient(135deg, #fffafc 0%, #f7e8ef 52%, #ead0dc 100%);
}
.gallery-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.gallery-hero-copy h1 {
  max-width: 760px;
  margin: 0.25rem 0 1.25rem;
  font-size: clamp(3.4rem, 6.6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.gallery-hero-copy h1 em {
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
}
.gallery-hero-copy .lead {
  max-width: 650px;
}
.gallery-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.gallery-hero-points span {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(91, 52, 72, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery-hero-collage {
  position: relative;
  min-height: 650px;
}
.gallery-hero-main {
  position: absolute;
  inset: 0 10% 2% 5%;
  overflow: hidden;
  margin: 0;
  border-radius: 46% 46% 28px 28px;
  box-shadow: 0 32px 80px rgba(67, 34, 51, 0.22);
}
.gallery-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.gallery-hero-small {
  position: absolute;
  right: -2%;
  bottom: 3%;
  width: 38%;
  height: 42%;
  overflow: hidden;
  margin: 0;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.gallery-hero-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-hero-note {
  position: absolute;
  left: -2%;
  bottom: 9%;
  z-index: 3;
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.gallery-hero-note strong {
  font-family: var(--heading);
  font-size: 1.15rem;
}
.gallery-hero-note span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}
.gallery-glow-one {
  width: 460px;
  height: 460px;
  right: -170px;
  top: -180px;
  background: rgba(190, 111, 145, 0.2);
}
.gallery-glow-two {
  width: 340px;
  height: 340px;
  left: -190px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.85);
}
.gallery-showcase {
  background: #fffdfa;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 auto 2.5rem;
}
.gallery-filter {
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(75, 42, 59, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  transition: 0.22s ease;
}
.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.premium-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 115px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.premium-gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: #eadce3;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.premium-gallery-item.item-tall {
  grid-column: span 5;
  grid-row: span 5;
}
.premium-gallery-item.item-wide {
  grid-column: span 7;
  grid-row: span 3;
}
.premium-gallery-item[hidden] {
  display: none;
}
.premium-gallery-item.is-filtering-out {
  opacity: 0;
  transform: scale(0.96);
}
.premium-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.premium-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(27, 14, 21, 0.74) 100%
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.premium-gallery-item::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(-8px);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}
.premium-gallery-item:hover {
  box-shadow: 0 24px 55px rgba(59, 28, 44, 0.2);
  transform: translateY(-4px);
}
.premium-gallery-item:hover img {
  transform: scale(1.055);
}
.premium-gallery-item:hover::after,
.premium-gallery-item:focus-visible::after {
  opacity: 1;
  transform: none;
}
.gallery-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 2;
  display: grid;
  gap: 0.16rem;
  text-align: left;
  color: #fff;
}
.gallery-caption small {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-caption strong {
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}
.gallery-empty {
  text-align: center;
  font-weight: 800;
}
.gallery-result-story {
  overflow: hidden;
  background: linear-gradient(135deg, #f6e9ef, #fffafc);
}
.result-story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.result-story-copy .check-list {
  margin: 1.6rem 0;
}
.result-story-images {
  position: relative;
  min-height: 620px;
}
.result-story-images figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.result-image-primary {
  position: absolute;
  inset: 0 22% 0 0;
  border-radius: 34px;
}
.result-image-primary img,
.result-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-image-secondary {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 40%;
  height: 48%;
  border: 9px solid #fff;
  border-radius: 26px;
  background: #fff;
}
.result-image-secondary figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gallery-cta-section {
  padding: 0 0 clamp(4rem, 7vw, 7rem);
  background: #fffdfa;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  border-radius: 34px;
  background: linear-gradient(135deg, #44283a, #6f3f59);
  color: #fff;
  box-shadow: 0 24px 70px rgba(63, 33, 49, 0.22);
}
.gallery-cta h2 {
  margin: 0.3rem 0 0.7rem;
  color: #fff;
}
.gallery-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}
.gallery-cta .eyebrow {
  color: #f3c8d9;
}
.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  flex-shrink: 0;
}
.btn.light {
  background: #fff;
  color: #4b2c3d;
}
.btn.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}
.gallery-lightbox {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
}
.gallery-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin: 0;
}
.gallery-lightbox .lightbox-caption {
  max-width: 850px;
  color: #fff;
  text-align: center;
  font-family: var(--heading);
  font-size: 1.1rem;
}
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}
@media (max-width: 980px) {
  .gallery-hero-grid,
  .result-story-grid {
    grid-template-columns: 1fr;
  }
  .gallery-hero-collage {
    min-height: 590px;
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 270px;
  }
  .premium-gallery-item,
  .premium-gallery-item.item-tall,
  .premium-gallery-item.item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .premium-gallery-item.item-wide {
    grid-column: span 2;
  }
  .result-story-images {
    min-height: 560px;
  }
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .gallery-hero {
    padding-top: 3.5rem;
  }
  .gallery-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }
  .gallery-hero-collage {
    min-height: 450px;
  }
  .gallery-hero-main {
    inset: 0 7% 0 0;
    border-radius: 38% 38% 24px 24px;
  }
  .gallery-hero-small {
    right: -1%;
    width: 42%;
    height: 38%;
    border-width: 6px;
  }
  .gallery-hero-note {
    left: 0.5rem;
    bottom: 0.7rem;
  }
  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
  .gallery-filter {
    white-space: nowrap;
  }
  .premium-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }
  .premium-gallery-item,
  .premium-gallery-item.item-tall,
  .premium-gallery-item.item-wide {
    grid-column: 1;
    grid-row: span 1;
  }
  .result-story-images {
    min-height: 440px;
  }
  .result-image-primary {
    right: 14%;
  }
  .result-image-secondary {
    width: 46%;
    height: 43%;
    border-width: 6px;
  }
  .gallery-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .gallery-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 4rem 1rem 1rem;
  }
  .gallery-lightbox .lightbox-nav {
    position: fixed;
    bottom: 1.25rem;
    z-index: 2;
  }
  .gallery-lightbox .lightbox-prev {
    left: 1rem;
  }
  .gallery-lightbox .lightbox-next {
    right: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .premium-gallery-item,
  .premium-gallery-item img,
  .gallery-filter {
    transition: none;
  }
}

/* Phase 5: Premium interactions, FAQ and conversion polish */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.phase5-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(205, 143, 169, 0.28),
      transparent 31%
    ),
    linear-gradient(135deg, #fffafc 0%, #f7e8ef 60%, #ead3de 100%);
}
.faq-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.faq-hero h1 {
  max-width: 790px;
  margin: 0.3rem 0 1.25rem;
  font-size: clamp(3.4rem, 6.5vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.trust-chips span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(91, 52, 72, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(75, 42, 59, 0.06);
}
.faq-hero-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(74, 39, 57, 0.16);
  backdrop-filter: blur(18px);
}
.faq-hero-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(131, 74, 101, 0.09);
  border-radius: 24px;
  pointer-events: none;
}
.faq-hero-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.faq-hero-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d3449, #9d607b);
  color: #fff;
  font-family: var(--heading);
  font-size: 2.5rem;
  box-shadow: 0 16px 32px rgba(82, 43, 62, 0.2);
}
.faq-premium-section {
  background: #fffdfa;
}
.faq-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.faq-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 850px;
  width: 100%;
  margin: auto;
  padding: 0.25rem 0.55rem 0.25rem 1.1rem;
  border: 1px solid rgba(75, 42, 59, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(70, 37, 53, 0.08);
}
.faq-search-wrap > span:not(.sr-only) {
  font-size: 1.5rem;
  color: var(--accent);
}
.faq-search-wrap input {
  width: 100%;
  min-height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
}
.faq-search-wrap input::placeholder {
  color: #8f7d86;
}
.faq-category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.faq-category {
  padding: 0.68rem 1rem;
  border: 1px solid rgba(75, 42, 59, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition: 0.22s ease;
}
.faq-category:hover,
.faq-category.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}
.faq-guide {
  position: sticky;
  top: 145px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(247, 232, 239, 0.82),
    rgba(255, 255, 255, 0.92)
  );
  box-shadow: var(--shadow-sm);
}
.faq-guide h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.faq-guide ol {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0;
  padding: 0;
  list-style: none;
}
.faq-guide li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.8rem;
}
.faq-guide li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(75, 42, 59, 0.08);
}
.faq-guide li p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}
.faq-accordion {
  display: grid;
  gap: 0.8rem;
}
.faq-accordion details {
  overflow: hidden;
  border: 1px solid rgba(75, 42, 59, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(75, 42, 59, 0.055);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.faq-accordion details:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(75, 42, 59, 0.09);
}
.faq-accordion details[open] {
  border-color: rgba(157, 96, 123, 0.42);
  box-shadow: 0 18px 45px rgba(75, 42, 59, 0.1);
}
.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion summary i {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7e8ef;
  transition: 0.25s ease;
}
.faq-accordion summary i::before,
.faq-accordion summary i::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 17px;
  height: 2px;
  background: var(--accent);
  transition: 0.25s ease;
}
.faq-accordion summary i::after {
  transform: rotate(90deg);
}
.faq-accordion details[open] summary i {
  background: var(--accent);
}
.faq-accordion details[open] summary i::before,
.faq-accordion details[open] summary i::after {
  background: #fff;
}
.faq-accordion details[open] summary i::after {
  transform: rotate(0);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.4rem;
  color: var(--muted);
  transition: padding 0.32s ease;
}
.faq-accordion details[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-accordion details[open] .faq-answer > p {
  padding: 0 1.4rem 1.4rem;
}
.faq-no-results {
  padding: 2rem;
  border: 1px dashed rgba(75, 42, 59, 0.25);
  border-radius: 22px;
  text-align: center;
}
.phase5-trust-section,
.phase5-home-stats {
  background: linear-gradient(135deg, #432638, #6a3b54);
  color: #fff;
}
.phase5-home-stats {
  padding: 1.25rem 0;
}
.phase5-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}
.phase5-stats article {
  display: grid;
  gap: 0.25rem;
  place-items: center;
  min-height: 150px;
  padding: 1.3rem;
  text-align: center;
  background: rgba(67, 38, 56, 0.88);
  backdrop-filter: blur(10px);
}
.phase5-stats strong {
  font-family: var(--heading);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
}
.phase5-stats span {
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}
.phase5-trust-section .section-head h2 {
  color: #fff;
}
.phase5-trust-section .eyebrow {
  color: #f0c6d8;
}
.phase5-cta {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, rgba(247, 232, 239, 0.86), #fff);
  box-shadow: 0 24px 65px rgba(66, 35, 51, 0.12);
}
.btn,
.gallery-filter,
.faq-category {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -35%;
  width: 28%;
  height: 340%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  transform: rotate(20deg);
  transition: left 0.65s ease;
}
.btn:hover::after {
  left: 125%;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn:focus-visible,
.faq-category:focus-visible,
.gallery-filter:focus-visible,
.menu:focus-visible {
  outline: 3px solid rgba(188, 113, 145, 0.42);
  outline-offset: 3px;
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.65, 0.27, 1);
}
.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.reveal:nth-child(4) {
  transition-delay: 0.18s;
}
.floating-booking-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(760px, calc(100% - 2rem));
  padding: 0.7rem 0.75rem 0.7rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(60, 33, 48, 0.94);
  box-shadow: 0 18px 55px rgba(35, 18, 27, 0.3);
  color: #fff;
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 30px);
  transition: 0.3s ease;
}
.floating-booking-bar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.floating-booking-copy {
  display: grid;
  gap: 0.05rem;
}
.floating-booking-copy strong {
  font-family: var(--heading);
  font-size: 1.05rem;
}
.floating-booking-copy span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}
.floating-booking-actions {
  display: flex;
  gap: 0.55rem;
}
.floating-booking-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}
.floating-booking-actions .floating-call {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.floating-booking-actions .floating-book {
  background: #fff;
  color: #4b2c3d;
}
@media (max-width: 900px) {
  .faq-hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-guide {
    position: static;
  }
  .phase5-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .faq-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }
  .faq-category-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
  }
  .faq-category {
    white-space: nowrap;
  }
  .phase5-stats {
    grid-template-columns: 1fr 1fr;
  }
  .phase5-stats article {
    min-height: 125px;
  }
  .floating-booking-bar {
    left: 1rem;
    right: 1rem;
    bottom: 0.75rem;
    width: auto;
    padding: 0.55rem;
    border-radius: 20px;
    transform: translateY(30px);
  }
  .floating-booking-bar.show {
    transform: none;
  }
  .floating-booking-copy {
    display: none;
  }
  .floating-booking-actions {
    width: 100%;
  }
  .floating-booking-actions a {
    flex: 1;
  }
  .floating-booking-actions .floating-call {
    display: none;
  }
  .floating-booking-actions .floating-book {
    min-height: 50px;
    font-size: 0.9rem;
  }
  .faq-search-wrap {
    border-radius: 20px;
  }
  .faq-accordion summary {
    padding: 1.1rem;
  }
  .faq-accordion details[open] .faq-answer > p {
    padding: 0 1.1rem 1.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer > p,
  .floating-booking-bar,
  .btn::after,
  .reveal {
    transition: none !important;
  }
  .btn::after {
    display: none;
  }
}

/* Phase 5 supplemental: premium Contact page + Google rating integration */
.contact-premium-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(226, 178, 199, 0.36),
      transparent 32%
    ),
    linear-gradient(135deg, #fffafc, #f7e8ef 58%, #ead3de);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.contact-premium-hero h1 {
  max-width: 720px;
  margin: 0.3rem 0 1.3rem;
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.contact-hero-image {
  position: relative;
  min-height: 560px;
}
.contact-hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(67, 34, 51, 0.22);
}
.contact-image-note {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  display: grid;
  gap: 0.15rem;
  min-width: 240px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  background: rgba(67, 38, 56, 0.9);
  color: #fff;
  box-shadow: 0 18px 50px rgba(36, 18, 28, 0.25);
  backdrop-filter: blur(14px);
}
.contact-image-note span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
}
.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(75, 42, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 34px rgba(75, 42, 59, 0.08);
  color: var(--ink);
  text-decoration: none;
}
.google-rating-pill:hover {
  transform: translateY(-2px);
}
.google-g,
.google-brand-mark {
  display: inline-grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: #4285f4;
}
.google-g {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 16px rgba(50, 50, 80, 0.12);
}
.google-stars {
  color: #f5b301;
  letter-spacing: 0.06em;
}
.google-rating-pill u {
  text-underline-offset: 3px;
}
.contact-info-section {
  background: #fffdfa;
}
.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.contact-detail-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  min-height: 190px;
  padding: 1.4rem;
  border: 1px solid rgba(75, 42, 59, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(75, 42, 59, 0.06);
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}
.contact-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 96, 123, 0.35);
  box-shadow: 0 22px 52px rgba(75, 42, 59, 0.11);
}
.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f7e8ef;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 900;
}
.contact-facebook {
  font-family: Arial, sans-serif;
}
.contact-detail-card small {
  display: block;
  margin: 0.15rem 0 0.5rem;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-detail-card strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.2rem;
}
.contact-detail-card p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.google-brand-mark {
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: #fff;
  font-size: 2rem;
  box-shadow: 0 14px 35px rgba(75, 42, 59, 0.1);
}
.google-review-summary h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}
.google-score-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.3rem 0;
}
.google-score-row > strong {
  font-family: var(--heading);
  font-size: 4rem;
  line-height: 1;
}
.google-score-row .google-stars {
  font-size: 1.35rem;
}
.google-score-row a {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-size: 0.85rem;
}
.review-trust-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(247, 232, 239, 0.86)
  );
  box-shadow: 0 28px 75px rgba(72, 38, 56, 0.14);
}
.review-trust-card::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(205, 143, 169, 0.19);
}
.review-trust-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 900;
}
.review-trust-rating {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0.7rem;
}
.review-trust-rating strong {
  font-family: var(--heading);
  font-size: 4.5rem;
  line-height: 1;
}
.review-trust-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.5rem 0;
}
.review-trust-points span {
  padding: 0.75rem;
  border: 1px solid rgba(75, 42, 59, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 800;
}
.review-trust-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}
.contact-map-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.contact-map-layout .map-card {
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.contact-map-layout .contact-map {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
}
.visit-card {
  padding: clamp(2rem, 4vw, 3.3rem);
  border: 1px solid rgba(75, 42, 59, 0.1);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(75, 42, 59, 0.08);
}
.visit-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.visit-steps {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0;
  padding: 0;
  list-style: none;
}
.visit-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
}
.visit-steps li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7e8ef;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}
.visit-steps p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
}
.contact-final-cta {
  padding-top: 0;
}
@media (max-width: 1000px) {
  .contact-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .contact-hero-grid,
  .google-reviews-grid,
  .contact-map-layout {
    grid-template-columns: 1fr;
  }
  .contact-hero-image,
  .contact-hero-image img {
    min-height: 460px;
    height: 460px;
  }
  .contact-image-note {
    right: 1rem;
  }
  .contact-map-layout .map-card,
  .contact-map-layout .contact-map {
    min-height: 460px;
  }
}
@media (max-width: 600px) {
  .contact-premium-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }
  .contact-detail-card {
    min-height: auto;
  }
  .google-rating-pill {
    align-items: flex-start;
    border-radius: 22px;
  }
  .review-trust-points {
    grid-template-columns: 1fr;
  }
  .google-score-row > strong,
  .review-trust-rating strong {
    font-size: 3.5rem;
  }
  .contact-hero-image,
  .contact-hero-image img {
    min-height: 390px;
    height: 390px;
    border-radius: 28px;
  }
  .contact-image-note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-width: 0;
  }
  .contact-map-layout .map-card,
  .contact-map-layout .contact-map {
    min-height: 380px;
  }
}

/* =========================================================
   PREMIUM PREP & AFTERCARE PAGE
========================================================= */
.prep-page {
  overflow: hidden;
}
.prep-hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 7.5rem) 0;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(209, 120, 162, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #fffaf7 0%, #f8e9f0 56%, #fae9de 100%);
}
.prep-hero:after {
  content: '';
  position: absolute;
  inset: auto -9rem -13rem auto;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(181, 138, 95, 0.25);
  border-radius: 50%;
}
.prep-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.prep-hero-copy h1 {
  max-width: 760px;
  margin: 0.45rem 0 1.35rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.2vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}
.prep-hero-copy .lead {
  max-width: 680px;
}
.prep-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.prep-hero-trust span {
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(181, 138, 95, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.prep-hero-media {
  position: relative;
  min-height: 590px;
}
.prep-hero-media > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 260px 260px 38px 38px;
  box-shadow: 0 34px 90px rgba(79, 40, 58, 0.2);
}
.prep-floating-note {
  position: absolute;
  left: -2.2rem;
  bottom: 2rem;
  display: grid;
  gap: 0.15rem;
  min-width: 240px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.prep-floating-note strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.prep-floating-note span {
  color: var(--ink-2);
  font-size: 0.82rem;
}
.prep-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.prep-intro-grid h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 1.02;
}
.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.prep-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.prep-timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(var(--rose), rgba(209, 120, 162, 0.05));
  opacity: 0.45;
}
.prep-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.65rem;
  border: 1px solid rgba(209, 120, 162, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.prep-step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(184, 87, 131, 0.24);
}
.prep-step-time {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.prep-step h3 {
  margin: 0.1rem 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.prep-step p {
  margin: 0;
  color: var(--ink-2);
}
.prep-dos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.prep-do-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.prep-do-card:after {
  content: '';
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}
.prep-do {
  background: linear-gradient(145deg, #fff, #f8e9f0);
}
.prep-dont {
  background: linear-gradient(145deg, #3e2634, #5b394b);
  color: #fff;
}
.prep-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: rgba(209, 120, 162, 0.14);
  font-size: 2rem;
  font-weight: 300;
}
.prep-dont .prep-card-icon {
  background: rgba(255, 255, 255, 0.12);
}
.prep-do-card h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 2.5rem;
}
.x-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.x-list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
}
.x-list li:before {
  content: '×';
  position: absolute;
  left: 0;
  color: #f3b9d2;
  font-weight: 900;
}
.prep-rinse-section {
  background: linear-gradient(180deg, #3e2634, #2e1c27);
  color: #fff;
}
.prep-rinse-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.prep-rinse-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}
.prep-rinse-grid .lead {
  color: rgba(255, 255, 255, 0.72);
}
.rinse-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.rinse-rules div {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.rinse-rules strong {
  font-family: var(--serif);
  font-size: 1.08rem;
}
.rinse-rules span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}
.prep-product-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.prep-product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.prep-product-cards article {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.prep-product-cards img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.prep-product-cards article div {
  display: grid;
  padding: 1rem 1.1rem;
}
.prep-product-cards span {
  color: var(--rose-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prep-product-cards strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.prep-sun-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(181, 138, 95, 0.24);
  border-radius: 34px;
  background: linear-gradient(135deg, #fffdfb, #fae9de);
  box-shadow: var(--shadow-sm);
}
.prep-sun-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d88d, #dba763);
  font-size: 2.6rem;
  box-shadow: 0 18px 40px rgba(181, 138, 95, 0.25);
}
.prep-sun-note h2 {
  margin: 0.25rem 0 0.35rem;
}
.prep-sun-note p:last-child {
  margin: 0;
  color: var(--ink-2);
}
@media (max-width: 980px) {
  .prep-hero-grid,
  .prep-intro-grid,
  .prep-rinse-grid,
  .prep-product-grid {
    grid-template-columns: 1fr;
  }
  .prep-hero-media {
    min-height: 500px;
  }
  .prep-hero-media > img {
    height: 500px;
  }
  .prep-floating-note {
    left: 1rem;
  }
  .prep-timeline {
    grid-template-columns: 1fr;
  }
  .prep-timeline:before {
    display: none;
  }
  .prep-rinse-image img {
    height: 520px;
  }
  .prep-product-grid > div:first-child {
    max-width: 720px;
  }
}
@media (max-width: 700px) {
  .prep-hero {
    padding: 3rem 0;
  }
  .prep-hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }
  .prep-hero-media,
  .prep-hero-media > img {
    min-height: 430px;
    height: 430px;
  }
  .prep-hero-media > img {
    border-radius: 150px 150px 28px 28px;
  }
  .prep-floating-note {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    min-width: 0;
  }
  .prep-dos-grid,
  .rinse-rules,
  .prep-product-cards {
    grid-template-columns: 1fr;
  }
  .prep-step {
    grid-template-columns: 1fr;
  }
  .prep-rinse-image img {
    height: 420px;
  }
  .prep-sun-note {
    grid-template-columns: 1fr;
  }
  .prep-sun-icon {
    width: 72px;
    height: 72px;
  }
  .prep-hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }
  .prep-hero-trust span {
    text-align: center;
  }
}

/* =========================================================
   PHASE 6 — LAUNCH EDITION
========================================================= */
.shade-finder-section {
  background: linear-gradient(145deg, #3a2430, #241720);
  color: #fff;
}
.shade-finder-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.shade-finder-copy .lead {
  color: rgba(255, 255, 255, 0.72);
}
.shade-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}
.shade-trust span {
  padding: 0.6rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 850;
}
.glow-finder {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.glow-finder fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.glow-finder legend {
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.finder-options label {
  cursor: pointer;
}
.finder-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.finder-options span {
  display: block;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
  transition: 0.2s ease;
}
.finder-options input:checked + span {
  border-color: #efb8cf;
  background: #efb8cf;
  color: #3a2430;
  box-shadow: 0 10px 30px rgba(239, 184, 207, 0.2);
}
.finder-options input:focus-visible + span {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.finder-result {
  padding: 1.15rem;
  border: 1px solid rgba(239, 184, 207, 0.34);
  border-radius: 18px;
  background: rgba(239, 184, 207, 0.12);
}
.finder-result h3 {
  margin: 0 0 0.35rem;
  color: #f6cadc;
}
.finder-result p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.78);
}
.finder-result a {
  display: inline-block;
  margin-top: 0.65rem;
  color: #fff;
  font-weight: 900;
}
.compare-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.result-comparison {
  --compare: 50%;
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: 34px;
  background: #eee;
  box-shadow: 0 30px 80px rgba(67, 33, 50, 0.18);
  isolation: isolate;
}
.result-comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-overlay {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
  z-index: 2;
}
.comparison-overlay img {
  object-position: center;
}
.result-comparison input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.comparison-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: #5c3247;
  font-weight: 900;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
}
.comparison-label {
  position: absolute;
  z-index: 3;
  top: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(32, 18, 26, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}
.comparison-label-left {
  left: 1rem;
}
.comparison-label-right {
  right: 1rem;
}
.review-launch-section {
  padding-top: 0;
}
.review-launch-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(112, 63, 86, 0.12);
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, #f6e5ed);
  box-shadow: var(--shadow-sm);
}
.review-launch-score {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  min-width: 210px;
}
.review-launch-score strong {
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1;
  color: var(--rose-2);
}
.review-launch-score span {
  color: #f2ad31;
  letter-spacing: 0.08em;
}
.review-launch-score .btn {
  margin-top: 0.75rem;
}
.btn:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #b04f7a;
  outline-offset: 4px;
}
.menu:focus-visible {
  outline-color: #fff;
}
@media (max-width: 900px) {
  .shade-finder-grid,
  .compare-layout {
    grid-template-columns: 1fr;
  }
  .result-comparison {
    min-height: 520px;
  }
  .review-launch-card {
    grid-template-columns: 1fr;
  }
  .review-launch-score {
    justify-items: start;
  }
}
@media (max-width: 600px) {
  .finder-options {
    display: grid;
  }
  .result-comparison {
    min-height: 430px;
  }
  .review-launch-score strong {
    font-size: 4rem;
  }
}

/* Phase 6 hero photo/tag correction
   Keep both faces unobstructed while preserving the floating information tags. */
@media (max-width: 700px) {
  .lux-hero-media {
    min-height: 565px;
  }

  /* Reserve a clear strip above the photo for the location tag. */
  .arch-image {
    inset: 64px 0 0;
  }

  .arch-image img {
    object-position: center 18%;
  }

  .hero-note-top {
    top: 0;
    right: 0;
    max-width: 235px;
    padding: 0.8rem 1rem;
  }

  .hero-note-bottom {
    left: 0.5rem;
    bottom: 4%;
  }
}

@media (max-width: 430px) {
  /* Keep the location tag visible, but compact, instead of placing it over a face. */
  .hero-note-top {
    display: flex;
    max-width: 205px;
    padding: 0.7rem 0.8rem;
  }

  .hero-note-top small {
    font-size: 0.62rem;
  }

  .hero-note-top strong {
    font-size: 0.9rem;
  }
}
