/* ============================================================
   Simply Faces Skin Care — styles.css
   Dark luxe aesthetic · Production stylesheet
   ============================================================ */

/* ======================
   @FONT-FACE
   ====================== */

/* Cormorant Garamond — variable font, single file for normal weights */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-400.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-400.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Fallback — metric-matched system font */
@font-face {
  font-family: 'Cormorant Fallback';
  src: local('Georgia');
  size-adjust: 105%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* Sacramento */
@font-face {
  font-family: 'Sacramento';
  src: url('/fonts/sacramento-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Open Sans — variable font, single file for all weights */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans-400.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans-400.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Open Sans Fallback — metric-matched system font */
@font-face {
  font-family: 'Open Sans Fallback';
  src: local('Arial');
  size-adjust: 105%;
  ascent-override: 100%;
  descent-override: 24%;
  line-gap-override: 0%;
}


/* ======================
   CSS VARIABLES
   ====================== */

:root {
  --mauve: #e9cfe3;
  --white: #ffffff;
  --silver: #c0bcbf;
  --taupe: #685a4f;
  --black: #141211;
  --beige: #d9c9bb;
  --blush: #ffece3;
  --dark: #1a1816;
  --dark-card: #221f1c;
  --font-heading: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  --font-script: 'Sacramento', cursive;
  --font-body: 'Open Sans', 'Open Sans Fallback', Arial, sans-serif;
}


/* ======================
   RESET & BASE
   ====================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}


/* ======================
   UTILITY CLASSES
   ====================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-mauve {
  color: var(--mauve);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 24, 22, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 207, 227, .08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .3s;
}

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

/* Specificity fix: CTA button in nav */
.nav-links a.nav-cta {
  background: var(--mauve);
  color: var(--black);
  padding: .6rem 1.6rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all .3s;
}

.nav-links a.nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile fullscreen overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--beige);
  transition: color .3s;
}

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

.mobile-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver);
}

.mobile-close svg {
  width: 28px;
  height: 28px;
}

/* ======================
   MEGA MENU (desktop jumbo nav)
   ====================== */

/* nav-item wraps a trigger + its mega panel. Kept static so the panel
   anchors to .nav (the nearest positioned ancestor) and centres under the bar. */
.nav-item.has-mega {
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  cursor: pointer;
  transition: color .3s;
}
.nav-item.has-mega:hover > .nav-trigger,
.nav-item.has-mega:focus-within > .nav-trigger,
.nav-trigger:hover,
.nav-trigger.active {
  color: var(--mauve);
}
.nav-caret {
  width: 11px;
  height: 11px;
  transition: transform .3s ease;
}
.nav-item.has-mega:hover .nav-caret,
.nav-item.has-mega:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-trigger.active {
  position: relative;
}
.nav-trigger.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 16px;
  bottom: -6px;
  height: 1px;
  background: var(--mauve);
  opacity: .6;
}

/* Hover bridge — fills the dead gap between the trigger and the centred
   panel so the menu stays open while the cursor travels down to it.
   Only exists while the item is open, so it never blocks anything when
   closed, and it sits BELOW the trigger row so it can't cover siblings. */
.nav-item.has-mega .nav-trigger {
  position: relative;
}
.nav-item.has-mega .nav-trigger::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: 60vw;
  height: 44px;
  display: none;
}
.nav-item.has-mega:hover .nav-trigger::before,
.nav-item.has-mega:focus-within .nav-trigger::before {
  display: block;
}

/* The panel — centred under the nav bar, no gap (seamless hover) */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  margin-top: 0;
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .12);
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, transform .26s ease, visibility .26s;
  z-index: 120;
}
.nav-item.has-mega:hover > .mega,
.nav-item.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-services {
  width: min(940px, calc(100vw - 40px));
}
.mega-2col {
  width: max-content;
}

.mega-inner {
  display: flex;
  gap: 2.5rem;
}
.mega-2col .mega-inner {
  gap: 3.5rem;
}
.mega-col {
  display: flex;
  flex-direction: column;
  min-width: 168px;
}
.mega-heading {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mauve);
  font-weight: 600;
  margin-bottom: .5rem;
  opacity: .9;
}

