/* ============================================================
   ATAH'S ELEGANCE — Shared luxury stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&family=Italiana&display=swap');

/* ----- Design tokens ----- */
:root {
  --cream:        #FAF6F0;
  --champagne:    #F5E6D3;
  --blush:        #E8D5C4;
  --blush-deep:   #D4B89C;
  --gold:         #B8956A;
  --gold-soft:    #C9A87A;
  --charcoal:     #2A2A2A;
  --ink:          #4A3F36;
  --muted:        #8B7F73;
  --white:        #FFFFFF;
  --shadow-sm:    0 4px 20px rgba(74, 63, 54, 0.08);
  --shadow-md:    0 10px 40px rgba(74, 63, 54, 0.12);
  --shadow-lg:    0 20px 60px rgba(74, 63, 54, 0.18);
  --radius-sm:    4px;
  --radius-md:    8px;
  --transition:   400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:        1280px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; letter-spacing: 0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  display: block;
}

/* ----- Layout ----- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section {
  padding: 7rem 0;
  position: relative;
}
section.tight { padding: 4rem 0; }

.home-top-marquee {
  margin-top: 86px;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 0.75rem 2rem;
  border-bottom-color: rgba(184, 149, 106, 0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Italiana', 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 1.7vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.85rem 1.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid var(--charcoal);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  border-color: rgba(255,255,255,0.95);
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ----- Google review trust line ----- */
.review-inline {
  margin: 2.25rem auto 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--muted);
}
.review-inline .score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
}
.review-inline .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}
.review-inline a {
  color: var(--ink);
  border-bottom: 1px solid rgba(184,149,106,0.45);
  padding-bottom: 0.15rem;
}
.review-inline a:hover {
  color: var(--gold);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(42,42,42,0.35) 0%,
              rgba(42,42,42,0.45) 60%,
              rgba(42,42,42,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.92);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ----- Page header (non-home pages) ----- */
.page-header {
  padding: 11rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--champagne) 100%);
  position: relative;
}
.page-header h1 {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

/* ----- Section helpers ----- */
.section-head {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-head h2 {
  font-style: italic;
}
.bg-cream    { background: var(--cream); }
.bg-blush    { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%); }
.bg-champagne{ background: var(--champagne); }
.bg-dark     { background: var(--charcoal); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-dark .eyebrow { color: var(--gold-soft); }

/* ----- Two-column split ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.split-image:hover img { transform: scale(1.05); }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { margin-bottom: 1.25rem; font-size: 1.02rem; }
.split-text .btn { margin-top: 1.5rem; }

/* ----- Cards (services / generic) ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(184, 149, 106, 0.15);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card:hover::before { transform: translateX(0); }
.card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.card h3 {
  margin-bottom: 1rem;
  font-style: italic;
}
.card p { font-size: 0.95rem; color: var(--muted); }
.card-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}
.card-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.1);
  font-size: 0.9rem;
  color: var(--ink);
}
.card-list li:last-child { border: none; }

/* ----- Featured promo (Korean Head Spa style) ----- */
.feature-banner {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.feature-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.6);
}
.feature-banner > * { position: relative; z-index: 2; }
.feature-banner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
}
.feature-banner p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.feature-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold-soft);
  font-weight: 300;
  margin: 1rem 0;
  font-style: italic;
}

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.testimonial {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid rgba(184, 149, 106, 0.15);
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.testimonial .stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

/* ----- Team grid ----- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  background: var(--blush);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  filter: grayscale(30%);
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 149, 106, 0);
  transition: all var(--transition);
}
.team-card:hover .team-photo::after {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.6);
}
.team-card h3 {
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.team-card p {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- Services listing (chips) ----- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.service-list span {
  padding: 0.5rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--blush);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-transform: uppercase;
  transition: all var(--transition);
}
.service-list span:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ----- Package cards (Services page) ----- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.package {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 149, 106, 0.15);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.package:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.package-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 400;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 1rem;
  margin-top: 1rem;
}
.package-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* ----- Filterable services menu ----- */
.service-menu-section {
  padding-top: 6rem;
}
.service-bridal-cta {
  margin-top: 1.75rem;
}
.service-filter {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  padding: 0;
  margin: -1rem auto 3.5rem;
  max-width: 1180px;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  box-shadow: none;
}
.service-filter button {
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border: 1px solid rgba(184, 149, 106, 0.26);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  border-radius: 999px;
}
.service-filter button:hover,
.service-filter button.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(42, 42, 42, 0.12);
  transform: translateY(-1px);
}
.service-menu {
  display: grid;
  gap: 2rem;
}
.service-category {
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.16);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.service-category[hidden] {
  display: none;
}
.service-category-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 149, 106, 0.18);
}
.service-symbol {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.35rem;
  flex: 0 0 auto;
}
.service-category h3 {
  font-style: italic;
}
.service-category .eyebrow {
  margin-bottom: 0.25rem;
}
.service-rows {
  display: grid;
}
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dotted rgba(184, 149, 106, 0.32);
}
.service-row:last-child {
  border-bottom: 0;
}
.service-row span {
  color: var(--ink);
}
.service-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
  max-width: 260px;
  line-height: 1.25;
  text-wrap: balance;
}
.menu-package-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ----- Makeup courses page ----- */
.course-hero {
  position: relative;
  min-height: 92vh;
  padding: 136px 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.course-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,246,240,0.98) 0%, rgba(250,246,240,0.9) 48%, rgba(250,246,240,0.64) 100%),
    url('Photo/backgroundmakeup.png') center / cover no-repeat;
  opacity: 0.95;
}
.course-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.course-hero-copy {
  max-width: 720px;
}
.course-hero h1 {
  font-style: italic;
  max-width: 760px;
  margin-bottom: 1.35rem;
}
.course-hero p {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 2.25rem;
}
.course-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.course-hero-card {
  padding: 0.8rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(184,149,106,0.28);
  box-shadow: var(--shadow-lg);
}
.course-hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.course-section {
  padding-top: 6rem;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.course-pathway {
  max-width: 820px;
  margin: -2rem auto 3rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(184,149,106,0.2);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.course-pathway p {
  margin: 0;
  color: var(--ink);
}
.course-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(184,149,106,0.18);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: all var(--transition);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,149,106,0.45);
}
.course-card-top {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(184,149,106,0.18);
  margin-bottom: 1.25rem;
}
.course-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(184,149,106,0.36);
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.course-card h3 {
  font-style: italic;
  margin-bottom: 1rem;
}
.course-price {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
}
.course-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.course-facts span {
  padding: 0.45rem 0.75rem;
  background: var(--cream);
  border: 1px solid rgba(184,149,106,0.14);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.course-card p {
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.course-list {
  list-style: none;
  margin: 0 0 1.75rem;
}
.course-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px dotted rgba(184,149,106,0.22);
  color: var(--muted);
  font-size: 0.92rem;
}
.course-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.course-card .btn {
  margin-top: auto;
  text-align: center;
}
.course-cta {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 6rem 0;
}
.course-cta h2 {
  color: var(--cream);
  font-style: italic;
  margin: 0 auto 2rem;
  max-width: 760px;
}

/* ----- Bridal pricing tables (Events page) ----- */
.pricing-block {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-top: 2px solid var(--gold);
  margin-bottom: 2rem;
  transition: all var(--transition);
}
.pricing-block:hover { box-shadow: var(--shadow-md); }
.pricing-block h3 {
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.pricing-block .subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px dotted rgba(184, 149, 106, 0.3);
  gap: 2rem;
}
.pricing-row:last-child { border: none; }
.pricing-row .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.pricing-row .note {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.25rem;
}
.pricing-row .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}
.pricing-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 149, 106, 0.18);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.bridal-lookbook {
  position: relative;
  max-width: 1240px;
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 1rem;
}
.bridal-lookbook-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y;
}
.bridal-lookbook-stage::before {
  content: "";
  position: absolute;
  width: min(780px, 76vw);
  height: 115px;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(78, 57, 43, 0.18), rgba(78, 57, 43, 0));
  filter: blur(20px);
  opacity: 0.75;
}
.bridal-book {
  position: relative;
  width: 100%;
  height: 540px;
}
.bridal-book::before {
  display: none;
}
.bridal-book-page {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(31%, 360px);
  height: 470px;
  padding: 0.65rem;
  border: 1px solid rgba(184, 149, 106, 0.24);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 24px 54px rgba(42, 42, 42, 0.14);
  cursor: pointer;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), opacity 320ms ease, filter 320ms ease, box-shadow 320ms ease;
  overflow: hidden;
}
.bridal-book-page::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%);
  mix-blend-mode: soft-light;
}
.bridal-book-page img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(0.98);
  user-select: none;
  -webkit-user-drag: none;
}
.bridal-book-page.active {
  z-index: 4;
  opacity: 1;
  filter: none;
  width: min(38%, 430px);
  height: 520px;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 32px 72px rgba(42, 42, 42, 0.18);
}
.bridal-book-page.prev {
  z-index: 3;
  opacity: 0.78;
  filter: saturate(0.9) brightness(0.95);
  transform: translate(calc(-50% - min(35vw, 380px)), -50%) scale(0.9);
}
.bridal-book-page.next {
  z-index: 2;
  opacity: 0.78;
  filter: saturate(0.9) brightness(0.96);
  transform: translate(calc(-50% + min(35vw, 380px)), -50%) scale(0.9);
}
.bridal-book-page.far {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.75) brightness(0.94);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82);
}
.bridal-lookbook-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(184, 149, 106, 0.38);
  background: rgba(255, 255, 255, 0.62);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  line-height: 1;
  transition: all var(--transition);
  box-shadow: 0 12px 26px rgba(42, 42, 42, 0.08);
}
.bridal-lookbook-arrow:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.bridal-lookbook-dots {
  display: none;
}

