/* ============================================================
   Beauty by Adrienne Renee — Main Stylesheet
   Brand: Warm Gold + Deep Espresso | Boutique Luxury Palette
   ============================================================ */

/* Google Fonts — Playfair Display (display), DM Sans (body) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Dancing+Script:wght@400;600;700&family=DM+Sans:wght@300;400;500;700&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   CSS Custom Properties — Brand System (Updated March 2026)
   ============================================================ */
:root {
  /* ── New Brand Palette ── */
  --espresso:    #1C1009;   /* primary text, dark backgrounds       */
  --warm-gold:   #C9963B;   /* CTAs, accent highlights               */
  --ivory:       #FAF6EF;   /* page backgrounds                      */
  --copper:      #A0522D;   /* section headers, accents, labels      */
  --soft-blush:  #F2DDD4;   /* cards, soft section backgrounds       */
  --deep-plum:   #4A1942;   /* luxury accent, announcement bar       */
  --white:       #FFFFFF;

  /* ── Legacy aliases (keep for gradual refactor) ── */
  --blush:       #F2DDD4;   /* → soft-blush */
  --blush-light: #FAF6EF;   /* → ivory      */
  --blush-mid:   #EACFBF;
  --rose-taupe:  #C9963B;   /* → warm-gold  */
  --rose-dark:   #A0522D;   /* → copper     */
  --mauve:       #D4A5A5;
  --deep-taupe:  #5C3D2A;   /* → espresso-mid */
  --warm-brown:  #3D2010;
  --charcoal:    #1C1009;   /* → espresso   */
  --text-body:   #2E1A0E;
  --text-light:  #7A5C48;
  --border:      #E8CFC0;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #FAF6EF 0%, #F5EEE6 50%, #EACFBF 100%);
  --grad-rose:    linear-gradient(135deg, #C9963B 0%, #A0522D 100%);
  --grad-overlay: linear-gradient(to bottom, rgba(250,246,239,0.85) 0%, rgba(245,238,230,0.95) 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'DM Sans', 'Lato', sans-serif;

  /* Spacing */
  --section-pad: 90px;
  --container:   1140px;
  --radius:      12px;
  --radius-lg:   24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-taupe);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover { color: var(--deep-taupe); }

ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--deep-taupe);
}

.script-heading {
  font-family: var(--font-script);
  color: var(--rose-taupe);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--deep-taupe);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad) 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              padding var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.97);
  box-shadow: 0 2px 20px rgba(160, 82, 45, 0.12);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height var(--duration) var(--ease);
}

.nav.scrolled .nav__logo img { height: 38px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-taupe);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-taupe);
  transition: width var(--duration) var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__links a:hover,
.nav__links a.active { color: var(--rose-taupe); }

.nav__book {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--rose-taupe);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.nav__book::after { display: none !important; }

.nav__book:hover {
  background: var(--deep-taupe);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-taupe);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-taupe);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--rose-taupe);
  color: var(--white);
  border-color: var(--rose-taupe);
}

.btn-primary:hover {
  background: var(--deep-taupe);
  border-color: var(--deep-taupe);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 92, 82, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--rose-taupe);
  border-color: var(--rose-taupe);
}

.btn-outline:hover {
  background: var(--rose-taupe);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

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

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/card-hero.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 1.5rem;
  display: block;
}

.hero__logo {
  width: min(420px, 85vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(196,146,122,0.15));
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--deep-taupe);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--rose-taupe);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg { width: 20px; opacity: 0.7; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   Notice Banner (New Client)
   ============================================================ */
.notice-banner {
  background: linear-gradient(135deg, var(--deep-taupe), var(--warm-brown));
  color: var(--blush-light);
  padding: 16px 24px;
  text-align: center;
}

.notice-banner p {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.notice-banner strong {
  color: var(--blush);
  font-weight: 700;
}

.notice-banner a {
  color: var(--mauve);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Brand Intro / About Strip
   ============================================================ */
.brand-intro {
  background: var(--white);
  padding: 80px 0;
}

.brand-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196,146,122,0.2);
  position: relative;
}

.brand-intro__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.brand-intro__img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--border);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
}

.brand-intro__text { padding: 1rem 0; }

.brand-intro__butterfly {
  width: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.brand-intro__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.brand-intro__text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ============================================================
   Services Preview
   ============================================================ */
.services-preview {
  background: var(--blush-light);
}

.services-preview__header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-rose);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(196,146,122,0.15);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--deep-taupe);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link svg {
  width: 14px;
  transition: transform var(--duration) var(--ease);
}