/* Mega links — override .nav-links a (higher specificity, later in file) */
.nav-links .mega a {
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--silver);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(233, 207, 227, .06);
  transition: color .25s, padding-left .25s;
}
.nav-links .mega-col a:last-child {
  border-bottom: none;
}
.nav-links .mega a:hover {
  color: var(--white);
  padding-left: .3rem;
}

/* Featured card (Services panel) */
.mega-feature {
  display: flex;
  flex-direction: column;
  width: 230px;
  flex-shrink: 0;
  background: var(--dark);
  border: 1px solid rgba(233, 207, 227, .1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.mega-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 207, 227, .28);
}
.mega-feature-img {
  display: block;
  height: 124px;
}
.mega-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mega-feature-body {
  padding: .9rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mega-feature-eyebrow {
  font-family: var(--font-script);
  color: var(--blush);
  font-size: 1.05rem;
  line-height: 1.1;
}
.mega-feature-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}
.mega-feature-cta {
  color: var(--mauve);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .35rem;
}
.mega-feature:hover .mega-feature-cta {
  color: var(--white);
}

.mega-foot {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(233, 207, 227, .08);
  text-align: right;
}
.nav-links .mega-foot a.mega-viewall {
  display: inline-block;
  color: var(--mauve);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: none;
  padding: 0;
}
.nav-links .mega-foot a.mega-viewall:hover {
  color: var(--white);
  padding-left: 0;
}

/* ======================
   MOBILE ACCORDION NAV (jumbo nav on mobile)
   ====================== */

/* Re-layout the fullscreen mobile menu for a scrollable accordion list */
.mobile-menu {
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 4.75rem 1.5rem 2.5rem;
  overflow-y: auto;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.m-acc {
  border-bottom: 1px solid rgba(233, 207, 227, .1);
}
.m-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--beige);
  padding: 1.05rem 0;
  transition: color .3s;
}
.m-acc-trigger.active {
  color: var(--mauve);
}
.m-acc-caret {
  width: 20px;
  height: 20px;
  color: var(--silver);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.m-acc.open .m-acc-caret {
  transform: rotate(180deg);
}
.m-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
  display: flex;
  flex-direction: column;
}
.m-acc.open .m-acc-panel {
  max-height: 680px;
}
.mobile-menu .m-acc-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: .01em;
  color: var(--silver);
  padding: .5rem 0 .5rem 1rem;
}
.mobile-menu .m-acc-panel a:first-child {
  padding-top: .15rem;
}
.mobile-menu .m-acc-panel a:last-child {
  padding-bottom: 1.1rem;
}
.mobile-menu .m-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--beige);
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(233, 207, 227, .1);
}
.mobile-menu .m-cta {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
  background: var(--mauve);
  color: var(--black);
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-menu .m-cta:hover {
  background: var(--white);
  color: var(--black);
}


/* ======================
   HERO — legacy two-column (kept for any page still using it)
   ====================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2320 40%, var(--dark) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(233, 207, 227, .06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 520px;
}


/* ======================
   HERO SLIDER (full-bleed, full-viewport)
   ====================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  min-height: 540px;
  margin-top: 60px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

/* Background image fills the slide */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.04);
}

.hero-slide.is-active .hero-slide-bg {
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Dark scrim for legibility (left-weighted, Nelly B style) */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 18, 17, .85) 0%, rgba(20, 18, 17, .55) 42%, rgba(20, 18, 17, .15) 75%, rgba(20, 18, 17, .35) 100%),
    linear-gradient(to top, rgba(20, 18, 17, .65) 0%, transparent 35%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  text-align: left;
}

.hero-slide-content .hero-slide-inner {
  max-width: 600px;
}

.hero-slide-content .hero-tagline {
  color: var(--blush);
}

.hero-slide-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.hero-slide-content h1 em {
  font-style: italic;
  color: var(--mauve);
}

.hero-slide-content > .hero-slide-inner > p:not(.hero-tagline) {
  font-size: 1rem;
  color: var(--beige);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 480px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .4);
}

.hero-slide-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