.bridal-inquiry-section {
  padding-top: 6rem;
}
.bridal-inquiry-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.bridal-form-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.bridal-question-counter {
  margin-top: 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-style: italic;
  color: var(--charcoal);
}
.bridal-progress-track {
  height: 2px;
  background: rgba(184, 149, 106, 0.22);
  overflow: hidden;
}
.bridal-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width var(--transition);
}
.bridal-form-step {
  display: none;
  min-height: 210px;
}
.bridal-form-step.active {
  display: block;
}
.bridal-form-step label {
  display: block;
  margin-bottom: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-style: italic;
  line-height: 1.08;
  color: var(--charcoal);
}
.bridal-form-step input,
.bridal-form-step select,
.bridal-form-step textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.42);
  background: transparent;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.bridal-form-step textarea {
  min-height: 130px;
  resize: vertical;
}
.bridal-form-step input:focus,
.bridal-form-step select:focus,
.bridal-form-step textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.bridal-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.bridal-form-actions .btn {
  min-width: 150px;
}
.bridal-form-status {
  min-height: 1.2rem;
  margin-top: 1.25rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

/* ----- Shop (luxury boutique) ----- */
.boutique-promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  background: #000;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.boutique-nav {
  top: 34px;
}
.boutique-shop-hero {
  padding-top: 174px;
}
.shop-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.shop-hero h1 {
  font-style: italic;
  color: var(--charcoal);
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
}
.brand-block {
  padding: 5rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(184, 149, 106, 0.15);
  transition: background var(--transition);
}
.brand-block:last-child { border: none; }
.brand-block:hover { background: var(--cream); }
.brand-block .brand-name {
  font-family: 'Italiana', serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.brand-block .brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.brand-block p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.product {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.product-image {
  aspect-ratio: 4/5;
  background: var(--blush);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,213,196,0.5), rgba(212,184,156,0.3));
}
.product-image .product-icon {
  position: relative;
  z-index: 1;
  font-family: 'Italiana', serif;
  font-size: 3rem;
  color: var(--charcoal);
  opacity: 0.4;
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.product:hover .product-image img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,42,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.product:hover .product-overlay { opacity: 1; }
.product-overlay .btn {
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
}
.product-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.product-brand {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 400;
}

.shop-feature {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
}
.shop-feature h2 { color: var(--cream); font-style: italic; margin-bottom: 1rem; }
.shop-feature p { color: rgba(250, 246, 240, 0.8); max-width: 600px; margin: 0 auto 2rem; }

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { padding: 1rem 0; }
.contact-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.contact-row .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
}
.contact-row .value a:hover { color: var(--gold); }
.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  font-size: 0.95rem;
}
.hours-list .day { color: var(--ink); letter-spacing: 0.05em; }
.hours-list .time { color: var(--charcoal); font-weight: 500; }

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-top: 2px solid var(--gold);
}
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(184, 149, 106, 0.4);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-row textarea { min-height: 120px; resize: vertical; }