.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================================
   Booking CTA Section
   ============================================================ */
.booking-cta {
  background: linear-gradient(135deg, var(--deep-taupe) 0%, var(--warm-brown) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/logo-monogram.png');
  background-size: 500px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
}

.booking-cta h2 {
  color: var(--blush-light);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.booking-cta p {
  color: rgba(255,250,249,0.8);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.booking-cta .btn-primary {
  background: var(--blush);
  color: var(--deep-taupe);
  border-color: var(--blush);
}

.booking-cta .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep-taupe);
}

/* ============================================================
   Instagram Strip
   ============================================================ */
.instagram-strip {
  background: var(--white);
  padding: 60px 0;
  text-align: center;
}

.instagram-strip__handle {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--rose-taupe);
  margin-bottom: 0.5rem;
}

.instagram-strip p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.instagram-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 600px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.ig-placeholder {
  aspect-ratio: 1;
  background: var(--blush-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: opacity var(--duration) var(--ease);
}

.ig-placeholder:hover { opacity: 0.85; }

/* ============================================================
   Page Hero (internal pages)
   ============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/logo-monogram.png');
  background-size: 400px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  display: block;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--deep-taupe);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   Services Page
   ============================================================ */
.services-section {
  background: var(--ivory);
}

.services-full-grid {
  display: grid;
  gap: 2.5rem;
}

.service-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.service-category__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.service-category__icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.service-category h2 {
  font-size: 1.375rem;
  margin-bottom: 0.375rem;
}

.service-category__tagline {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--blush-light);
  font-size: 0.9375rem;
  color: var(--text-body);
}

.service-item::before {
  content: '✦';
  color: var(--rose-taupe);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================================
   About Page
   ============================================================ */
.about-story {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.about-img-stack img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(196,146,122,0.2);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  left: -1rem;
  width: 140px;
  height: 140px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.about-values {
  background: var(--blush-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   Booking Page
   ============================================================ */
.booking-steps {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step__number {
  width: 52px;
  height: 52px;
  background: var(--grad-rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
}

.booking-contact {
  background: var(--blush-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 0.375rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--text-body);
}

/* ============================================================
   Policies Page
   ============================================================ */
.policy-content {
  background: var(--white);
}

.policy-nav {
  background: var(--blush-light);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}

.policy-nav h3 {
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 1rem;
}

.policy-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.policy-nav ul li a {
  font-size: 0.875rem;
  color: var(--deep-taupe);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  display: inline-block;
  transition: all var(--duration) var(--ease);
}

.policy-nav ul li a:hover {
  background: var(--rose-taupe);
  color: var(--white);
  border-color: var(--rose-taupe);
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blush);
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.policy-section ul {
  list-style: none;
  margin: 0.875rem 0;
}

.policy-section ul li {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
}

.policy-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-taupe);
  font-size: 0.55rem;
  top: 0.6rem;
}

.policy-highlight {
  background: var(--blush-light);
  border-left: 3px solid var(--rose-taupe);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  font-size: 0.9375rem;
  color: var(--text-body);
}

/* ============================================================
   Legal Pages (Privacy / Terms)
   ============================================================ */
.legal-content {
  background: var(--white);
}

.legal-body {
  max-width: 740px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.875rem;
  color: var(--deep-taupe);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p,
.legal-body li {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 0.875rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body a { color: var(--rose-taupe); text-decoration: underline; }

.legal-meta {
  background: var(--blush-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,250,249,0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  height: 48px;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 240px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,250,249,0.65);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover { color: var(--mauve); }

.footer__contact p {
  font-size: 0.875rem;
  line-height: 1.9;
}

.footer__contact a {
  color: rgba(255,250,249,0.65);
  transition: color var(--duration) var(--ease);
}

.footer__contact a:hover { color: var(--mauve); }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,250,249,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,250,249,0.6);
  font-size: 0.875rem;
  transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
  border-color: var(--mauve);
  color: var(--mauve);
  background: rgba(212,165,165,0.1);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,250,249,0.4);
}

.footer__bottom a {
  font-size: 0.8125rem;
  color: rgba(255,250,249,0.4);
  transition: color var(--duration) var(--ease);
}

.footer__bottom a:hover { color: var(--mauve); }

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Divider
   ============================================================ */
.divider {
  width: 48px;
  height: 2px;
  background: var(--grad-rose);
  border-radius: 2px;
  margin: 1.25rem 0;
}

.divider.center { margin: 1.25rem auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }

  .brand-intro__grid,
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .brand-intro__img img,
  .about-img-stack img { height: 360px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }

  .hero__content { padding: 100px 24px 60px; }
  .hero__logo { width: min(320px, 80vw); }

  .instagram-strip__grid { grid-template-columns: repeat(3, 1fr); }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { max-width: 100%; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .instagram-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HERO — Split Layout
   ============================================================ */
.hero--split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF3F3 0%, #F9E8E8 50%, #F2D9D9 100%);
  padding-top: 88px; /* nav height */
}

.hero__left {
  position: relative;
  z-index: 2;
  padding: 60px 48px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 80vh;
}

/* Portrait — sits bottom of hero column */
.hero__portrait {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 32px 32px 0 0;
  /* Soft blend into background */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  filter: drop-shadow(0 20px 60px rgba(196,146,122,0.25));
  mix-blend-mode: multiply;
}

/* Radial glow behind portrait */
.hero__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212,165,165,0.45) 0%, rgba(249,232,232,0) 70%);
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero__logo {
  width: min(380px, 90%);
  margin-bottom: 1.25rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 1.25rem;
  display: block;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--deep-taupe);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative butterflies pinned in hero */
.hero__butterfly {
  position: absolute;
  pointer-events: none;
}
.hero__butterfly--a {
  width: 52px;
  top: 18%;
  right: -20px;
  opacity: 0.55;
  animation: flutterA 6s ease-in-out infinite;
}
.hero__butterfly--b {
  width: 36px;
  bottom: 25%;
  left: 10px;
  opacity: 0.4;
  animation: flutterB 8s ease-in-out infinite;
}
.hero__butterfly--c {
  width: 72px;
  top: 12%;
  right: 8%;
  opacity: 0.5;
  animation: flutterA 7s ease-in-out infinite reverse;
  z-index: 3;
}

@keyframes flutterA {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-14px) rotate(6deg); }
}
@keyframes flutterB {
  0%, 100% { transform: translateY(0) rotate(3deg) scaleX(-1); }
  50%       { transform: translateY(-10px) rotate(-5deg) scaleX(-1); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--rose-taupe);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
}
.hero__scroll svg { width: 20px; opacity: 0.7; }