/* Prev / next arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 17, .35);
  border: 1px solid rgba(233, 207, 227, .25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-nav:hover {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--black);
}

.hero-nav svg {
  width: 22px;
  height: 22px;
}

.hero-nav.prev {
  left: 1.75rem;
}

.hero-nav.next {
  right: 1.75rem;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: .7rem;
}

.hero-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .65);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}

/* Invisible 44x44 hit area — keeps the 11px visual, meets tap-target minimum */
.hero-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, .5);
}

.hero-dot.is-active {
  background: var(--mauve);
  border-color: var(--mauve);
  transform: scale(1.1);
}


/* Legacy tagline (still used on hero slider + service heroes) */
.hero-tagline {
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--blush);
  letter-spacing: .03em;
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.hero h1,
.hero h2 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em,
.hero h2 em {
  font-style: italic;
  color: var(--mauve);
}

.hero-text p {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Glow button */
.btn-glow {
  display: inline-block;
  background: var(--mauve);
  color: var(--black);
  padding: .85rem 2.5rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 0 30px rgba(233, 207, 227, .15);
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.btn-glow:hover {
  background: var(--white);
  box-shadow: 0 0 40px rgba(233, 207, 227, .25);
}

/* Ghost button */
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(233, 207, 227, .3);
  color: var(--mauve);
  padding: .85rem 2.5rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-left: 1rem;
  transition: all .3s;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--mauve);
  background: rgba(233, 207, 227, .08);
}

/* Hero image */
.hero-image-area {
  position: relative;
}

.hero-image-frame {
  aspect-ratio: 3 / 4;
  max-height: 550px;
  border: 1px solid rgba(233, 207, 227, .12);
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}


/* ======================
   IMAGE PLACEHOLDERS
   ====================== */

.img-placeholder {
  background: linear-gradient(135deg, #2a2320, #1e1b18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(192, 188, 191, .2);
  margin: 12px;
  pointer-events: none;
}

.img-light {
  background: linear-gradient(135deg, var(--beige), var(--silver));
  color: var(--taupe);
}


/* ======================
   CREDENTIALS BAR
   ====================== */

.cred-bar {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(233, 207, 227, .06);
  border-bottom: 1px solid rgba(233, 207, 227, .06);
}

.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--silver);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cred-line {
  width: 30px;
  height: 1px;
  background: var(--mauve);
  opacity: .4;
}


/* ======================
   SECTION PATTERNS
   ====================== */

.section-label,
.about-text p.section-label,
.cta p.section-label,
.partners-text > p.section-label {
  font-family: var(--font-script);
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--blush);
  letter-spacing: .03em;
  display: block;
  margin-bottom: .2rem;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--mauve);
  opacity: .4;
  margin: 1.5rem 0;
}


/* ======================
   ABOUT SECTION
   ====================== */

.about {
  padding: 6rem 2rem;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(233, 207, 227, .08);
  border-radius: 6px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin: .5rem 0 1.5rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}


/* ======================
   SERVICES GRID
   ====================== */

.services {
  padding: 6rem 2rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .06);
  overflow: hidden;
  transition: all .4s;
  border-radius: 6px;
}

.service-card:hover {
  border-color: rgba(233, 207, 227, .15);
  transform: translateY(-4px);
}

.service-card .service-img {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-card-body {
  padding: 2rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .95rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  min-height: 44px;
  font-size: .78rem;
  color: var(--mauve);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .3s;
}

.service-link:hover {
  gap: .8rem;
}

.service-link svg {
  width: 14px;
  height: 14px;
}


/* ======================
   EXPERIENCE / STATS
   ====================== */

.experience {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(233, 207, 227, .06);
}

.experience-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.experience h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.exp-item {
  padding: 2rem;
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--mauve);
  font-weight: 400;
  margin-bottom: .3rem;
}

.exp-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--silver);
}

.experience blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--beige);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(233, 207, 227, .08);
  border-bottom: 1px solid rgba(233, 207, 227, .08);
}


/* ======================
   SPECIALTIES
   ====================== */

.specialties {
  padding: 6rem 2rem;
  background: var(--dark-card);
}