/* ----- Footer ----- */
.footer {
  background: var(--charcoal);
  color: rgba(250, 246, 240, 0.85);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-family: 'Italiana', serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1;
}
.footer-brand span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-top: 6px;
  font-weight: 300;
}
.footer p { font-size: 0.92rem; line-height: 1.8; color: rgba(250, 246, 240, 0.7); }
.footer h5 {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.85rem; font-size: 0.9rem; }
.footer ul a { color: rgba(250, 246, 240, 0.7); }
.footer ul a:hover { color: var(--gold-soft); }

.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 149, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.5);
  letter-spacing: 0.1em;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}
.footer-legal a {
  color: rgba(250, 246, 240, 0.62);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-soft); }

/* ----- Legal pages ----- */
.legal-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(250, 246, 240, 0.92), rgba(239, 228, 217, 0.9)),
    radial-gradient(circle at top right, rgba(210, 179, 147, 0.25), transparent 36%),
    var(--cream);
}
.legal-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(76%, 980px);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(184, 149, 106, 0.28);
}
.legal-hero h1 {
  margin: 0.75rem auto 1.1rem;
  max-width: 760px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
}
.legal-hero p {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.legal-page { padding: 5rem 0; }
.legal-container {
  max-width: 980px;
}
.legal-card {
  margin-bottom: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(39, 39, 38, 0.06);
}
.legal-card h2 {
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.82;
}
.legal-card p + p,
.legal-card p + ul {
  margin-top: 0.9rem;
}
.legal-card ul {
  margin: 0;
  padding-left: 1.15rem;
}
.legal-card li { margin-bottom: 0.65rem; }
.legal-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ----- Scroll-in animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }
.fade-in.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   v2 — EDITORIAL LAYER (cinematic hero, marquee, sticky scroll,
   stat row, refined product cards, gallery mosaic, animated text)
   ============================================================ */

/* --- Cinematic homepage hero --- */
.cine-hero {
  position: relative;
  min-height: 92vh;
  padding: 118px 0 0;
  display: block;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
}
/* On mobile, hide the manual <br>s in the cinematic hero h1 so it flows naturally */
.cine-hero-text h1 br { display: none; }
@media (min-width: 700px) {
  .cine-hero-text h1 br { display: inline; }
}
.cine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,149,106,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,184,156,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cine-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3.8rem) 2rem 0;
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(420px, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.cine-hero-text .kicker {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.45rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.cine-hero-text .kicker::before,
.cine-hero-text .kicker::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 480px) {
  .cine-hero-text .kicker { font-size: 0.62rem; letter-spacing: 0.35em; gap: 0.6rem; }
  .cine-hero-text .kicker::before,
  .cine-hero-text .kicker::after { width: 18px; }
}
.cine-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 4.9vw, 5.75rem);
  line-height: 0.98;
  color: var(--charcoal);
  margin-bottom: 1.45rem;
  font-weight: 300;
}
.cine-hero-text h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.cine-hero-text .lede {
  font-size: 1.02rem;
  color: var(--ink);
  max-width: 440px;
  margin-bottom: 1.8rem;
  line-height: 1.75;
}
.cine-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* multi-image collage on right */
.cine-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  max-width: 620px;
  margin-left: auto;
  margin-top: 0.35rem;
}
.cine-collage .ph {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cine-collage .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.cine-collage:hover .ph img { transform: scale(1.06); }
.cine-collage .ph-1 { top: 0; left: 0; width: 58%; height: 82%; z-index: 2; }
.cine-collage .ph-2 { bottom: 0; right: 0; width: 54%; height: 56%; z-index: 3; border: 8px solid var(--cream); }
.cine-collage .ph-3 {
  position: absolute;
  bottom: 4%;
  left: 43%;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  z-index: 4;
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
.cine-collage .ph-3 span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* mini stat row beneath hero */
.hero-stats {
  position: relative;
  z-index: 3;
  max-width: none;
  margin: clamp(2rem, 5vh, 3.4rem) 0 0;
  padding: 2rem max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(184,149,106,0.25);
  background: rgba(250,246,240,0.32);
  backdrop-filter: blur(4px);
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stat .num em { font-style: italic; color: var(--gold); }
.hero-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Marquee brand/keywords strip --- */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,149,106,0.2);
  border-bottom: 1px solid rgba(184,149,106,0.2);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 36s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-track span:empty {
  display: none;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
  font-size: 0.9rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Editorial overlapping split --- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}
.editorial-img {
  position: relative;
  overflow: hidden;
}
.editorial-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}
.editorial-img:hover img { transform: scale(1.08); }
.editorial-text {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.editorial-text .num-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.editorial-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--charcoal);
}
.editorial-text p { margin-bottom: 1.25rem; line-height: 1.85; }
.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.editorial-actions .btn {
  margin-top: 0;
}
.editorial-text .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
}
.editorial.dark .editorial-text { background: var(--charcoal); color: rgba(250,246,240,0.85); }
.editorial.dark .editorial-text h2 { color: var(--cream); }
.editorial.dark .editorial-text .num-label { color: var(--gold-soft); }
.editorial.blush .editorial-text { background: var(--blush); }
.editorial.cream .editorial-text { background: var(--cream); }