/* ============================================================
   Butterfly Confetti (plays once on load)
   ============================================================ */
.butterfly-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.confetti-butterfly {
  position: absolute;
  top: -80px;
  font-size: 1.5rem;
  opacity: 0;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.6); }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(110vh) rotate(360deg) scale(1); }
}

/* ============================================================
   Floating Butterfly Parallax Layer
   ============================================================ */
.butterfly-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.b-parallax {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
.b-1 { width: 120px; top: 15%;  left: 3%;  opacity: 0.12; }
.b-2 { width: 60px;  top: 35%;  right: 4%; opacity: 0.10; }
.b-3 { width: 48px;  top: 62%;  left: 6%;  opacity: 0.08; }
.b-4 { width: 100px; top: 75%;  right: 5%; opacity: 0.09; }
.b-5 { width: 40px;  top: 50%;  left: 45%; opacity: 0.07; }

/* ============================================================
   Brand Intro — butterfly watermark behind image
   ============================================================ */
.brand-intro__butterfly-bg {
  position: absolute;
  inset: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
.brand-intro__butterfly-bg img {
  width: 110%;
  opacity: 0.08;
}
.brand-intro__img {
  position: relative;
}
.brand-intro__img > img:last-child {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  /* Soft taupe/rose border frame */
  outline: 3px solid var(--border);
  outline-offset: 8px;
  box-shadow: 0 20px 60px rgba(196,146,122,0.2);
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   Animate-In (replaces .fade-up — more flexible)
   ============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.12s; }
.anim-delay-2 { transition-delay: 0.24s; }
.anim-delay-3 { transition-delay: 0.36s; }
.anim-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   Portfolio Gallery
   ============================================================ */
.portfolio-gallery {
  background: var(--ivory);
  padding: var(--section-pad) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--blush-mid);
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123,92,82,0.65) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.gallery-item__overlay span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 6px 18px;
  border-radius: 50px;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.94);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__caption {
  color: rgba(255,250,249,0.7);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.05em;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,250,249,0.12);
  border: 1px solid rgba(255,250,249,0.25);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
  font-family: var(--font-body);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(196,146,122,0.5); }

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
}
.lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

/* ============================================================
   Instagram strip (simplified — no placeholder grid)
   ============================================================ */