.specialties-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specialties-header {
  text-align: center;
  margin-bottom: 3rem;
}

.specialties-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(233, 207, 227, .06);
  transition: border-color .3s;
  border-radius: 6px;
}

.spec-item:hover {
  border-color: rgba(233, 207, 227, .15);
}

.spec-icon {
  width: 40px;
  height: 40px;
  color: var(--mauve);
  flex-shrink: 0;
}

.spec-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: .4rem;
}

.spec-item p {
  font-size: 1rem;
  color: var(--silver);
}


/* ======================
   CTA SECTION
   ====================== */

.cta {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 207, 227, .05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--silver);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}


/* ======================
   CONSULT BAND (Nelly B style, full-bleed image + scrim)
   ====================== */

.consult-band {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem;
  text-align: center;
}

.consult-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.consult-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.consult-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20, 18, 17, .55) 0%, rgba(20, 18, 17, .8) 100%),
    linear-gradient(to top, var(--dark) 0%, transparent 40%, transparent 60%, var(--dark) 100%);
  pointer-events: none;
}

.consult-band-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.consult-band .hero-tagline {
  color: var(--blush);
}

.consult-band h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.consult-band p {
  color: var(--beige);
  font-size: .98rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.2rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}


/* ======================
   PARTNER BRANDS — "Products We Trust"
   ====================== */

.partners {
  padding: 6rem 2rem;
  background: var(--dark-card);
}

.partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partners-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 207, 227, .08);
  border-radius: 6px;
  min-height: 420px;
}

.partners-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.partners-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin: .3rem 0 1rem;
  line-height: 1.25;
}

.partners-text > p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(233, 207, 227, .1);
  border-radius: 6px;
  background: rgba(233, 207, 227, .03);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--beige);
  transition: border-color .3s, color .3s, background .3s;
}

.partner-item:hover {
  border-color: rgba(233, 207, 227, .28);
  color: var(--white);
  background: rgba(233, 207, 227, .06);
}


/* ======================
   CONTACT SECTION
   ====================== */

.contact {
  padding: 5rem 2rem;
  border-top: 1px solid rgba(233, 207, 227, .06);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: .5rem;
}

.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--silver);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--mauve);
}

.contact-list a {
  color: var(--silver);
  border-bottom: 1px solid rgba(233, 207, 227, .15);
  transition: all .3s;
}

.contact-list a:hover {
  color: var(--mauve);
  border-color: var(--mauve);
}

.contact-map .img-placeholder {
  min-height: 300px;
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
}


/* ======================
   FORM STYLES
   ====================== */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: .5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #2a2723;
  border: 1px solid rgba(233, 207, 227, .15);
  padding: .8rem 1rem;
  color: var(--white);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color .3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mauve);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(192, 188, 191, .72);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Error states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.form-group .error-message {
  color: #e74c3c;
  font-size: .75rem;
  margin-top: .3rem;
}

/* Submit button uses btn-glow */
form .btn-glow {
  width: 100%;
  text-align: center;
  margin-top: .5rem;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mauve);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--black);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: .8rem;
}

.form-success p {
  color: var(--silver);
  font-size: 1rem;
}

/* Honeypot — hidden from real users */
.form-group._honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* ======================
   TESTIMONIALS / REVIEWS
   ====================== */

.testimonials {
  padding: 6rem 2rem;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Center a 2-card row so it doesn't sit left with dead space */
.reviews-grid:has(.review-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color .3s;
}

.review-card:hover {
  border-color: rgba(233, 207, 227, .15);
}

.review-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--mauve);
  color: var(--mauve);
}

.review-stars svg.star-empty {
  fill: none;
  stroke: var(--silver);
  opacity: .3;
}

.review-card p {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}

.reviewer-date {
  font-size: .72rem;
  color: var(--silver);
  opacity: .78;
  margin-top: .2rem;
}


/* ======================
   PRODUCTS PAGE
   ====================== */

.products {
  padding: 6rem 2rem;
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
  overflow: hidden;
  transition: all .4s;
}

.product-card:hover {
  border-color: rgba(233, 207, 227, .15);
  transform: translateY(-4px);
}