/* Boutique feature: warmer, tighter product presentation */
.boutique-editorial {
  min-height: 560px;
  background: linear-gradient(90deg, var(--blush) 0%, var(--champagne) 100%);
  grid-template-columns: 0.95fr 1.05fr;
}
.boutique-editorial .editorial-text {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(3rem, 7vw, 5rem);
}
.boutique-editorial .editorial-text h2 {
  max-width: 520px;
}
.boutique-editorial .editorial-text p {
  max-width: 720px;
}
.boutique-product-stage {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  perspective: 1200px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 34%, transparent 62%),
    linear-gradient(135deg, rgba(250,246,240,0.95), var(--champagne));
}
.boutique-product-stage::before {
  content: '';
  position: absolute;
  width: min(58%, 520px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(184,149,106,0.2);
  border-radius: 50%;
}
.boutique-product-stage img {
  position: relative;
  inset: auto;
  width: min(72%, 520px);
  height: auto;
  max-height: 80%;
  object-fit: contain;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
  filter: contrast(1.04) drop-shadow(0 24px 34px rgba(42,42,42,0.18));
  box-shadow: none;
  z-index: 1;
  transform-style: preserve-3d;
  animation: productFloat3d 7s ease-in-out infinite;
  will-change: transform, filter;
}
.boutique-product-stage:hover img {
  animation-play-state: paused;
  transform: translateY(-10px) rotateX(5deg) rotateY(-10deg) scale(1.055);
  filter: contrast(1.06) drop-shadow(0 34px 44px rgba(42,42,42,0.22));
}

@keyframes productFloat3d {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(-5deg) scale(1);
  }
  35% {
    transform: translateY(-14px) rotateX(4deg) rotateY(7deg) scale(1.025);
  }
  70% {
    transform: translateY(6px) rotateX(-3deg) rotateY(-8deg) scale(0.995);
  }
}

/* --- Mosaic gallery --- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 1rem;
}
.mosaic > div {
  overflow: hidden;
  position: relative;
}
.mosaic > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out, filter 1s ease;
  filter: grayscale(0%);
}
.mosaic > div:hover img { transform: scale(1.08); }
.mosaic .m-1 { grid-column: span 5; grid-row: span 5; }
.mosaic .m-2 { grid-column: span 4; grid-row: span 3; }
.mosaic .m-3 { grid-column: span 3; grid-row: span 3; }
.mosaic .m-4 { grid-column: span 4; grid-row: span 2; }
.mosaic .m-5 { grid-column: span 3; grid-row: span 2; }

/* --- Animated reveal headings --- */
.reveal-head {
  overflow: hidden;
  display: inline-block;
}
.reveal-head > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.visible .reveal-head > span,
.reveal-head.visible > span { transform: translateY(0); }

/* --- Boutique catalog shelf --- */
.boutique-catalog {
  background: #fff;
}
.boutique-catalog .container {
  max-width: 1180px;
}
.boutique-storebar {
  min-height: 62px;
  margin: -3.8rem auto 2rem;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
}
.store-brand-lockup {
  text-align: center;
  color: #050505;
  line-height: 1;
  text-transform: uppercase;
}
.store-brand-lockup span {
  display: inline-block;
  margin-right: 0.42rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.store-brand-lockup strong {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}
.store-icon {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  position: relative;
  color: #000;
  cursor: pointer;
}
.store-filter-toggle::before,
.store-filter-toggle::after,
.store-filter-toggle span::before {
  content: '';
  position: absolute;
  left: 16px;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.store-filter-toggle::before { top: 18px; }
.store-filter-toggle::after { top: 34px; }
.store-filter-toggle span::before {
  top: 26px;
  width: 15px;
}
.store-filter-toggle span::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 22px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
}
.store-bag::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  width: 18px;
  height: 21px;
  border: 2px solid currentColor;
}
.store-bag::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 13px;
  width: 8px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.boutique-catalog-head {
  margin-bottom: 1.75rem;
}
.boutique-catalog-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.boutique-catalog-head .divider {
  display: none;
}
.boutique-catalog-head p {
  max-width: 540px;
  margin: 0 auto;
  color: #555;
}
.lux-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}
.boutique-filter-panel {
  display: block;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  padding: 0;
  background: #fff;
  border: none;
  box-shadow: none;
}
.boutique-filter-group + .boutique-filter-group {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.filter-title {
  margin-bottom: 0.6rem;
  color: #111;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.filter-options button {
  min-height: 36px;
  padding: 0.56rem 0.8rem;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-options button:hover,
.filter-options button.active {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: none;
}
.boutique-empty {
  margin-top: 1rem;
  color: #555;
  text-align: center;
  font-style: italic;
}
.boutique-inquiry-panel {
  margin: 0 0 2.5rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #111;
  background: #fff;
  color: #111;
}
.boutique-inquiry-panel[hidden] {
  display: none;
}
.inquiry-kicker {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.boutique-inquiry-panel p {
  margin: 0 0 0.45rem;
  color: #111;
  font-size: 0.92rem;
}
.boutique-inquiry-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  list-style: none;
  color: #555;
  font-size: 0.78rem;
}
.boutique-inquiry-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.inquiry-item-name::before {
  content: '+ ';
  color: #111;
}
.boutique-inquiry-panel label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.boutique-inquiry-panel input {
  width: 58px;
  min-height: 34px;
  padding: 0.35rem;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  text-align: center;
  font: inherit;
}
.inquiry-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}
.inquiry-clear,
.inquiry-send {
  min-height: 40px;
  padding: 0.75rem 1rem;
  border: 1px solid #111;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inquiry-clear {
  background: #fff;
  color: #111;
  cursor: pointer;
}
.inquiry-send {
  background: #111;
  color: #fff;
}
.lux-product {
  display: block;
  position: relative;
  text-align: center;
  transition: opacity var(--transition);
}
.lux-product[hidden] {
  display: none;
}
.lux-product:hover { opacity: 0.78; }
.lux-product-img {
  aspect-ratio: 1 / 1.16;
  background: #fff;
  overflow: visible;
  position: relative;
  margin-bottom: 1rem;
  border: none;
}
.lux-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
  transition: transform 1.4s ease-out;
}
.lux-product:hover .lux-product-img img { transform: scale(1.025); }
.lux-product-img .tag {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: #000;
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  padding: 0.32rem 0.55rem;
  text-transform: uppercase;
  z-index: 2;
}
.lux-product-img .quick-enquire {
  display: none;
}
.lux-product-meta {
  display: block;
  padding: 0;
}
.lux-product-meta .l {
  min-width: 0;
}
.lux-product .brand {
  display: none;
}
.lux-product .name {
  min-height: 3.05em;
  margin: 0 auto 0.55rem;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.76rem, 1.15vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.55;
  text-transform: uppercase;
}
.lux-product .price {
  color: #8e8e98;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.product-rating {
  margin-top: 0.55rem;
  color: #000;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.product-rating span {
  color: #000;
  letter-spacing: -0.05em;
  font-size: 0.95rem;
}
.product-inquiry-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 0.85rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #111;
  color: #111;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lux-product.is-selected .product-inquiry-action {
  background: #111;
  color: #fff;
}

