@keyframes hero-bounce {
  0%,
  to {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes xoxoCtaPulse {
  0%,
  to {
    transform: scale(1);
  }
  35% {
    transform: scale(0.96);
  }
}
@keyframes xoxoCtaFade {
  0%,
  to {
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
}
@keyframes xoxoAffPulse {
  0%,
  to {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes xoxoAffRise {
  0% {
    transform: scaleY(0.3);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(/fonts/cormorant-garamond-v21-latin-regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(/fonts/cormorant-garamond-v21-latin-600.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(/fonts/cormorant-garamond-v21-latin-700.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(/fonts/cormorant-garamond-v21-latin-italic.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(/fonts/poppins-300-latin.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(/fonts/poppins-400-latin.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(/fonts/poppins-500-latin.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(/fonts/poppins-600-latin.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #faf6f0;
  --bg-white: #fff;
  --bg-dark: #1a1410;
  --bg-rich: #2a1f17;
  --bg-cream: #f5ede3;
  --bg-warm: #ede4d8;
  --text: #1a1a1a;
  --text-light: #5a5450;
  --text-muted: #6f6862;
  --text-on-dark: #f0ebe3;
  --brun: #3d2b1f;
  --brun-light: #5a4030;
  --olive: #5c6b3c;
  --olive-dark: #4a5630;
  --olive-light: #6d7e4a;
  --gold: #c4972e;
  --gold-light: #d4aa45;
  --gold-dark: #7d5e10;
  --taupe: #8b7d6b;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", system-ui, sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 900px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 24px rgba(196, 151, 46, 0.2);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
ol,
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: 0;
  background: 0 0;
  font-family: inherit;
}
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap--narrow {
  max-width: var(--max-w-narrow);
}
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--rich {
  background: var(--bg-rich);
  color: var(--text-on-dark);
}
.section--beige,
.section--cream {
  background: var(--bg-cream);
}
.section--warm {
  background: var(--bg-warm);
}
.text-center {
  text-align: center;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4rem 0;
  }
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
}
h1,
h2,
h3 {
  color: var(--brun);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}
.nav a.active,
.nav a:hover,
.section--dark h2,
.section--rich h2 {
  color: #fff;
}
.section--dark .eyebrow,
.section--dark h3,
.section--rich .eyebrow,
.section--rich h3 {
  color: var(--gold-light);
}
.subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  margin-top: 0.75rem;
  max-width: 560px;
}
.subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}
.section-header {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}
.btn,
.nav a {
  position: relative;
}
.btn,
.logo small {
  font-family: var(--sans);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: #1a1410 !important;
  box-shadow: 0 2px 12px rgba(196, 151, 46, 0.25);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: #1a1410 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--dark {
  background: var(--brun);
  color: #fff;
}
.btn--dark:hover {
  background: var(--brun-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline {
  border: 1.5px solid var(--brun);
  color: var(--brun);
  background: 0 0;
}
.btn--outline:hover {
  background: var(--brun);
  color: #fff;
}
.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: 0 0;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--white {
  background: #fff;
  color: var(--brun);
}
.btn--white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}
.btn--small {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  min-height: 40px;
}
@media (max-width: 768px) {
  .btn--small {
    min-height: 44px;
  }
}
.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: 0 0;
  transition: all 0.4s var(--ease);
}
.header.header-scrolled {
  background: #1a1410;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}
.logo small {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0;
  letter-spacing: 0.03em;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}
.nav .btn {
  margin-left: 0.5rem;
}
.nav .btn::after {
  display: none;
}
.header-scrolled .logo,
.header-scrolled .nav a:hover {
  color: #fff;
}
.header-scrolled .nav a,
.nav a {
  color: rgba(255, 255, 255, 0.8);
}
main {
  padding-top: 72px;
}
main:has(> .breadcrumb + .service-hero),
main:has(> .breadcrumb:first-child + .hero),
main:has(> .hero:first-child),
main:has(> .hero:first-of-type),
main:has(> .service-hero:first-of-type) {
  padding-top: 0;
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: 130px;
    padding-bottom: 32px;
    margin-left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }
  .hero .eyebrow {
    margin-top: 0.5rem;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
  }
  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
  }
  .hero-promo {
    font-size: 0.82rem !important;
    padding: 0.45rem 0.85rem !important;
    margin-bottom: 1.1rem !important;
    flex-wrap: nowrap !important;
  }
  .hero-promo span:last-child {
    white-space: nowrap;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }
  .hero {
    min-height: auto;
    padding-top: 0;
    align-items: flex-start;
  }
  .hero-scroll {
    display: none;
  }
  #xoxo-sticky-cta {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
  max-width: 100vw;
}
iframe,
img,
svg,
video {
  max-width: 100%;
  height: auto;
}
table {
  overflow-x: auto;
  display: block;
}
code,
pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5 {
  overflow-wrap: break-word;
  hyphens: manual;
  word-break: normal;
}
.mx,
.wrap,
code,
pre,
table {
  max-width: 100%;
}
.container,
.mx,
.wrap {
  overflow-x: clip;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: 0 0;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 1.25rem;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 9996;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav a {
    font-size: 1.2rem;
    font-family: var(--serif);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
  }
  .nav a::after {
    display: none;
  }
  .nav a:hover {
    color: var(--gold);
  }
  .hamburger {
    display: flex;
    z-index: 9997;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(26, 20, 16, 0.4) 0,
      rgba(26, 20, 16, 0.15) 40%,
      rgba(26, 20, 16, 0.6) 85%,
      rgba(26, 20, 16, 0.85) 100%
    ),
    linear-gradient(90deg, rgba(26, 20, 16, 0.5) 0, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 2rem;
  margin-left: 5%;
}
.hero h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero .subtitle {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 540px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero .eyebrow {
  color: var(--gold-light);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}
.hero-badge svg {
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: hero-bounce 2.5s var(--ease) infinite;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.trust-bar {
  background: var(--bg-cream);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.trust-bar-inner,
.trust-item {
  display: flex;
  align-items: center;
}
.trust-bar-inner {
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg {
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--brun);
}
@media (max-width: 768px) {
  .trust-bar-inner {
    gap: 1.25rem;
  }
  .trust-item {
    font-size: 0.7rem;
  }
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.gallery-showcase-item img,
.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    filter 0.6s var(--ease);
}
.svc-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(26, 20, 16, 0.85) 0,
    rgba(26, 20, 16, 0.2) 50%,
    transparent 100%
  );
  transition: background 0.4s var(--ease);
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(26, 20, 16, 0.9) 0,
    rgba(26, 20, 16, 0.3) 60%,
    rgba(26, 20, 16, 0.1) 100%
  );
}
.svc-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.svc-card h3 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.svc-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.3s var(--ease);
}
.svc-card:hover p {
  max-height: 80px;
  opacity: 1;
}
.footer-col a,
.svc-card .svc-link {
  display: inline-flex;
  align-items: center;
}
.svc-card .svc-link {
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease) 0.1s,
    transform 0.3s var(--ease) 0.1s;
}
.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateY(0);
}
.svc-card .svc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.svc-card:hover .svc-link svg {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .svc-card {
    aspect-ratio: 4/3;
  }
  .svc-card p {
    max-height: 80px;
    opacity: 1;
  }
  .svc-card .svc-link {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-showcase-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-showcase-item img {
  transition: transform 0.5s var(--ease);
}
.gallery-showcase-item:hover img {
  transform: scale(1.08);
}
.gallery-showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 0 0;
  transition: background 0.3s var(--ease);
}
.gallery-showcase-item:hover::after {
  background: rgba(26, 20, 16, 0.15);
}
.gallery-showcase-item.featured {
  grid-row: span 2;
  aspect-ratio: auto;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-showcase-item.featured {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
}
.review::before,
.step::before {
  font-family: var(--serif);
  line-height: 1;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brun);
  opacity: 0.12;
  margin-bottom: 1rem;
}
.step h3 {
  margin-bottom: 0.5rem;
}
.review p,
.step p {
  color: var(--text-light);
  line-height: 1.7;
}
.step p {
  font-size: 0.875rem;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.review {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease);
}
.review:hover,
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review::before {
  content: "“";
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 3px;
}
.review p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brun);
}
.review-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--ease);
}
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-cream);
  flex-shrink: 0;
}
.team-card-info h3 {
  margin-bottom: 0.15rem;
  font-size: 1.15rem;
}
.team-card-info .role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.team-card-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    flex-direction: column;
    text-align: center;
  }
}
.pass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--brun) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.pass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 151, 46, 0.15) 0,
    transparent 70%
  );
}
.pass-card-content {
  position: relative;
  z-index: 1;
  flex: 1;
}
.pass-card .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pass-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.pass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 450px;
  line-height: 1.7;
}
.pass-card-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pass-card {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .pass-card p {
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-final {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.cta-final-bg {
  position: absolute;
  inset: 0;
}
.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.cta-final-content {
  position: relative;
  z-index: 1;
}
.cta-final h2,
.pass-card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-final .subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 2rem;
}
.cta-final .btn--primary {
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}
.footer-accent {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-dark) 40%,
    var(--brun) 100%
  );
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col,
.footer-hours div {
  display: flex;
  flex-direction: column;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.footer-bottom a:hover,
.footer-brand .logo,
.footer-col a:hover {
  color: #fff;
}
.footer-badge strong,
.footer-brand .logo small {
  color: var(--gold);
}
.footer-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s;
}
.footer-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-link:hover {
  border-color: var(--gold);
  background: rgba(196, 151, 46, 0.1);
  transform: translateY(-2px);
}
.social-link svg {
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s;
}
.social-link:hover svg {
  fill: var(--gold);
}
.footer-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}
.footer-address {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.footer-hours {
  margin: 0.75rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-hours div {
  gap: 0.2rem;
}
.footer-hours span {
  display: block;
  line-height: 1.45;
}
.footer-closed {
  color: rgba(255, 255, 255, 0.7);
}
.footer-cta {
  margin-top: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s;
}
.footer-bottom,
.footer-legal {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-legal span {
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-badges,
  .footer-hours,
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.float-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(196, 151, 46, 0.35);
}
@media (max-width: 768px) {
  .float-cta {
    display: inline-flex;
    justify-content: center;
  }
}
.reveal.will-animate {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left.will-animate {
  opacity: 0;
  transform: translateX(-25px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right.will-animate {
  opacity: 0;
  transform: translateX(25px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale.will-animate {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
.grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.grid .reveal:nth-child(5) {
  transition-delay: 0.35s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.card-img img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s var(--ease);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--brun);
  color: #fff;
  border-color: var(--brun);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.94);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  cursor: pointer;
  background: 0 0;
  border: 0;
  z-index: 201;
}
.lightbox-close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  transition: color 0.3s;
}
.lightbox-nav:hover {
  color: #fff;
}
.lightbox-prev {
  left: 0.5rem;
}
.lightbox-next {
  right: 0.5rem;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
}
.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.25rem 0;
}
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brun);
  padding: 0.5rem 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.faq-btn::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.active .faq-btn::after {
  content: "−";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0.5rem 0 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--ease);
}
.blog-card:hover,
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card:hover .card-img img {
  transform: scale(1.04);
}
.card-body {
  padding: 1.5rem;
}
.card-body time,
.form label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-body h3 {
  margin-top: 0.35rem;
}
.card-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}
.card,
.form input,
.form select,
.form textarea {
  background: var(--bg-white);
  transition: all 0.3s var(--ease);
}
.card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc {
  text-align: center;
  padding: 2rem 1.5rem;
}
.svc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--olive);
}
.card-body h3,
.svc h3 {
  margin-bottom: 0.5rem;
}
.contact-item span,
.svc p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item,
.form {
  display: flex;
  gap: 1rem;
}
.contact-item {
  align-items: flex-start;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}