.product-card .product-img {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-card-body {
  padding: 2rem;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}

.product-card p {
  font-size: .95rem;
  color: var(--silver);
  line-height: 1.7;
}


/* ======================
   BLOG STYLES
   ====================== */

/* Blog hero */
.blog-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 207, 227, .04) 0%, transparent 60%);
  pointer-events: none;
}

.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.blog-hero p {
  color: var(--silver);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Blog filters */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  padding: 0 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(233, 207, 227, .15);
  color: var(--silver);
  padding: .5rem 1.4rem;
  min-height: 44px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--mauve);
  color: var(--black);
  border-color: var(--mauve);
}

/* Blog grid */
.blog-grid,
#postGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* Post card */
.post-card {
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
  overflow: hidden;
  transition: all .4s;
}

.post-card:hover {
  border-color: rgba(233, 207, 227, .15);
  transform: translateY(-4px);
}

.post-card .post-thumbnail {
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.post-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.post-card-body {
  padding: 1.5rem;
}

.post-category {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: .6rem;
  font-weight: 500;
}

.post-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.post-card h3 a {
  color: var(--white);
  transition: color .3s;
}

.post-card h3 a:hover {
  color: var(--mauve);
}

.post-date {
  font-size: .72rem;
  color: var(--silver);
  opacity: .78;
}

.post-excerpt {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.6;
  margin-top: .5rem;
}

/* Blog post detail hero */
.blog-post-hero {
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.blog-post-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, rgba(26, 24, 22, .4) 100%);
}

.blog-post-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.blog-post-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .8rem;
}

/* Blog post wrap — container with grid for article + sidebar */
.blog-post-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

/* Blog article body — rich typography */
.blog-article {
  max-width: 720px;
}

.blog-article p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-article h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.blog-article h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin: 2rem 0 .8rem;
  line-height: 1.3;
}

.blog-article h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 .6rem;
}

.blog-article ul,
.blog-article ol {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article ul {
  list-style: disc;
}

.blog-article ol {
  list-style: decimal;
}

.blog-article li {
  margin-bottom: .5rem;
}

.blog-article blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--beige);
  line-height: 1.6;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--mauve);
  margin: 2rem 0;
  background: rgba(233, 207, 227, .03);
  border-radius: 0 6px 6px 0;
}

.blog-article img {
  border-radius: 6px;
  margin: 2rem 0;
  border: 1px solid rgba(233, 207, 227, .06);
}

.blog-article a {
  color: var(--mauve);
  border-bottom: 1px solid rgba(233, 207, 227, .3);
  transition: border-color .3s;
}

.blog-article a:hover {
  border-color: var(--mauve);
}

.blog-article strong {
  color: var(--white);
  font-weight: 600;
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-section {
  margin-bottom: 2.5rem;
}

.sidebar-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(233, 207, 227, .08);
}

.sidebar-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.sidebar-categories a {
  color: var(--silver);
  font-size: .85rem;
  transition: color .3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.sidebar-categories .count {
  font-size: .72rem;
  opacity: .78;
}

.sidebar-recent {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-recent a {
  display: block;
  color: var(--silver);
  font-size: .85rem;
  line-height: 1.5;
  transition: color .3s;
}

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

.sidebar-recent .recent-date {
  font-size: .7rem;
  opacity: .5;
  margin-top: .2rem;
}


/* ======================
   SERVICE PAGES
   ====================== */

.service-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 207, 227, .05) 0%, transparent 60%);
  pointer-events: none;
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-hero p {
  color: var(--silver);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ======================
   GENERIC PAGE HERO (about, testimonials, products)
   ====================== */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 207, 227, .05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero > .page-hero-inner > p:not(.hero-tagline) {
  color: var(--silver);
  font-size: .95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ======================
   FAQ — click affordance (rotating + icon)
   ====================== */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--mauve);
  transition: transform .3s ease;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Service hero WITH background image (markup: .service-hero.has-bg) */
.service-hero.has-bg {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  text-align: left;
}

/* Suppress the text-only radial glow when an image is present */
.service-hero.has-bg::before {
  display: none;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient scrim between bg and content */
.service-hero.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 24, 22, .9) 0%, rgba(26, 24, 22, .55) 55%, rgba(26, 24, 22, .25) 100%),
    linear-gradient(to top, var(--dark) 0%, rgba(26, 24, 22, .2) 45%, transparent 70%);
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.service-hero.has-bg .service-hero-inner {
  max-width: 1100px;
}