/* --- Hero product feature (Shop) --- */
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 0;
}
.hero-product-img {
  aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.45) 34%, transparent 62%),
    linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.hero-product-img::before {
  content: '';
  position: absolute;
  width: 68%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(184,149,106,0.22);
  background: rgba(255,255,255,0.18);
}
.hero-product-img img {
  position: relative;
  width: min(72%, 520px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: multiply;
  filter: contrast(1.05) drop-shadow(0 26px 36px rgba(42,42,42,0.18));
  transform-style: preserve-3d;
  animation: productFloat3d 7s ease-in-out infinite;
  transition: transform 800ms ease, filter 800ms ease;
  z-index: 1;
}
.hero-product:hover .hero-product-img img {
  animation-play-state: paused;
  transform: translateY(-10px) rotateX(5deg) rotateY(-10deg) scale(1.06);
  filter: contrast(1.07) drop-shadow(0 36px 48px rgba(42,42,42,0.24));
}
.hero-product-img .seal {
  position: absolute;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  text-align: center;
  animation: spin 30s linear infinite;
}
.hero-product-img .seal span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.hero-product-detail .eyebrow { color: var(--gold); }
.hero-product-detail h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-product-detail .brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-product-detail .lede {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.hero-product-detail .price-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(184,149,106,0.25);
  margin: 2rem 0;
}
.hero-product-detail .price-row .pr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
}
.hero-product-detail .price-row .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.bullet-list {
  list-style: none;
  margin: 1.5rem 0;
}
.bullet-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
}
.bullet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* --- Shop hero v2 --- */
.shop-hero-v2 {
  position: relative;
  min-height: 90vh;
  padding: 140px 2rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  overflow: hidden;
}
.shop-hero-v2::before, .shop-hero-v2::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}
.shop-hero-v2::before {
  width: 500px; height: 500px;
  background: rgba(184,149,106,0.25);
  top: -100px; left: -100px;
}
.shop-hero-v2::after {
  width: 400px; height: 400px;
  background: rgba(212,184,156,0.3);
  bottom: -100px; right: -100px;
}
.shop-hero-v2-inner { position: relative; z-index: 2; max-width: 900px; }
.shop-hero-v2 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1;
  font-weight: 300;
}
.shop-hero-v2 .lede {
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.shop-hero-v2 .floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shop-hero-v2 .floats span {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(184,149,106,0.18);
  font-size: 4rem;
  animation: float 8s ease-in-out infinite;
}
.shop-hero-v2 .floats span:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.shop-hero-v2 .floats span:nth-child(2) { bottom: 22%; right: 10%; animation-delay: 2s; font-size: 5rem; }
.shop-hero-v2 .floats span:nth-child(3) { top: 30%; right: 15%; animation-delay: 4s; font-size: 3rem; }
.shop-hero-v2 .floats span:nth-child(4) { bottom: 30%; left: 12%; animation-delay: 6s; font-size: 3.5rem; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* --- Brand monogram strip (shop) --- */
.lux-brands {
  background: var(--white);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(184,149,106,0.2);
  border-bottom: 1px solid rgba(184,149,106,0.2);
}
.lux-brands-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: center;
}
.lux-brand {
  text-align: center;
  position: relative;
}
.lux-brand:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(184,149,106,0.2);
}
.lux-brand .mono {
  font-family: 'Italiana', serif;
  font-size: 2.4rem;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.lux-brand .origin {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lux-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* --- By Concern selector --- */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.concern {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(184,149,106,0.15);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.concern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--charcoal) 100%);
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 0;
}
.concern:hover::before { transform: translateY(0); }
.concern > * { position: relative; z-index: 1; }
.concern:hover { color: var(--cream); border-color: var(--charcoal); }
.concern .icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.concern h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 0.5rem;
  color: inherit;
  font-weight: 500;
}
.concern p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.concern:hover h4, .concern:hover p { color: var(--cream); }
.concern:hover .icon { color: var(--gold-soft); }