.instagram-strip {
  background: var(--white);
  padding: 64px 0;
  text-align: center;
}
.instagram-strip__handle {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--rose-taupe);
  margin-bottom: 0.5rem;
}
.instagram-strip p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ============================================================
   Hero responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 80px;
    min-height: auto;
  }
  .hero__left {
    padding: 48px 32px 0;
    text-align: center;
    align-items: center;
  }
  .hero__ctas { justify-content: center; }
  .hero__right {
    min-height: 50vw;
    max-height: 420px;
  }
  .hero__portrait {
    max-width: 320px;
    border-radius: 24px 24px 0 0;
  }
  .hero__glow {
    width: 300px;
    height: 300px;
  }
  .hero__butterfly--a,
  .hero__butterfly--b { display: none; }
  .hero__scroll { display: none; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item { aspect-ratio: 1; }
}

/* ============================================================
   Announcement Bar (Scarcity / Availability)
   ============================================================ */
.announcement-bar {
  background: var(--deep-plum);
  color: var(--ivory);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001; /* above nav */
  overflow: hidden;
}

.announcement-bar[data-active="false"] {
  display: none;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  flex-wrap: wrap;
}

.announcement-bar a {
  color: var(--warm-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  color: #e8b05a;
}

.announcement-bar__dot {
  color: var(--warm-gold);
  font-size: 0.6rem;
}

/* Scrolling marquee variant for wide screens */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-bar--marquee .announcement-bar__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  flex-wrap: nowrap;
}

/* ============================================================
   Service Card SVG Icons (replaces emoji)
   ============================================================ */
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--warm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--warm-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service category icon on services.html */
.service-category__icon {
  width: 52px;
  height: 52px;
  background: var(--soft-blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-category__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Credentials Strip / Badge Row
   ============================================================ */
.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--soft-blush);
  color: var(--copper);
  border: 1px solid rgba(160, 82, 45, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cred-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   Updated Hero Colors (new palette)
   ============================================================ */
.hero--split {
  background: linear-gradient(135deg, #FAF6EF 0%, #F5EEE6 50%, #EACFBF 100%);
}

.hero__eyebrow {
  color: var(--copper);
}

.hero__glow {
  background: radial-gradient(circle, rgba(201,150,59,0.18) 0%, rgba(250,246,239,0) 70%);
}

/* Updated notice banner with new palette */
.notice-banner {
  background: var(--espresso);
  color: var(--ivory);
  border: none;
}

.notice-banner p { color: var(--ivory); }

.notice-banner strong { color: var(--warm-gold); }

.notice-banner a {
  color: var(--warm-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Updated nav book button */
.nav__book {
  background: var(--warm-gold) !important;
  border-color: var(--warm-gold) !important;
}

.nav__book:hover {
  background: var(--copper) !important;
  border-color: var(--copper) !important;
}

/* ============================================================
   Hero Headline Upgrade
   ============================================================ */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--copper);
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

/* ============================================================
   Updated Button Styles (Warm Gold primary)
   ============================================================ */
.btn-primary {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 150, 59, 0.35);
}

.btn-outline {
  border-color: var(--warm-gold);
  color: var(--warm-gold) !important;
}

.btn-outline:hover {
  background: var(--warm-gold);
  color: var(--white) !important;
}

/* ============================================================
   Silk Press Feature Section
   ============================================================ */
.silk-press-feature {
  background: var(--espresso);
  color: var(--ivory);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.silk-press-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,150,59,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.silk-press-feature .section-label { color: var(--warm-gold); }

.silk-press-feature h2 {
  color: var(--ivory);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.silk-press-feature p {
  color: rgba(250,246,239,0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ============================================================
   Testimonial Strip
   ============================================================ */
.testimonial-strip {
  background: var(--soft-blush);
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(160,82,45,0.12);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--warm-gold);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.testimonial-card__stars {
  color: var(--warm-gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.375rem;
}

.testimonial-card__source {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   Services Page — Silk Press Signature Banner
   ============================================================ */
.silk-press-banner {
  background: linear-gradient(135deg, var(--espresso) 0%, #2E1A0E 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.silk-press-banner__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,150,59,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.silk-press-banner__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--warm-gold);
  fill: none;
  stroke-width: 1.75;
}

.silk-press-banner__tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  font-weight: 700;
  margin-bottom: 0.375rem;
  display: block;
}

.silk-press-banner h2 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.silk-press-banner p {
  font-size: 0.9375rem;
  color: rgba(250,246,239,0.7);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .silk-press-banner { flex-direction: column; }
  .credentials-strip { justify-content: center; }
  .announcement-bar__inner { gap: 0.75rem; }
}