.service-hero.has-bg h1 {
  font-size: 3rem;
  max-width: 640px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.service-hero.has-bg p {
  margin: 0;
  max-width: 560px;
  color: var(--beige);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

.service-hero.has-bg .hero-tagline {
  color: var(--blush);
}

.service-hero.has-bg .btn-glow {
  margin-top: 2rem;
}

.service-detail {
  padding: 4rem 2rem;
}

.service-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-detail h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-detail p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Feature / before-after grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  background: var(--dark-card);
  border: 1px solid rgba(233, 207, 227, .06);
  border-radius: 6px;
  padding: 2rem;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}

.feature-item p {
  font-size: .95rem;
  color: var(--silver);
  margin-bottom: 0;
}


/* ======================
   THANK YOU PAGE
   ====================== */

.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: 60px;
}

.thank-you-inner {
  max-width: 500px;
}

.thank-you h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 2rem;
}


/* ======================
   404 PAGE
   ====================== */

.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: 60px;
  background: var(--dark);
}

.page-404-inner {
  max-width: 500px;
}

.page-404 h1 {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 300;
  color: var(--mauve);
  margin-bottom: .5rem;
}

.page-404 h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 2rem;
}


/* ======================
   FOOTER
   ====================== */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(233, 207, 227, .06);
  text-align: center;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  color: var(--silver);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
  transition: all .3s;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--mauve);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--silver);
  transition: color .3s, transform .3s;
}