/* --- Quote block --- */
.quote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-block .qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.quote-block .attr {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Refined page header --- */
.page-header-v2 {
  position: relative;
  padding: 13rem 0 6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  overflow: hidden;
}
.page-header-v2::before {
  content: attr(data-watermark);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(184,149,106,0.08);
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.page-header-v2 .inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-header-v2 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.page-header-v2 .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.page-header-v2 .breadcrumb a { color: var(--muted); }
.page-header-v2 .breadcrumb a:hover { color: var(--gold); }

.bridal-page-header {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(ellipse at center, rgba(250, 246, 240, 0.7) 0%, rgba(250, 246, 240, 0.52) 36%, rgba(250, 246, 240, 0.18) 70%, rgba(250, 246, 240, 0) 100%),
    linear-gradient(90deg, rgba(250, 246, 240, 0.98) 0%, rgba(250, 246, 240, 0.84) 34%, rgba(250, 246, 240, 0.28) 76%, rgba(250, 246, 240, 0.2) 100%),
    url('Photo/bridalbackground-hero.jpeg') right center / auto 108% no-repeat,
    linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}
.bridal-page-header::before {
  display: none;
}
.bridal-page-header .inner {
  width: min(820px, calc(100% - 2.5rem));
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 2px;
  background: radial-gradient(ellipse at center, rgba(255, 250, 244, 0.72) 0%, rgba(255, 250, 244, 0.46) 48%, rgba(255, 250, 244, 0) 76%);
  text-shadow: 0 1px 18px rgba(255, 250, 244, 0.72);
}
.bridal-page-header h1 {
  color: rgba(42, 42, 42, 0.96);
}
.bridal-page-header .breadcrumb {
  color: rgba(122, 81, 49, 0.94);
  font-size: clamp(0.76rem, 0.95vw, 0.88rem);
  font-weight: 600;
  text-shadow: 0 1px 14px rgba(255, 250, 244, 0.92);
}
.bridal-page-header .breadcrumb a {
  color: rgba(92, 72, 58, 0.88);
}
.bridal-page-header p {
  font-size: clamp(1.14rem, 1.45vw, 1.28rem) !important;
  line-height: 1.75;
  color: rgba(39, 39, 38, 0.9) !important;
  text-shadow: 0 1px 14px rgba(255, 250, 244, 0.88);
}

[data-cms-key="bridal_your_wedding_day_is_one_of_the_most"],
[data-cms-key="bridal_whether_your_style_is_soft_glam_natu"],
[data-cms-key="bridal_bridal_perk_the_bride_receives_a_com"] {
  font-size: clamp(1.12rem, 1.45vw, 1.24rem);
  line-height: 1.85;
}

[data-cms-key="bridal_bridal_services_packages"] {
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  letter-spacing: 0.42em;
}

[data-cms-key="bridal_every_bridal_booking_is_customized_t"] {
  font-size: clamp(1rem, 1.25vw, 1.12rem) !important;
  line-height: 1.85;
}

/* --- v2 Team layout --- */
.team-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.team-v2 .tc {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 3/4;
}
.team-v2 .tc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease, filter 1s ease, opacity 1s ease;
  filter: grayscale(40%);
}
.team-v2 .tc:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 0.85;
}
.team-v2 .tc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(42,42,42,0.85) 0%, rgba(42,42,42,0.1) 50%, transparent 100%);
  color: var(--cream);
}
.team-v2 .tc-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.team-v2 .tc-role {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0;
}
.team-v2 .tc-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  z-index: 2;
}
.team-v2 .tc-featured {
  grid-column: 1 / -1;
  width: calc((100% - 6rem) / 4);
  max-width: none;
  justify-self: center;
}

/* --- Responsive overrides for new components --- */
@media (max-width: 1100px) and (min-width: 761px) {
  .cine-hero { padding-top: 104px; }
  .cine-hero-inner { grid-template-columns: minmax(340px, 1fr) minmax(260px, 0.85fr); gap: clamp(1.25rem, 3vw, 2.25rem); padding-top: 2rem; }
  .cine-hero-text .kicker { margin-bottom: 1.4rem; }
  .cine-hero-text h1 { font-size: clamp(3rem, 5vw, 4.7rem); margin-bottom: 1.4rem; }
  .cine-hero-text .lede { font-size: 1rem; max-width: 440px; margin-bottom: 1.7rem; }
  .cine-collage { max-width: 340px; }
  .hero-stats { margin-top: 2rem; padding: 1.8rem 2rem; }
}

@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial-text { padding: 4rem 2rem; }
  .editorial-img { min-height: 380px; }
  .team-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-v2 .tc,
  .team-v2 .tc-featured { grid-column: auto; }
  .team-v2 .tc-featured {
    grid-column: 1 / -1;
    width: calc((100% - 2rem) / 2);
    justify-self: center;
  }
  .boutique-editorial { min-height: 0; }
  .boutique-editorial .editorial-text { padding: 4rem 2rem 3rem; }
  .boutique-product-stage { min-height: 360px; padding: 2.25rem; }
  .boutique-product-stage::before { width: min(68%, 360px); }
  .boutique-product-stage img { width: min(74%, 360px); max-height: 300px; }
  .hero-product { grid-template-columns: 1fr; gap: 3rem; }
  .hero-product-img img { width: min(74%, 360px); max-height: 300px; }
  .hero-product-img .seal { width: 84px; height: 84px; bottom: 1.5rem; right: 1.5rem; }
  .lux-brands-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lux-brand:not(:last-child)::after { display: none; }
  .lux-brand:not(:last-child) { border-bottom: 1px solid rgba(184,149,106,0.2); padding-bottom: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-auto-rows: 70px; }
}