.contact-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.form {
  flex-direction: column;
}
.form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--sans);
  font-size: 16px;
}
.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 151, 46, 0.1);
}
[tabindex]:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: 0;
}
@media (max-width: 768px) {
  .social-link {
    width: 44px;
    height: 44px;
  }
  .cookie-btn {
    padding: 0.75rem 1.25rem;
  }
  .cookie-btn,
  .xoxo-acq-link {
    min-height: 44px;
  }
  .faq__question {
    min-height: 48px;
    padding: 1rem 0;
  }
  .btn,
  .xoxo-sticky-booking a,
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }
  .btn,
  .xoxo-sticky-booking a {
    touch-action: manipulation;
  }
  .float-cta {
    display: none !important;
  }
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-6 {
  margin-bottom: 3rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.cookie-accept {
  background: var(--gold);
  color: var(--bg-dark);
}
.cookie-refuse {
  background: 0 0;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.team-card-page {
  text-align: center;
}
.team-card-page img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--bg-cream);
}
.team-card-page h3 {
  margin-bottom: 0.25rem;
}
.team-card-page .role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}
.team-card-page p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.xoxo-acq-strip {
  background: #1a1410;
  color: #f8f1e8;
  border-bottom: 1px solid rgba(196, 151, 46, 0.35);
  font-family: var(--sans);
  position: relative;
  z-index: 90;
}
.xoxo-acq-strip__actions,
.xoxo-acq-strip__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.xoxo-acq-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
}
.xoxo-acq-strip strong {
  color: #d4aa45;
  font-weight: 600;
}
.xoxo-acq-strip__actions {
  gap: 0.5rem;
}
.xoxo-acq-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1410;
  text-decoration: none;
  font-weight: 600;
}
.xoxo-acq-link--ghost {
  background: 0 0;
  color: #f8f1e8;
  border: 1px solid rgba(248, 241, 232, 0.45);
}
[data-acq-channel].xoxo-cta--clicked {
  animation: xoxoCtaPulse 0.65s cubic-bezier(0.4, 0, 0.6, 1) both;
  pointer-events: none;
  position: relative;
}
[data-acq-channel].xoxo-cta--clicked::after {
  content: "✓ Ouverture…";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 151, 46, 0.95);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: inherit;
  letter-spacing: 0.03em;
  animation: xoxoCtaFade 0.65s ease both;
}
@media (prefers-reduced-motion: reduce) {
  [data-acq-channel].xoxo-cta--clicked,
  [data-acq-channel].xoxo-cta--clicked::after {
    animation: none;
  }
}
.xoxo-arkhe {
  background: linear-gradient(180deg, #faf6f0 0, #f1e4d2 100%);
  padding: 3.5rem 0;
}
.xoxo-arkhe__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
  padding: 0 1.5rem;
}
.xoxo-arkhe__header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brun);
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.005em;
}
.xoxo-arkhe__sub {
  color: #3d2b1f;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.xoxo-arkhe__footer-cta p strong,
.xoxo-arkhe__sub strong,
.xoxo-stylist-card__specialty strong,
.xoxo-vitrine__sub strong {
  color: var(--brun);
}
.xoxo-arkhe__cta-hero,
.xoxo-arkhe__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.xoxo-arkhe__cta-hero {
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.xoxo-arkhe__filters {
  gap: 0.4rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.xoxo-arkhe__filter {
  font-family: var(--sans, inherit);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d8866;
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.3);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  min-height: 34px;
  -webkit-tap-highlight-color: transparent;
}
.xoxo-arkhe__filter:hover {
  color: var(--brun);
  border-color: rgba(196, 151, 46, 0.6);
  background: rgba(196, 151, 46, 0.08);
}
.xoxo-arkhe__filter.is-active {
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  border-color: #c4972e;
  box-shadow: 0 2px 8px rgba(196, 151, 46, 0.35);
}
.xoxo-arkhe__category {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--brun);
  font-weight: 600;
  text-align: left;
  margin: 2.5rem auto 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 151, 46, 0.2);
  max-width: 1100px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  letter-spacing: 0.01em;
}
.xoxo-arkhe__category:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.xoxo-arkhe__category-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  margin-left: 0.5rem;
}
.xoxo-arkhe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 1.5rem;
}
.xoxo-arkhe-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.18);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 2px 10px -6px rgba(61, 43, 31, 0.12);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.xoxo-arkhe-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(61, 43, 31, 0.2);
}
.xoxo-arkhe-card__visual {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.xoxo-arkhe-card__visual[data-cat="shampoing"] {
  background: linear-gradient(135deg, #c4972e, #8a6914);
}
.xoxo-arkhe-card__visual[data-cat="hydratation"] {
  background: linear-gradient(135deg, #7aa5c9, #4f7da8);
}
.xoxo-arkhe-card__visual[data-cat="reparation"] {
  background: linear-gradient(135deg, #c97d52, #a0532c);
}
.xoxo-arkhe-card__visual[data-cat="couleur"] {
  background: linear-gradient(135deg, #d88bb0, #a8557e);
}
.xoxo-arkhe-card__visual[data-cat="volume"] {
  background: linear-gradient(135deg, #e8c770, #c49533);
}
.xoxo-arkhe-card__visual[data-cat="sculpt"] {
  background: linear-gradient(135deg, #5c6e45, #3d4b2c);
}
.xoxo-arkhe-card__visual[data-cat="stellar"] {
  background: linear-gradient(135deg, #9b7bc4, #6b4fa0);
}
.xoxo-arkhe-card__visual[data-cat="scalp"] {
  background: linear-gradient(135deg, #8dae7a, #5d7e4a);
}
.xoxo-arkhe-card__visual[data-cat="purifiant"] {
  background: linear-gradient(135deg, #a8d5ba, #6daa8a);
}
.xoxo-arkhe-card__visual[data-cat="bien-etre"] {
  background: linear-gradient(135deg, #d9b8d8, #9b7aa0);
}
.xoxo-arkhe-card__visual[data-cat="voyage"] {
  background: linear-gradient(135deg, #b5a78e, #7a6b5a);
}
.xoxo-arkhe-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.xoxo-arkhe-card__name {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brun);
  margin: 0;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}
.xoxo-arkhe-card__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #8a6914;
  margin: 0.15rem 0 0;
}
.xoxo-arkhe__footer-cta {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.25);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 760px;
  margin: 3rem auto 0;
  box-shadow: 0 6px 24px -10px rgba(61, 43, 31, 0.18);
}
.xoxo-arkhe__footer-cta h2,
.xoxo-vitrine__header h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: var(--brun);
  margin: 0 0 1rem;
}
.xoxo-arkhe__footer-cta p {
  font-size: 1rem;
  color: #5c493a;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.xoxo-arkhe__footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .xoxo-arkhe__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .xoxo-arkhe__category {
    font-size: 1.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xoxo-arkhe__category-sub {
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
    font-size: 0.78rem;
  }
  .xoxo-arkhe-card__visual {
    font-size: 1.4rem;
  }
  .xoxo-arkhe-card__name {
    font-size: 0.8rem;
  }
  .xoxo-arkhe-card__price {
    font-size: 1.05rem;
  }
  .xoxo-arkhe__cta-hero {
    flex-direction: column;
  }
  .xoxo-arkhe__cta-hero .btn,
  .xoxo-arkhe__footer-cta-actions .btn {
    width: 100%;
  }
  .xoxo-arkhe__footer-cta {
    padding: 1.75rem 1.25rem;
    margin: 2rem 1rem 0;
  }
  .xoxo-arkhe__footer-cta-actions {
    flex-direction: column;
  }
}
.xoxo-vitrine {
  background: linear-gradient(180deg, #fff 0, #fbf6ee 100%);
  padding: 3.5rem 0;
}
.xoxo-vitrine__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  padding: 0 1.5rem;
}
.xoxo-vitrine__header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0.5rem 0 0.85rem;
}
.xoxo-vitrine__sub {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.xoxo-vitrine__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
.xoxo-vitrine__filter {
  font-family: var(--sans, inherit);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d8866;
  background: 0 0;
  border: 1px solid rgba(196, 151, 46, 0.3);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
  min-height: 38px;
  -webkit-tap-highlight-color: transparent;
}
.xoxo-vitrine__filter:hover {
  color: var(--brun);
  border-color: rgba(196, 151, 46, 0.6);
  background: rgba(196, 151, 46, 0.05);
}
.xoxo-vitrine__filter.is-active {
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  border-color: #c4972e;
  box-shadow: 0 2px 10px rgba(196, 151, 46, 0.35);
}
.xoxo-vitrine__filter:focus-visible {
  outline: 2px solid #c4972e;
  outline-offset: 2px;
}
.xoxo-vitrine__category {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--brun);
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 151, 46, 0.18);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}
.xoxo-vitrine__category:first-of-type {
  border-top: none;
  margin-top: 1rem;
}
.xoxo-vitrine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}
.xoxo-vitrine-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.2);
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 14px -8px rgba(61, 43, 31, 0.14);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.xoxo-vitrine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -10px rgba(61, 43, 31, 0.22);
}
.xoxo-vitrine-card--featured {
  border-color: rgba(196, 151, 46, 0.55);
  background: linear-gradient(180deg, #fff 0, #fbf6ee 100%);
  box-shadow: 0 8px 22px -10px rgba(196, 151, 46, 0.35);
}
.xoxo-vitrine-card__badge {
  position: absolute;
  top: -1px;
  right: 0.85rem;
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(196, 151, 46, 0.4);
}
.xoxo-vitrine-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}
.xoxo-vitrine-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brun);
  margin: 0;
  font-weight: 700;
}
.xoxo-vitrine-card__variant {
  font-size: 0.78rem;
  color: #a07f22;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.xoxo-vitrine-card__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #8a6914;
  margin: 0.25rem 0;
}
.xoxo-vitrine-card__desc {
  font-size: 0.85rem;
  color: #5c493a;
  line-height: 1.5;
  margin: 0 0 0.25rem;
}
.xoxo-vitrine-card__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: auto;
}
.xoxo-vitrine__footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.92rem;
}
.xoxo-stylists__hint a,
.xoxo-vitrine__footer a {
  color: #8a6914;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 860px) {
  .xoxo-vitrine__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .xoxo-vitrine-card {
    padding: 1.2rem 1.15rem;
  }
  .xoxo-vitrine__filter {
    font-size: 0.72rem;
    padding: 0.45rem 0.85rem;
  }
  .xoxo-vitrine__category {
    font-size: 1.2rem;
  }
}
.xoxo-stylists {
  background: linear-gradient(180deg, #fbf6ee 0, #f1e4d2 100%);
  padding: 4rem 0;
}
.xoxo-stylists__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}
.xoxo-stylists__header .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.xoxo-reviews__header h2,
.xoxo-stylists__header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--brun);
  margin: 0 0 0.85rem;
  letter-spacing: 0.005em;
}
.xoxo-stylists__sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}
.xoxo-stylists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.xoxo-stylist-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.22);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  box-shadow: 0 6px 24px -10px rgba(61, 43, 31, 0.18);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.xoxo-stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -12px rgba(61, 43, 31, 0.28);
}
.xoxo-stylist-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0,
    #c4972e 50%,
    transparent 100%
  );
  opacity: 0.6;
}
.xoxo-stylist-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(196, 151, 46, 0.45);
  box-shadow: 0 6px 18px -6px rgba(196, 151, 46, 0.45);
  background: #faf6f0;
  position: relative;
}
.xoxo-stylist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xoxo-stylist-card__photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
}
.xoxo-stylist-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
}
.xoxo-stylist-card__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--brun);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.xoxo-stylist-card__role {
  font-size: 0.82rem;
  color: #a07f22;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.xoxo-stylist-card__specialty {
  font-size: 0.92rem;
  color: #5c493a;
  margin: 0.2rem 0;
  line-height: 1.5;
  min-height: 3.5em;
}
.xoxo-stylist-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  text-align: center;
}
.xoxo-stylists__hint {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  color: var(--text-light);
}
@media (max-width: 860px) {
  .xoxo-stylists__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 480px;
  }
  .xoxo-stylist-card {
    padding: 1.25rem 1.15rem 1.3rem;
  }
  .xoxo-stylist-card__photo {
    width: 140px;
    height: 140px;
  }
  .xoxo-stylist-card__photo--initials {
    font-size: 3.4rem;
  }
  .xoxo-stylist-card__name {
    font-size: 1.35rem;
  }
  .xoxo-stylist-card__specialty {
    min-height: auto;
  }
}
.xoxo-gift-card {
  background: linear-gradient(180deg, #fff 0, #fbf6ee 100%);
  border: 1px solid rgba(196, 151, 46, 0.22);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 4px 16px -8px rgba(61, 43, 31, 0.15);
  position: relative;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.xoxo-gift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(61, 43, 31, 0.22);
}
.xoxo-gift-card__amount {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brun);
  line-height: 1;
  letter-spacing: -0.01em;
}
.xoxo-gift-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #5c493a;
  margin: 0;
  flex-grow: 1;
  min-height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.xoxo-gift-card .btn {
  width: 100%;
  justify-content: center;
}
.xoxo-gift-card--popular {
  background: linear-gradient(180deg, #fbf6ee 0, #f1e4d2 100%);
  border-color: rgba(196, 151, 46, 0.5);
  box-shadow: 0 8px 24px -10px rgba(196, 151, 46, 0.35);
  transform: scale(1.02);
}
.xoxo-gift-card--popular:hover {
  transform: translateY(-3px) scale(1.02);
}
.xoxo-gift-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(196, 151, 46, 0.35);
}
.xoxo-gift-card--custom .xoxo-gift-card__amount {
  color: #a07f22;
  font-style: italic;
}
@media (max-width: 768px) {
  .xoxo-gift-card {
    padding: 1.4rem 1.1rem 1.2rem;
  }
  .xoxo-gift-card__amount {
    font-size: 1.9rem;
  }
  .xoxo-gift-card--popular {
    transform: none;
  }
  .xoxo-gift-card--popular:hover {
    transform: translateY(-3px);
  }
}
.xoxo-inline-cta {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fbf6ee 0, #f1e4d2 100%);
  border: 1px solid rgba(196, 151, 46, 0.3);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 20px -6px rgba(61, 43, 31, 0.15);
  position: relative;
  overflow: hidden;
}
.xoxo-inline-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e6c870 0, #c4972e 100%);
}
.xoxo-inline-cta__content {
  min-width: 0;
}
.xoxo-inline-cta__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a07f22;
  margin: 0 0 0.5rem;
}
.xoxo-inline-cta__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brun);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}
.xoxo-inline-cta__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3d2b1f;
  margin: 0;
}
.xoxo-inline-cta__code {
  display: inline-block;
  background: #c4972e;
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.92rem;
}
.xoxo-inline-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: stretch;
}
.xoxo-inline-cta__actions .btn {
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 780px) {
  .xoxo-inline-cta {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.25rem;
    gap: 1.1rem;
    margin: 2rem 0;
  }
  .xoxo-inline-cta__title {
    font-size: 1.1rem;
  }
  .xoxo-inline-cta__text {
    font-size: 0.92rem;
  }
}
.xoxo-reviews {
  background: #faf6f0;
  padding: 4rem 0;
}
.xoxo-reviews__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.xoxo-reviews__header .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.xoxo-reviews__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.xoxo-reviews__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.xoxo-reviews__sub strong {
  color: var(--brun);
  font-weight: 700;
  font-size: 1.05rem;
}
.xoxo-reviews__stars {
  color: #e6b530;
  letter-spacing: 0.05em;
  font-size: 1rem;
  line-height: 1;
}
.xoxo-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.5rem;
}
.xoxo-reviews__empty,
.xoxo-reviews__loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-light);
  padding: 2rem 0;
  font-style: italic;
}
.xoxo-rev-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.18);
  border-radius: 16px;
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: 0 4px 16px -8px rgba(61, 43, 31, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.xoxo-rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(61, 43, 31, 0.22);
}
.xoxo-rev-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(196, 151, 46, 0.18);
  line-height: 1;
  font-weight: 700;
}
.xoxo-rev-card__stars {
  color: #e6b530;
  letter-spacing: 0.06em;
  font-size: 1rem;
  line-height: 1;
}
.xoxo-rev-card__stars-empty {
  color: rgba(196, 151, 46, 0.25);
}
.xoxo-rev-card__text {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: #3d2b1f;
  margin: 0;
  font-style: italic;
  font-weight: 400;
  quotes: "“" "”";
  flex-grow: 1;
  white-space: pre-wrap;
  letter-spacing: 0.005em;
}
.xoxo-rev-card__foot {
  border-top: 1px solid rgba(196, 151, 46, 0.12);
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.xoxo-rev-card__name {
  font-weight: 600;
  color: var(--brun);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.xoxo-rev-card__meta {
  font-size: 0.78rem;
  color: #a07f22;
  letter-spacing: 0.01em;
}
.xoxo-rev-card__date {
  font-size: 0.72rem;
  color: #a89876;
  margin-top: 0.1rem;
}
.xoxo-reviews__cta {
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .xoxo-reviews {
    padding: 2.5rem 0;
  }
  .xoxo-reviews__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  .xoxo-rev-card {
    padding: 1.25rem 1.15rem 1rem;
  }
  .xoxo-rev-card__text {
    font-size: 0.96rem;
  }
}
.xoxo-affluence {
  background: linear-gradient(135deg, #faf6f0 0, #f1e4d2 100%);
}
.xoxo-affluence__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.xoxo-affluence__cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.xoxo-affluence__widget {
  background: linear-gradient(180deg, #fff 0, #fbf6ee 100%);
  border: 1px solid rgba(196, 151, 46, 0.22);
  border-radius: 20px;
  box-shadow:
    0 12px 40px -12px rgba(61, 43, 31, 0.18),
    0 2px 8px rgba(61, 43, 31, 0.04);
  padding: 1.75rem 1.5rem 1.4rem;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.xoxo-affluence__widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0,
    #c4972e 50%,
    transparent 100%
  );
  opacity: 0.55;
}
.xoxo-affluence__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brun);
  font-weight: 600;
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.xoxo-affluence__tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0 0.25rem;
}
.xoxo-affluence__tab {
  font-family: var(--sans, inherit);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d8866;
  background: 0 0;
  border: 1px solid rgba(196, 151, 46, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
  min-height: 32px;
  -webkit-tap-highlight-color: transparent;
}
.xoxo-affluence__tab:hover {
  color: var(--brun);
  border-color: rgba(196, 151, 46, 0.55);
  background: rgba(196, 151, 46, 0.04);
}
.xoxo-affluence__tab.is-active {
  background: linear-gradient(135deg, #e8c770, #c4972e);
  color: #fff;
  border-color: #c4972e;
  box-shadow: 0 2px 8px rgba(196, 151, 46, 0.3);
}
.xoxo-affluence__tab:focus-visible {
  outline: 2px solid var(--gold, #c4972e);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .xoxo-affluence__tab {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    letter-spacing: 0.03em;
  }
}
.xoxo-affluence__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #c4972e;
  margin: 0.5rem auto 0;
  opacity: 0.55;
}
.xoxo-affluence__chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  align-items: end;
  min-height: 200px;
  padding: 0.5rem 0 0;
  position: relative;
}
.xoxo-affluence__error,
.xoxo-affluence__loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 2.5rem 0;
  animation: xoxoAffPulse 1.4s ease-in-out infinite;
}
.xoxo-affluence__error {
  animation: none;
  color: var(--brun);
}
.xoxo-aff-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  padding: 1.4rem 0.1rem 0.2rem;
  border-radius: 14px;
  transition: background 0.3s ease;
}
.xoxo-aff-day__pill {
  position: absolute;
  top: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #c4972e;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(196, 151, 46, 0.35);
}
.xoxo-aff-day--today {
  background: linear-gradient(
    180deg,
    rgba(196, 151, 46, 0.08) 0,
    rgba(196, 151, 46, 0.03) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(196, 151, 46, 0.25);
}
.xoxo-aff-day__bar {
  width: 100%;
  max-width: 34px;
  height: 100px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0.55rem;
  position: relative;
}
.xoxo-aff-day__bar-fill {
  display: block;
  width: 100%;
  height: calc(var(--ratio, 0.5) * 100%);
  border-radius: 6px;
  transform-origin: bottom;
  animation: xoxoAffRise 0.8s cubic-bezier(0.2, 0.8, 0.3, 1) backwards;
  animation-delay: calc(var(--idx, 0) * 60ms);
}
.xoxo-aff-day[data-level="calm"] .xoxo-aff-day__bar-fill {
  background: linear-gradient(180deg, #b8cfa8 0, #9db089 100%);
}
.xoxo-aff-day[data-level="normal"] .xoxo-aff-day__bar-fill {
  background: linear-gradient(180deg, #e8c770 0, #c4972e 100%);
}
.xoxo-aff-day[data-level="busy"] .xoxo-aff-day__bar-fill {
  background: linear-gradient(180deg, #c97d52 0, #a0532c 100%);
}
.xoxo-aff-day[data-level="new"] .xoxo-aff-day__bar-fill {
  background: repeating-linear-gradient(
    135deg,
    #ebddb8 0 5px,
    #d9c89a 5px 10px
  );
  opacity: 0.75;
  height: 35%;
}
.xoxo-aff-day[data-level="closed"] .xoxo-aff-day__bar {
  background: 0 0;
}
.xoxo-aff-day[data-level="closed"] .xoxo-aff-day__bar-fill {
  height: 0;
  animation: none;
  background: 0 0;
}
.xoxo-aff-day[data-level="closed"] .xoxo-aff-day__bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BBA88A' stroke-width='2' stroke-linecap='round'><path d='M20.354 15.354A9 9 0 0 1 8.646 3.646 9.003 9.003 0 0 0 12 21a9.003 9.003 0 0 0 8.354-5.646z'/></svg>")
    center/contain no-repeat;
  opacity: 0.6;
}
.xoxo-aff-day[data-level="closed"] {
  opacity: 0.55;
}
.xoxo-aff-day[data-level="closed"] .xoxo-aff-day__label {
  color: #8e7b5c;
}
.xoxo-aff-day__label {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brun);
  line-height: 1;
  letter-spacing: 0.02em;
}
.xoxo-aff-day--today .xoxo-aff-day__label {
  color: #8a6914;
}
.xoxo-aff-day__date {
  font-size: 0.62rem;
  font-weight: 500;
  color: #a8967b;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.xoxo-aff-day__status {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: #9d8866;
}
.xoxo-aff-day[data-level="calm"] .xoxo-aff-day__status {
  color: #7a9268;
}
.xoxo-aff-day[data-level="normal"] .xoxo-aff-day__status {
  color: #a07f22;
}
.xoxo-aff-day[data-level="busy"] .xoxo-aff-day__status {
  color: #8e4a28;
}
.xoxo-aff-day[data-level="new"] .xoxo-aff-day__status {
  color: #a88a3e;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.xoxo-aff-day[data-level="closed"] .xoxo-aff-day__status {
  color: #a8967b;
}
.xoxo-affluence__legend {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-wrap: wrap;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(196, 151, 46, 0.12);
  margin: 0-0.25rem;
}
.xoxo-affluence__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.5rem;
}
.xoxo-aff-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.xoxo-aff-dot[data-level="calm"] {
  background: linear-gradient(135deg, #b8cfa8, #9db089);
}
.xoxo-aff-dot[data-level="normal"] {
  background: linear-gradient(135deg, #e8c770, #c4972e);
}
.xoxo-aff-dot[data-level="busy"] {
  background: linear-gradient(135deg, #c97d52, #a0532c);
}
.xoxo-affluence__meta {
  text-align: center;
  font-size: 0.72rem;
  color: #9d8866;
  margin: 0;
  letter-spacing: 0.02em;
}
.xoxo-affluence__meta::before {
  content: "●";
  color: #9db089;
  font-size: 0.5rem;
  margin-right: 0.4rem;
  animation: xoxoAffPulse 2s ease-in-out infinite;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 860px) {
  .xoxo-affluence__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .xoxo-affluence__widget {
    padding: 1.25rem 1rem 1rem;
  }
  .xoxo-affluence__chart {
    min-height: 170px;
    gap: 0.2rem;
  }
  .xoxo-aff-day {
    padding: 1.2rem 0.05rem 0.15rem;
  }
  .xoxo-aff-day__bar {
    max-width: 24px;
    height: 85px;
  }
  .xoxo-aff-day__label {
    font-size: 0.82rem;
  }
  .xoxo-aff-day__status {
    font-size: 0.55rem;
  }
  .xoxo-aff-day__pill {
    font-size: 0.5rem;
    padding: 0.12rem 0.35rem;
  }
  .xoxo-affluence__cta {
    flex-direction: column;
  }
  .xoxo-affluence__cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .xoxo-aff-day__bar-fill,
  .xoxo-affluence__meta::before {
    animation: none;
  }
}
.xoxo-urgent-booking {
  background: linear-gradient(135deg, #faf6f0 0, #f1e4d2 100%);
}
.xoxo-urgent-booking__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.xoxo-urgent-booking__card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.xoxo-inline-action {
  color: var(--olive-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.xoxo-microcopy {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.xoxo-booking-choice {
  background: #fff;
}
.xoxo-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.xoxo-choice-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid rgba(92, 107, 60, 0.22);
  border-radius: var(--radius-lg);
  background: #faf6f0;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.xoxo-choice-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.xoxo-choice-card strong {
  display: block;
  color: var(--brun);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.xoxo-choice-card span {
  color: var(--text-light);
  font-size: 0.92rem;
}
.xoxo-sticky-booking {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #1a1410;
  border-top: 1px solid rgba(196, 151, 46, 0.45);
  box-shadow: 0-8px 28px rgba(0, 0, 0, 0.18);
  display: none;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
}
.xoxo-sticky-booking a {
  min-height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.xoxo-sticky-booking__main {
  background: var(--gold);
  color: #1a1410;
}
.xoxo-sticky-booking__item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
@media (max-width: 860px) {
  .xoxo-choice-grid,
  .xoxo-urgent-booking__grid {
    grid-template-columns: 1fr;
  }
  .xoxo-sticky-booking {
    display: grid;
  }
  body {
    padding-bottom: 96px;
  }
  .footer-bottom {
    padding-bottom: 1rem;
  }
  .xoxo-acq-strip__inner {
    font-size: 0.82rem;
  }
  .xoxo-acq-strip__actions {
    width: 100%;
  }
}
@media (min-width: 861px) {
  .xoxo-acq-strip {
    position: sticky;
    top: 0;
  }
  .header-scrolled {
    top: 0;
  }
}
.service-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a1f17;
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.35) 0,
    rgba(26, 20, 16, 0.25) 40%,
    rgba(26, 20, 16, 0.75) 100%
  );
}
.service-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  color: #fff;
  text-align: center;
}
.service-hero__content h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.service-hero__content p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 0.6rem;
  max-width: 720px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.service-hero__content strong {
  color: #fff;
}
@media (max-width: 768px) {
  .service-hero {
    min-height: 300px;
  }
  .service-hero__content {
    padding: 3rem 1.25rem 2.25rem;
  }
}
.service-detail {
  padding: 3rem 0 4rem;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.service-detail__content {
  min-width: 0;
}
.service-detail__content h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brun);
  margin: 2.25rem 0 1rem;
  line-height: 1.2;
}
.service-detail__content h2:first-child {
  margin-top: 0;
}
.service-detail__content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--brun);
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
}
.service-detail__content p {
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1rem;
}
.service-detail__content a {
  color: #8a6914;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-detail__sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-detail__sidebar .sidebar-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.service-detail__sidebar .sidebar-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--brun);
  margin: 0 0 0.5rem;
}
.service-detail__sidebar .sidebar-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sidebar-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.25rem 0;
  display: block;
}
.breadcrumb__list a:hover,
.sidebar-links a:hover {
  color: var(--gold);
}
.service-block {
  background: #faf6f0;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.25rem;
  border-left: 3px solid var(--gold);
}
.service-block h3 {
  margin-top: 0;
}
.service-block p {
  margin-bottom: 0;
}
.service-block ul {
  margin: 0.5rem 0 0;
}
.service-highlight {
  background: linear-gradient(135deg, #f5ede3 0, #efe2cc 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(196, 151, 46, 0.3);
}
.service-highlight p {
  margin: 0;
  color: var(--brun);
}
@media (max-width: 860px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail__sidebar {
    position: static;
    order: 2;
  }
  .service-detail {
    padding: 2rem 0 3rem;
  }
}
.breadcrumb {
  background: #faf6f0;
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
.breadcrumb__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  max-width: var(--max-w);
  padding: 0 1.5rem;
  margin: 0 auto;
}
.breadcrumb__list li:not(:last-child)::after {
  content: "→";
  margin-left: 0.35rem;
  color: var(--text-muted);
}
.breadcrumb__list a {
  color: var(--text-light);
  text-decoration: none;
}
.faq {
  margin: 2rem 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq__item {
  border-bottom: 1px solid #e8dcc8;
}
.faq__question,
.service-card h3 {
  color: var(--brun);
  font-weight: 600;
}
.faq__question {
  background: 0 0;
  border: 0;
  padding: 1rem 0;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq__question[aria-expanded="true"]::after {
  content: "−";
}
.faq__answer {
  display: none;
  padding: 0 0 1rem;
}
.faq__question[aria-expanded="true"] + .faq__answer {
  display: block;
}
.faq__answer p,
.service-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.65;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(196, 151, 46, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(196, 151, 46, 0.1);
  border-radius: 50%;
  margin-bottom: 0.25rem;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: 0;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}
svg:not([width]):not([height]) {
  max-width: 100%;
  max-height: 100%;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.no-underline {
  text-decoration: none;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.text-olive-dark {
  color: var(--olive-dark);
}
.hover\:text-olive:hover {
  color: var(--olive);
}
.border-beige {
  border-color: var(--bg-cream);
}
.border-t {
  border-top: 1px solid currentColor;
}
.font-display {
  font-family: var(--sans);
}
.list-none {
  list-style: none;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.mt-8 {
  margin-top: 2rem;
}
.text-brun {
  color: var(--brun);
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.xoxo-newsletter {
  position: relative;
  background: linear-gradient(135deg, #1f1812 0, #2a1f17 50%, #1a1410 100%);
  padding: 3.5rem 1.5rem 3rem;
  color: #faf6f0;
  overflow: hidden;
  isolation: isolate;
}
.xoxo-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0,
    #c4972e 50%,
    transparent 100%
  );
  opacity: 0.7;
}
.xoxo-newsletter::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 151, 46, 0.12) 0,
    rgba(196, 151, 46, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}
.xoxo-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.xoxo-newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(196, 151, 46, 0.13);
  border: 1px solid rgba(196, 151, 46, 0.35);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1;
}
.xoxo-newsletter__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4aa45;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.xoxo-newsletter__title {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: #fff;
  margin: 0 0 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.xoxo-newsletter__sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.6rem;
  line-height: 1.55;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.xoxo-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.xoxo-newsletter__form:focus-within {
  border-color: rgba(196, 151, 46, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.xoxo-newsletter__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 50px;
  background: 0 0;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.xoxo-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.xoxo-newsletter__input:focus {
  outline: 0;
}
.xoxo-newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #c4972e 0, #d4aa45 100%);
  color: #1a1410;
  border: 0;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(196, 151, 46, 0.25);
}
.xoxo-newsletter__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 151, 46, 0.4);
}
.xoxo-newsletter__btn:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.xoxo-newsletter__btn-arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.xoxo-newsletter__btn:hover .xoxo-newsletter__btn-arrow {
  transform: translateX(3px);
}
.xoxo-newsletter-msg {
  font-size: 0.85rem;
  margin: 1rem 0 0;
  min-height: 1.2em;
  line-height: 1.4;
}
.xoxo-newsletter-msg.success {
  color: #9fe0b0;
}
.xoxo-newsletter-msg.error {
  color: #f0a8a6;
}
.xoxo-newsletter__legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 1.4rem 0 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.xoxo-newsletter__legal a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.xoxo-newsletter__legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 640px) {
  .xoxo-newsletter {
    padding: 2.5rem 1.25rem 2.25rem;
  }
  .xoxo-newsletter__title {
    font-size: 1.5rem;
  }
  .xoxo-newsletter__form {
    flex-direction: column;
    background: 0 0;
    border: 0;
    padding: 0;
    gap: 0.6rem;
  }
  .xoxo-newsletter__btn,
  .xoxo-newsletter__input {
    width: 100%;
    justify-content: center;
  }
  .xoxo-newsletter__input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .xoxo-affluence,
  .xoxo-stylists,
  section[aria-label="Feed Instagram XOXO"],
  section.home-galerie,
  section[aria-labelledby="pass-title"] {
    display: none !important;
  }
  section[aria-label="Avis clients XOXO COIFFURE"]
    .review-card:nth-of-type(n + 3),
  section[aria-label="Avis clients XOXO COIFFURE"]
    .xoxo-avis__card:nth-of-type(n + 3) {
    display: none !important;
  }
  .hero-actions .btn,
  .hero-actions .btn--large {
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em !important;
    min-height: 48px !important;
    border-radius: 12px !important;
  }
  .btn {
    min-height: 48px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .btn--large {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    font-size: 0.88rem !important;
  }
  .hero-promo {
    font-size: 0.82rem !important;
    padding: 0.4rem 0.8rem !important;
    margin-bottom: 1rem !important;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero-promo strong {
    padding: 0.12rem 0.4rem !important;
    font-size: 0.85em !important;
  }
  .xoxo-sticky-booking {
    grid-template-columns: 1.8fr 1fr 1fr !important;
    gap: 0.35rem !important;
    padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom)) !important;
  }
  .xoxo-sticky-booking a {
    min-height: 50px !important;
    font-size: 0.88rem !important;
    border-radius: 999px !important;
  }
  .xoxo-sticky-booking__main {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
  }
  .cookie-consent,
  [class*="cookie"] {
    font-size: 0.8rem !important;
    padding: 0.65rem 1rem !important;
  }
  .cookie-consent p,
  [class*="cookie"] p {
    margin: 0 !important;
    line-height: 1.35 !important;
  }
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
  }
  .hero .hero-scroll,
  .hero-scroll[aria-hidden] {
    display: none !important;
  }
  .cookie-banner {
    bottom: calc(96px + env(safe-area-inset-bottom)) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.78rem !important;
    z-index: 1000 !important;
  }
  .cookie-banner p {
    line-height: 1.35;
    margin: 0 0 0.5rem;
  }
  .cookie-btn {
    min-height: 40px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
    flex: 1;
  }
  .svc-card {
    aspect-ratio: 16/10 !important;
  }
  .svc-card h3 {
    font-size: 1.05rem !important;
  }
  .svc-card p {
    font-size: 0.78rem !important;
    line-height: 1.4;
    max-height: 60px !important;
  }
  .svc-card .svc-link {
    font-size: 0.75rem;
    margin-top: 0.35rem;
  }
  .svc-card-content {
    padding: 1rem !important;
  }
  .steps {
    gap: 1.25rem !important;
  }
  .step {
    text-align: left !important;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .step::before {
    font-size: 2.5rem !important;
    opacity: 0.18 !important;
    margin-bottom: 0 !important;
    line-height: 1;
  }
  .step h3 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
  }
  .step p {
    font-size: 0.82rem !important;
    max-width: 100% !important;
    line-height: 1.5 !important;
    text-align: left;
    margin: 0;
  }
  .xoxo-testi__quote {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5;
  }
  .xoxo-testi__grid {
    gap: 1rem !important;
  }
  .xoxo-testi__card {
    padding: 1rem !important;
  }
}
@media (min-width: 769px) {
  .hero-content {
    padding-top: 100px;
  }
}
.xoxo-ig__cta-btn {
  background: var(--gold) !important;
  background-image: none !important;
  color: #1a1410 !important;
  font-weight: 600 !important;
}
.xoxo-ig__cta-btn:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 6px 16px rgba(196, 151, 46, 0.35) !important;
  color: #1a1410 !important;
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: 130px !important;
    padding-bottom: 32px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    margin-left: 0 !important;
    max-width: 100% !important;
  }
  .hero {
    min-height: auto !important;
    align-items: flex-start !important;
  }
}
/* ========== FIX MOBILE "Votre visite" steps — 21/05/2026 ==========
   Avant : grid 2 colonnes mais <p> tombait sous le numéro (colonne 64px)
   → texte écrasé en 1 mot par ligne
   Fix : forcer le <p> en colonne 2 row 2 via grid-column/grid-row explicites */
@media (max-width: 768px) {
  .steps .step {
    grid-template-columns: 64px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0 1rem !important;
    align-items: start !important;
  }
  .steps .step::before {
    grid-column: 1 / 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
  }
  .steps .step h3 {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
  }
  .steps .step p {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ========== FIX MOBILE espace blanc bandeau promo "Première visite" 21/05/2026 ==========
   Avant : <section style="margin: 72px 0 0 0"> créait 72px de vide sur mobile entre header et bandeau
   Fix : retirer marge en mobile (header non-sticky => pas besoin de compensation) */
@media (max-width: 768px) {
  main > section[style*="rgba(196,151,46,0.08)"],
  main > section[style*="margin:72px"],
  main > section[style*="margin-top:70px"],
  main > section[style*="margin-top: 70px"] {
    margin-top: 0 !important;
  }
}

/* ========== FIX cartes cadeaux "<p>" en flex qui transforme chaque mot en colonne 21/05/2026 ========== */
.xoxo-gift-card__desc {
  display: block !important;
  margin: auto 0 !important;
  text-align: center !important;
}
.xoxo-gift-card__desc strong {
  display: inline !important;
}

/* ========== FIX footer-address mobile : <br> dans inline-flex casse l'alignement 21/05/2026 ========== */
.footer-col a.footer-address {
  display: block !important;
  align-items: initial !important;
}

/* ========== FIX UX mobile : masquer sticky booking bar quand menu hamburger ouvert (CTA Réserver visible dans menu) 21/05/2026 ========== */
@media (max-width: 768px) {
  body:has(.nav.active) .xoxo-sticky-booking {
    display: none !important;
  }
}
/* Fallback pour browsers sans :has() */
.nav.active ~ .xoxo-sticky-booking,
.nav.active + .xoxo-sticky-booking {
  display: none !important;
}

.header:has(.nav.active) {
  z-index: 9996 !important;
}

.xoxo-ig__sub a {
  color: #8a6914 !important;
}

.xoxo-sticky-booking__main,
.xoxo-sticky-booking__item {
  min-height: 48px;
}

.xoxo-ig__title {
  color: #8a6914 !important;
}
/* 2026-06-09 fix P1 (revue conception): .btn--full utilisee 9x (CTA sidebar) mais jamais definie */
.btn--full {
  width: 100%;
  display: flex;
}
/* 2026-06-09 — styles des classes injectées par postbuild-blog-enrichments (attrapées par verify-css-classes au 1er passage : étaient SANS style en prod sur 19 articles) */
.xoxo-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.xoxo-reading-time__icon {
  font-size: 1rem;
  line-height: 1;
}
.xoxo-internal-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.xoxo-internal-link:hover {
  color: var(--brun);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ÉLÉVATION VISUELLE — refonte douce 11/06/2026 (identité brun/or/crème conservée)
   Forme uniquement : zéro impact sur le HTML/SEO. Validée sur preview avant prod.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Typo : équilibre des titres, lissage du rendu */
h1, h2, h3 { text-wrap: balance; }
h1 { letter-spacing: -0.02em; }
h2 { letter-spacing: -0.015em; }
p { text-wrap: pretty; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.eyebrow { letter-spacing: 0.22em; }

/* Boutons : matière dorée + retour tactile + focus accessible */
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 135%);
  box-shadow: 0 2px 10px rgba(196, 151, 46, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 110%);
  box-shadow: 0 8px 24px rgba(196, 151, 46, 0.38);
}
.btn:active { transform: translateY(0) scale(0.98); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px; }

/* Cartes : profondeur feutrée, survol vivant */
.card {
  background: #fff;
  border: 1px solid rgba(61, 43, 31, 0.07);
  box-shadow: 0 1px 2px rgba(61, 43, 31, 0.04), 0 8px 24px rgba(61, 43, 31, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(61, 43, 31, 0.05), 0 18px 44px rgba(61, 43, 31, 0.12);
}
.card-img img { transition: transform 0.6s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.04); }
.xoxo-arkhe-card__visual img { transition: transform 0.5s var(--ease-out); }
.xoxo-arkhe-card:hover .xoxo-arkhe-card__visual img { transform: scale(1.05); }

/* Avis : cartes à hauteur égale, signature en bas, prénoms capitalisés */
.xoxo-testi__grid { align-items: stretch; }
.xoxo-testi__card, .review-card { display: flex; flex-direction: column; }
.xoxo-testi__card .xoxo-testi__author, .review-card .review-author { margin-top: auto; }
.xoxo-testi__author, .review-author { text-transform: capitalize; }

/* Héros : voile graduel = titres lisibles sans assombrir toute l'image */
.service-hero__overlay { background: linear-gradient(180deg, rgba(26, 20, 16, 0.30) 0%, rgba(26, 20, 16, 0.55) 62%, rgba(26, 20, 16, 0.72) 100%); }
.hero-overlay { background: linear-gradient(180deg, rgba(26, 20, 16, 0.18) 0%, rgba(26, 20, 16, 0.46) 58%, rgba(26, 20, 16, 0.66) 100%); }

/* Détails de marque */
::selection { background: var(--gold); color: #1a1410; }
html { scrollbar-color: var(--taupe) var(--bg-cream); }
hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(61, 43, 31, 0.18), transparent); }

/* Mouvement réduit respecté (accessibilité) */
@media (prefers-reduced-motion: reduce) {
  .card, .card-img img, .xoxo-arkhe-card__visual img, .btn { transition: none !important; }
  .card:hover { transform: none; }
}