.footer-social a:hover {
  color: var(--mauve);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer p {
  font-size: .82rem;
  color: var(--silver);
  opacity: .8;
}

/* NAP is the business's contact info and a local-SEO signal — it must be
   readable. Was 11.5px at opacity .3 (1.99:1 contrast, well under WCAG AA). */
.footer-contact p {
  font-size: .95rem;
  opacity: .85;
}

.footer-contact a {
  color: inherit;
}

.footer-copy {
  font-size: .78rem;
  opacity: .7;
}


/* ======================
   RESPONSIVE — 900px
   ====================== */

@media (max-width: 900px) {
  /* Nav */
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image-area {
    display: none;
  }

  .hero h1,
.hero h2 {
    font-size: 2.6rem;
  }

  /* Hero slider */
  .hero-slide-content {
    text-align: center;
    padding: 2rem 1.5rem 4.5rem;
  }

  .hero-slide-content .hero-slide-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-slide-content > .hero-slide-inner > p:not(.hero-tagline) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide-content h1 {
    font-size: 3rem;
  }

  .hero-slide-ctas {
    justify-content: center;
  }

  .hero-slide::after {
    background:
      linear-gradient(90deg, rgba(20, 18, 17, .72) 0%, rgba(20, 18, 17, .5) 100%),
      linear-gradient(to top, rgba(20, 18, 17, .7) 0%, transparent 45%);
  }

  .hero-nav {
    width: 44px;
    height: 44px;
  }

  .hero-nav.prev {
    left: .9rem;
  }

  .hero-nav.next {
    right: .9rem;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 350px;
  }

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

  /* Experience */
  .exp-grid {
    grid-template-columns: 1fr;
  }

  /* Specialties */
  .spec-list {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .partners-media {
    min-height: 280px;
    order: -1;
  }

  .partners-text > p {
    max-width: 100%;
  }

  /* Credentials */
  .cred-inner {
    gap: 1.5rem;
  }

  /* Reviews */
  .reviews-grid,
  .reviews-grid:has(.review-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid,
  #postGrid {
    grid-template-columns: 1fr;
  }

  .blog-post-wrap {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-post-hero h1 {
    font-size: 2rem;
  }

  /* Service pages */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ======================
   RESPONSIVE — 600px
   ====================== */

@media (max-width: 600px) {
  .hero h1,
.hero h2 {
    font-size: 2rem;
  }

  .btn-ghost {
    margin-left: 0;
    margin-top: .8rem;
    display: block;
    text-align: center;
  }

  .btn-glow {
    display: block;
    text-align: center;
  }

  /* Hero slider — stack CTAs, scale heading */
  .hero-slide-content h1 {
    font-size: 2.3rem;
  }

  .hero-slide-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-slide-ctas .btn-ghost {
    margin-top: 0;
  }

  .hero-slide-ctas .btn-glow,
  .hero-slide-ctas .btn-ghost {
    width: 100%;
  }

  .about-text h2,
  .services-header h2,
  .experience h2,
  .specialties-header h2,
  .cta h2,
  .testimonials-header h2,
  .products-header h2,
  .consult-band h2,
  .partners-text h2 {
    font-size: 1.8rem;
  }

  .exp-number {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.55rem;
  }

  .section-label,
  .about-text p.section-label,
  .cta p.section-label,
  .partners-text > p.section-label {
    font-size: 1.45rem;
  }

  .blog-hero h1,
  .service-hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .service-hero.has-bg {
    text-align: center;
    min-height: 46vh;
  }

  .service-hero.has-bg h1 {
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .service-hero.has-bg p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-hero.has-bg::after {
    background:
      linear-gradient(90deg, rgba(26, 24, 22, .78) 0%, rgba(26, 24, 22, .6) 100%),
      linear-gradient(to top, var(--dark) 0%, transparent 55%);
  }

  .blog-filters {
    gap: .5rem;
  }

  .filter-btn {
    padding: .4rem 1rem;
    font-size: .72rem;
  }

  .cred-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .page-404 h1 {
    font-size: 4rem;
  }
}


/* ======================
   RESPONSIVE — 480px
   ====================== */

@media (max-width: 480px) {
  .hero {
    margin-top: 50px;
  }

  /* Hero slider — match smaller nav, hide arrows (dots + swipe remain) */
  .hero-slider {
    margin-top: 50px;
    height: calc(100vh - 50px);
    min-height: 480px;
  }

  .hero-nav {
    display: none;
  }

  .hero-slide-content h1 {
    font-size: 2rem;
  }

  .hero-slide-content > .hero-slide-inner > p:not(.hero-tagline) {
    font-size: .9rem;
  }

  .nav-inner {
    padding: .6rem 1.2rem;
  }

  .nav-logo img {
    height: 34px;
  }

  .hero h1,
.hero h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: .88rem;
  }

  .about,
  .services,
  .experience,
  .specialties,
  .cta,
  .contact,
  .testimonials,
  .products,
  .partners {
    padding: 4rem 1.2rem;
  }

  .consult-band {
    padding: 5rem 1.2rem;
    min-height: 52vh;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .about-text h2,
  .services-header h2,
  .experience h2,
  .specialties-header h2,
  .cta h2,
  .testimonials-header h2,
  .products-header h2 {
    font-size: 1.6rem;
  }

  .contact h2 {
    font-size: 1.6rem;
  }

  .service-card-body,
  .product-card-body,
  .post-card-body {
    padding: 1.5rem;
  }

  .spec-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .blog-post-wrap {
    padding: 2rem 1.2rem 4rem;
  }

  .blog-article blockquote {
    padding: 1rem 1.2rem;
    font-size: 1.05rem;
  }

  .experience blockquote {
    font-size: 1.1rem;
  }

  .thank-you h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.2rem;
  }
}


/* ======================
   ACCESSIBILITY
   ====================== */

/* Focus-visible outlines */
*:focus-visible {
  outline: 2px solid var(--mauve);
  outline-offset: 2px;
}

/* Remove outline for mouse clicks */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link (if used in HTML) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mauve);
  color: var(--black);
  padding: .8rem 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 300;
  transition: top .3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   BACK TO TOP
   components.js toggles .visible past 500px
   ============================================ */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 39, 35, .9);
  border: 1px solid rgba(233, 207, 227, .25);
  border-radius: 50%;
  color: var(--mauve);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, border-color .3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(233, 207, 227, .6);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .3s ease, visibility .3s ease; }
}