@media (max-width: 760px) {
  .cine-hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .cine-collage { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .team-v2 { grid-template-columns: 1fr; }
  .team-v2 .tc,
  .team-v2 .tc-featured { grid-column: auto; max-width: none; width: 100%; }
  .review-inline {
    gap: 0.45rem;
    max-width: 280px;
  }
  .review-inline .score {
    font-size: 1.45rem;
  }
  .review-inline a {
    font-size: 0.9rem;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.25rem 0; gap: 1.5rem; }
  .hero-stat .num { font-size: 2.2rem; }
  .marquee-track span { font-size: 1.1rem; }
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .mosaic .m-1 { grid-column: span 6; grid-row: span 4; }
  .mosaic .m-2, .mosaic .m-3 { grid-column: span 3; grid-row: span 3; }
  .mosaic .m-4, .mosaic .m-5 { grid-column: span 3; grid-row: span 2; }

  /* Cinematic hero — mobile tightening */
  .cine-hero { min-height: auto; padding: 100px 0 40px; }
  .cine-hero-inner { padding: 0 1.25rem; gap: 2rem; }
  .cine-hero-text .lede { font-size: 1rem; margin-bottom: 1.75rem; }
  .cine-hero-actions { gap: 0.6rem; margin-bottom: 1.5rem; }
  .cine-hero-actions .btn { padding: 0.85rem 1.4rem; font-size: 0.68rem; letter-spacing: 0.2em; }
  .cine-collage { max-width: 320px; aspect-ratio: 5/4; }
  .cine-collage .ph-3 { width: 80px; height: 80px; }
  .cine-collage .ph-3 span { font-size: 0.7rem; }
  .hero-stats { margin-top: 2.5rem; padding-top: 2rem; }
  .boutique-editorial .editorial-text { padding: 3rem 1.5rem 2.5rem; }
  .boutique-editorial .editorial-text h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .boutique-filter-panel {
    margin: 0 0 2rem;
    padding: 0;
  }
  .boutique-catalog { padding-top: 0; }
  .boutique-storebar {
    min-height: 56px;
    margin: -2.8rem -1rem 1.6rem;
    grid-template-columns: 48px 1fr 48px;
  }
  .store-icon {
    width: 48px;
    height: 48px;
  }
  .store-brand-lockup span {
    font-size: 0.58rem;
  }
  .store-brand-lockup strong {
    font-size: clamp(1.6rem, 8vw, 2rem);
    letter-spacing: 0.12em;
  }
  .boutique-catalog-head {
    margin-bottom: 1.4rem;
  }
  .boutique-catalog-head h2 {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
  }
  .boutique-filter-panel {
    display: block;
  }
  .filter-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }
  .filter-options::-webkit-scrollbar {
    display: none;
  }
  .filter-options button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0.64rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .lux-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 1.55rem;
  }
  .lux-product-img {
    aspect-ratio: 1 / 1.22;
    margin-bottom: 0.8rem;
  }
  .lux-product-img img {
    padding: 0.25rem;
  }
  .lux-product-img .tag {
    top: 0;
    left: 0;
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }
  .lux-product .name {
    min-height: 3.35em;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    line-height: 1.68;
  }
  .lux-product .price {
    font-size: 0.82rem;
  }
  .product-rating {
    font-size: 0.68rem;
  }
  .product-rating span {
    font-size: 0.82rem;
  }
  .boutique-inquiry-panel {
    position: sticky;
    bottom: 0.75rem;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  }
  .boutique-inquiry-panel ul {
    display: block;
  }
  .boutique-inquiry-panel li + li {
    margin-top: 0.3rem;
  }
  .boutique-inquiry-panel li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
  .inquiry-actions {
    width: 100%;
  }
  .inquiry-clear,
  .inquiry-send {
    flex: 1;
    text-align: center;
  }
  .product-inquiry-action {
    min-height: 34px;
    padding: 0.6rem 0.7rem;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }
  .boutique-product-stage { min-height: 300px; padding: 1.75rem; }
  .boutique-product-stage img { width: min(78%, 280px); max-height: 230px; filter: contrast(1.04) drop-shadow(0 18px 28px rgba(42,42,42,0.16)); }
  .hero-product { padding: 3rem 0; }
  .hero-product-img img { width: min(78%, 280px); max-height: 230px; }
  .hero-product-img .seal { width: 74px; height: 74px; bottom: 1rem; right: 1rem; }
  .hero-product-img .seal span { font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  .boutique-product-stage img {
    animation: none;
  }
}

/* ============================================================
   Floating Chat Bubble — bottom-right corner (like Atah's Wix one)
   ============================================================ */
.contact-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  pointer-events: none;
}
.contact-fab > * { pointer-events: auto; }

/* The small round chat bubble */
.fab-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(42, 42, 42, 0.18);
  transition: all var(--transition);
  position: relative;
  order: 2; /* button below panel */
}
.fab-button:hover {
  background: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(42, 42, 42, 0.25);
}
.fab-button.open {
  background: var(--charcoal);
}
.fab-button .dot,
.fab-button .fab-label { display: none; }

/* Chat icon — three dots inside a speech bubble (SVG-like with pseudo elements) */
.fab-button .chat-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.fab-button .chat-icon span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream);
  display: block;
}
.fab-button.open .chat-icon { display: none; }
.fab-button .close-icon {
  display: none;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.fab-button.open .close-icon { display: block; }

/* The popup panel above the bubble */
.fab-panel {
  background: var(--cream);
  border: 1px solid rgba(184, 149, 106, 0.25);
  width: 320px;
  max-width: calc(100vw - 3rem);
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 16px 50px rgba(42, 42, 42, 0.18);
  padding: 1.5rem 1.25rem 1rem;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none !important;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  order: 1;
  border-radius: 4px;
}
.fab-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto !important;
}
.fab-panel .fab-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.fab-panel h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.fab-panel .fab-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.fab-panel hr {
  border: none;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  margin: 0.25rem 0 0.75rem;
}
.fab-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--transition);
}
.fab-option:hover {
  background: var(--blush);
  padding-left: 0.85rem;
  color: var(--charcoal);
}
.fab-option .ic {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.fab-option:hover .ic {
  background: var(--gold);
  color: var(--cream);
}
.fab-option .tx { flex: 1; min-width: 0; }
.fab-option .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.fab-option .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.2;
}
.fab-panel .fab-hours {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .contact-fab { bottom: 1rem; right: 1rem; }
  .fab-button { width: 52px; height: 52px; }
  .fab-panel { width: calc(100vw - 2rem); padding: 1.25rem 1rem; }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse > :first-child { order: 0; }
  .split-image img { height: 450px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-strip { grid-template-columns: 1fr; }
  .brand-block { border-right: none; border-bottom: 1px solid rgba(184, 149, 106, 0.15); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .course-hero-inner {
    grid-template-columns: 1fr;
  }
  .course-hero-card {
    max-width: 520px;
    justify-self: center;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.6rem 1.25rem; }
  .bridal-page-header {
    min-height: 520px;
    padding: 9.5rem 0 4.5rem;
    background:
      radial-gradient(ellipse at center, rgba(250, 246, 240, 0.72) 0%, rgba(250, 246, 240, 0.48) 38%, rgba(250, 246, 240, 0.16) 72%, rgba(250, 246, 240, 0.08) 100%),
      linear-gradient(180deg, rgba(250, 246, 240, 0.18) 0%, rgba(239, 228, 217, 0.32) 100%),
      url('Photo/bridalbackground-hero.jpeg') 56% center / cover no-repeat;
  }
  .bridal-page-header::before {
    bottom: 0.85rem;
    font-size: clamp(6rem, 31vw, 10rem);
  }
  .bridal-page-header .inner {
    width: min(100% - 2rem, 520px);
    padding: 1.3rem 1rem;
  }
  .bridal-page-header .breadcrumb {
    font-size: 0.68rem;
    line-height: 1.7;
    letter-spacing: 0.18em;
  }
  .bridal-page-header p {
    font-size: 1.08rem !important;
    line-height: 1.65;
  }
  [data-cms-key="bridal_your_wedding_day_is_one_of_the_most"],
  [data-cms-key="bridal_whether_your_style_is_soft_glam_natu"],
  [data-cms-key="bridal_bridal_perk_the_bride_receives_a_com"] {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  [data-cms-key="bridal_bridal_services_packages"] {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
  }
  [data-cms-key="bridal_every_bridal_booking_is_customized_t"] {
    font-size: 1rem !important;
    line-height: 1.7;
  }
  .boutique-promo-bar {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    font-size: 0.62rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }
  .boutique-nav {
    top: 40px;
  }
  .boutique-shop-hero {
    padding-top: 150px;
  }
  .service-menu-section {
    padding-top: 4rem;
  }
  .service-filter {
    top: 64px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.45rem;
    max-width: none;
    width: calc(100% + 2.5rem);
    margin: -0.75rem -1.25rem 2.25rem;
    padding: 0.65rem 1.25rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    background: rgba(250, 246, 240, 0.96);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 6px 20px rgba(74, 63, 54, 0.08);
    scrollbar-width: none;
  }
  .service-filter::-webkit-scrollbar {
    display: none;
  }
  .service-filter button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.7rem 0.9rem;
    background: var(--white);
    border: 1px solid rgba(184, 149, 106, 0.22);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    scroll-snap-align: start;
  }
  .service-filter button.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
  }
  .bridal-lookbook {
    min-height: 520px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.35rem;
  }
  .bridal-lookbook-stage {
    min-height: 500px;
    overflow: hidden;
  }
  .bridal-book {
    height: 500px;
    transform: none;
  }
  .bridal-book::before {
    display: none;
  }
  .bridal-book-page {
    width: min(100%, 330px);
    height: 455px;
    padding: 0.5rem;
  }
  .bridal-book-page::after {
    inset: 0.5rem;
  }
  .bridal-book-page.active {
    width: min(100%, 330px);
    height: 455px;
    transform: translate(-50%, -50%) scale(1);
  }
  .bridal-book-page.prev {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96);
  }
  .bridal-book-page.next {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96);
  }
  .bridal-book-page.far {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96);
  }
  .bridal-lookbook-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }
  .service-category {
    padding: 1.35rem;
  }
  .bridal-inquiry-form {
    padding: 2rem 1.25rem;
  }
  .bridal-form-top {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .bridal-form-step {
    min-height: 240px;
  }
  .bridal-form-actions {
    flex-direction: column;
  }
  .bridal-form-actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .service-category-head {
    gap: 0.9rem;
  }
  .service-symbol {
    width: 46px;
    height: 46px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.9rem 0;
  }
  .service-row strong {
    font-size: 1.25rem;
    max-width: none;
    text-align: left;
  }
  .course-hero {
    min-height: auto;
    padding: 110px 0 4rem;
  }
  .course-hero-inner {
    padding: 0 1.25rem;
    gap: 2rem;
  }
  .course-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
  .course-hero p {
    font-size: 1rem;
  }
  .course-hero-actions .btn,
  .course-card .btn {
    width: 100%;
    text-align: center;
  }
  .course-card {
    padding: 1.45rem;
  }
  .course-price {
    font-size: 1.95rem;
  }
  .course-facts {
    flex-direction: column;
  }
  .course-facts span {
    width: 100%;
  }
  /* Mobile editorial tightening */
  .editorial-text { padding: 3.5rem 1.5rem; }
  .editorial-text h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .editorial-text .btn { padding: 0.95rem 1.6rem; font-size: 0.7rem; letter-spacing: 0.22em; }
  .home-first-editorial .editorial-actions {
    flex-wrap: nowrap;
    gap: 0.6rem;
  }
  .home-first-editorial .editorial-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.9rem 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-align: center;
    max-width: none;
  }
  .btn { padding: 0.95rem 1.8rem; font-size: 0.72rem; letter-spacing: 0.22em; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  /* Book Now sits inside the open mobile menu */
  .nav-cta {
    display: none;
    padding: 0.95rem 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    margin-top: 1.5rem;
  }
  .nav-links.open ~ .nav-cta {
    display: inline-block;
    position: fixed;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
  }
  .nav-inner { gap: 0.5rem; }
  .nav-logo { font-size: 1.3rem; letter-spacing: 0.12em; }
  .nav-logo span { display: none; }
  .cine-hero-text,
  .editorial-text,
  .section-head {
    overflow-wrap: anywhere;
  }
  .card-grid,
  .package-grid,
  .testimonials {
    gap: 1.25rem;
  }
  .card,
  .testimonial,
  .package,
  .pricing-block {
    padding: 2rem 1.25rem;
  }
  .footer a,
  .pricing-row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .legal-hero {
    padding: 8rem 0 3.5rem;
    text-align: left;
  }
  .legal-hero h1 {
    margin-left: 0;
  }
  .legal-hero p {
    margin-left: 0;
  }
  .legal-page { padding: 3rem 0; }
  .legal-card {
    padding: 1.35rem;
  }
  .footer-bottom {
    flex-direction: column;
    line-height: 1.7;
  }
  .footer-legal {
    width: 100%;
  }
  .hero { min-height: 90vh; }
  .feature-banner { background-attachment: scroll; padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-socials { justify-content: center; }
  .page-header { padding: 8rem 0 3rem; }
  .pricing-row { flex-direction: column; gap: 0.5rem; }
  .pricing-row .price { font-size: 1.3rem; }
}

/* (Removed Codex's display:none override that was hiding the shop hero, brands, featured product, and 'by concern' sections.) */
