

/* ===============================================
               ROOT VARIABLES
 ------------------------------------------------*/
:root {
  --card-paper: #fff7ea;
  --card-paper-2: #f1e2cc;
  --card-ink: #141a24; /* deep ink */
  --card-border: rgba(15, 15, 15, 0.18);
  --bg-base: #eee7dc;
  --paper-dot-1: rgba(0, 0, 0, 0.12);
  --paper-dot-2: rgba(0, 0, 0, 0.08);
  --paper-wash-1: rgba(0, 0, 0, 0.07);
  --paper-wash-2: rgba(0, 0, 0, 0.05);
  --ah-r: 22px;
  --ah-headroom: 0px;
  --ah-dur: 4.2s;
  --ah-gap: 0.7s;
}
.boite {
  width: min(1100px, 100%);
  margin-inline: auto;
}
.hero__inner {
  display: block;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(360px, 420px) minmax(460px, 1fr);
    align-items: center;
    justify-content: center;
    gap: 56px;
  }

  .hero__media {
    height: clamp(380px, 40vw, 620px) !important;
  }
}
/* copy */
.hero__kicker {
  margin: 92px 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.65);
  text-align: center;
}

.hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.05;
  
  text-align: center;
}

.hero__sub {
  margin: 0 0 16px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.72);
  max-width: 55ch;
  justify-self: center;
  text-align: center;
}

/*  Slideshow frame (CONTAIN, no jumping, no huge gap) */
.hero__media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 680px;
  margin-top: 22px;
  /* Locked height so the page never grows huge */
  height: clamp(450px, 32vw, 430px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

/* slides */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* you wanted contain */
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slide.is-active {
  opacity: 1;
}

/* dots */
.dots {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.28);
}
.dot.is-on {
  background: rgba(17, 24, 39, 0.8);
}

/* =====================================================
                 ABOUT / PAGE
  -----------------------------------------------------*/

.card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
}
/* top band so it feels designed */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40%;
 
  pointer-events: none;
}
/* text */
.card h3,
.card .name {
  color: #fff !important;
  position: relative;
}
.card p,
.card .meta {
  color: rgba(255, 255, 255, 0.78) !important;
  position: relative;
}
.card .btn,
.card button {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
/* ===============================================
               ROOT VARIABLES
 ------------------------------------------------*/
html,
body {
  height: 100%;
}
body {
  background-color: var(--bg-base) !important;
  background-image:
    /* tiny speckle */
    radial-gradient(
      circle at 12% 18%,
      var(--paper-dot-1) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 78% 26%,
      var(--paper-dot-2) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 35% 82%,
      var(--paper-dot-2) 0 1px,
      transparent 1px 100%
    ),
    /* soft paper grain lines */
    repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 6px
      ),
    /* big gentle wash */
    radial-gradient(
        900px 520px at 20% 10%,
        var(--paper-wash-1),
        transparent 60%
      ),
    radial-gradient(
      900px 520px at 80% 35%,
      var(--paper-wash-2),
      transparent 60%
    );
  background-size:
    220px 220px,
    280px 280px,
    320px 320px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-attachment: fixed;
}

/* =====================================================
       :root, html, body universal overflow-x, ect. 
========================================================*/
a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.container {
  margin-inline: auto;
}
.section-yelp h2{
  text-align: center;
}
.center {
  text-align: center;
}

/* =========================================================
                  GLBAL COMPONENTS
========================================================= */

.site-header {
  position: fixed !important; /* fixed header */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000 !important;
  border: 1px solid var(--card-border) !important;
}
@media (min-width: 678px) {
  .site-header {
    height: 72px;
    display: flex;
  }
}
.site-header-inner {
  max-width: 1120px;
  display: flex-start;
  padding: 0 16px;
  height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.site-header .brand {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

img.logo {
  width: 180px !important;
}

/* header containers */
.site-header .site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 20px;
  width: 100%;
  margin: 0 auto;
}
a.brand > img.logo {
  height: 100%; /* fills the wrapper height */
  display: block;
  -webkit-user-drag: none;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 900px) {
  a.brand {
    height: 72px;
  } /* smaller on mobile */
}
.site-header :where(.site-header-inner, .nav) {
  padding: 0 !important;
  margin: 0 !important;
}

/* Brand + logo */
.brand {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 3;
}
/* Nav */
.primary-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
}
.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 10px;
  color: #141a24 !important;
}
.primary-nav a.active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
.primary-nav a:hover {
  background: #d1d2f8 !important;
  transform: scale(0.9);
}

/* Hamburger (mobile) */
@media (max-width: 450px) {
  .primary-nav {
    display: none;
  }
  .hamburger {
    display: block;
    z-index: 1005;
  }
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  border: none;
  color: #111;
  border-radius: 100%;
  background: transparent !important;
  cursor: pointer;
  padding-right: auto;
  margin-left: auto;
  transform: transform 0.25s ease;
  border-radius: 50%;
  z-index: 1005 !important;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transition: 0.3s ease;
}
.hamburger:hover span {
  background: #d1d2f8 !important;
}
.hamburger:hover {
  transform: scale(1.2);
  background: #d1d2f8 !important;
}
@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }
}
@media (min-width: 980px) {
  .hamburger {
    display: none;
  }
}

/* ==============================================
                    SIDEBAR (drawer) 
 ============================================== */
.sidebar {
  position: fixed;
  right: -340px;
  top: 0;
  height: 100%;
  width: min(320px, 88vw);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
  transition: right 0.22s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  background-color: #bfb7ad;
  background-image:
    radial-gradient(
      circle at 18% 22%,
      rgba(0, 0, 0, 0.1) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 82% 32%,
      rgba(0, 0, 0, 0.07) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 40% 85%,
      rgba(0, 0, 0, 0.06) 0 1px,
      transparent 1px 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.025) 0px,
      rgba(0, 0, 0, 0.025) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1));
  background-size:
    240px 240px,
    300px 300px,
    360px 360px,
    100% 100%,
    100% 100%;
  background-attachment: scroll;
  border-top: 1px solid rgba(15, 15, 15, 0.14);
}
.sidebar.open {
  right: 0;
}
.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* SIDEBAR LOGO FIX  */
.sidebar .sidebar__head .brand .logo {
  width: 80px !important;
  height: auto;
  display: block;
  margin: 10px auto 20px;
}

/* sidebar container cleanup */
.sidebar__head {
  text-align: center;
  padding-top: 10px;
}
.drawer-close {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #141a24 !important;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 2px;
  overflow: auto;
}
.sidebar__nav a {
  padding: 12px 10px;
  border-radius: 10px;
  color: #141a24 !important;
  font-weight: 600;
}
.sidebar__nav a:hover,
.sidebar__nav a.active {
  background: #d1d2f8 !important;
  color: #141a24 !important;
}
.sidebar_extra {
  padding: 10px 12px 18px;
}
#btn-wide {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  margin-top: 6px;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Social buttons (sidebar + footer share)*/
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.sidebar-social {
  display: flex;
  gap: 10px;
  padding: 10px 12px 16px;
}
.sidebar-social .social-btn {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border: 0;
}
.sidebar-social .social-btn:hover {
  background: #d1d2f8 !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: var(--primary);
}
.social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}
/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 17px;
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-0.1px);
  background: #d1d2f8 !important;
}
a {
  color: inherit;
}
/*SERVICES LIST  */
.list {
  display: grid;
  gap: 12px;
}
.item {
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  color: #141a24 !important;
  font-weight: 700;
}

/*========================================================
                          FOOTER
    -----------------------------------------------------   */

.site-footer .footer-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  padding-bottom: 8px;
  text-align: center;
}
.site-footer .footer-nav a {
  display: block !important;
  margin: 8px 0;
  padding: 4px 12px;
  color: #020202 !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
     border: 1px solid rgb(255, 255, 255) !important;
     border-radius: 12px;
    
}
.site-footer .footer-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: #083d79 !important;
  color: #ffffff !important;
  padding: 5px;
  border-radius: 12px;
}

/* Logo */
.site-footer .footer-logo {
  display: flex;
}
.site-footer .footer-logo img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Newsletter */
.site-footer .newsletter {
  max-width: 680px;
}
.site-footer .newsletter-hint {
  color: #141a24 !important;
  font-size: 0.9rem;
}

.site-footer .newsletter-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px;
  border-radius: 18px;
}
  /*  Footer: Paper texture (matches body)  */

/* ===== Footer (ANFA) ===== */
#footer {
  z-index: -1 !important;
    background-color: #bfb7ad;
  background-image:
    radial-gradient(
      circle at 18% 22%,
      rgba(0, 0, 0, 0.1) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 82% 32%,
      rgba(0, 0, 0, 0.07) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 40% 85%,
      rgba(0, 0, 0, 0.06) 0 1px,
      transparent 1px 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.025) 0px,
      rgba(0, 0, 0, 0.025) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1));
  background-size:
    240px 240px,
    300px 300px,
    360px 360px,
    100% 100%,
    100% 100%;
  background-attachment: scroll;
  border-top: 1px solid rgba(15, 15, 15, 0.14);
  top: 0!important;
  left: 0!important;
  right: 0!important;
  margin-top: 22px;
}

.site-footer {
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
  /* Remove the white gap above the footer on all pages */
}
.site-footer .newsletter input[type="email"] {
  flex: 1 1 280px;
  min-width: 0;
  appearance: none;
  color: #141a24 !important;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  outline: none;
}
.site-footer .newsletter input::placeholder {
  color: #141a24 !important;
}
.site-footer .btn-subscribe {
border-radius: 999px;
 font-weight: 700;
  cursor: pointer;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
    background: transparent!important;
}
.site-footer .btn-subscribe:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  background:#cfe7ff!important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

/* Socials */
.site-footer .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.site-footer .social {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #141a24 !important;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.site-footer .social:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  background: #d1d2f8 !important;
  color: #141a24 !important;
  transform: translateY(-3px);
}

/* Legal */
.site-footer .legal small {
  display: block;
  color: #141a24 !important;
  margin-bottom: 0.3rem;
}
.site-footer .legal .links {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.site-footer .legal .links a {
  color: #141a24 !important;
  text-decoration: none;
  font-weight: 500;
}
.site-footer .legal .links a:hover {
  color: #141a24 !important;
  background: #d1d2f8 !important;
}
.site-footer .legal .links .dot {
  color: #141a24 !important;
}

.tank {
  /* uses your existing .container if present; this is a safe fallback */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 20px;
}
/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*  ANFA header "More" dropdown (no collisions) */
.anfa-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.anfa-nav-dropdown__toggle {
  background: none;
  border: none;
  margin-left: 12px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.anfa-nav-dropdown__toggle::after {
  content: " ▾";
  font-size: 0.8em;
}
.anfa-nav-dropdown__toggle:hover {
  opacity: 0.8;
  background: #d1d2f8 !important;
}
/* dropdown panel */
.anfa-nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  color: #141a24 !important;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  padding: 6px 0;
  opacity: 0;
  pointer-events: visible;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  z-index: 999;
}
.anfa-nav-dropdown__panel a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #141a24 !important;
  font-size: 0.9rem;
}
.anfa-nav-dropdown__panel a:hover {
  background: #d1d2f8 !important;
}
/* open on hover */
.anfa-nav-dropdown:hover .anfa-nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: #d1d2f8 !important;
}

/*======================================================
                       INDEX / HOME PAGE
------------------------------------------------------*/
.anfa-hero {
  display: grid;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 72vh !important;
  place-items: center;
  color: #141a24 !important;
  isolation: isolate;
  width: 100%;
  padding-top: 72px;
}
.ah-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
}
/* ====== animated background layers ====== */

@media (max-width: 680px) {
  .ah-bg {
    padding-bottom: 0 !important;
    min-height: 50vh !important;
  }
}
.stripes {
  position: absolute;
  inset: -18% -20% auto -20%;
  height: 44%;

  transform: rotate(-8deg);
  filter: blur(6px);
  opacity: 0.18;
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;

  animation: grain 12s steps(10) infinite;
}
@keyframes grain {
  to {
    transform: translate3d(-10px, 10px, 0);
  }
}

/* eyebrow */
.in-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
  padding-top: 12px;
}

.ah-line {
  display: block;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 76px);
}
.ah-line.gradient {
  display: inline-block;
  background: linear-gradient(90deg, #f0cf3b, #025284);
  background-size: 200% 100%;
  -webkit-background-clip: text!;
  background-clip: text;
  color:transparent ;
  -webkit-text-fill-color: transparent;
  animation: motionGlow 3.5s linear infinite;
}
@keyframes motionGlow{
  0% { background-position: 0% 50%;}
  100% {background-position: 200% 50%;}
}
.outline {
  font-style: normal;
  padding: 0 0.18em;
  color: #141a24 !important;
  -webkit-text-stroke: 2px rgba(27, 39, 51, 0.9);
}
.ah-sub {
  text-align: center;
  padding: 0 22px 0!important;
}
@media(min-width:500px){
  .ah-sub{
    padding: 0 22px 0;
  }
}
.under {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  background-clip: text;
  z-index: 1;
}
.under::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
 background: linear-gradient(90deg, rgb(255, 247, 0), rgb(255, 153, 0))!important;
  animation: underline 2.8s ease-in-out infinite;
}

@keyframes underline {
  50% {
    transform: scaleX(0.85);
  }
}

.ah-actions .btn.primary {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  padding: 0px 20px!important;
  border-radius: 18px;
  align-items: center;
  text-align: center;
  font-size: 18px;
  z-index: 1000;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  background: #d1d2f8 !important;
}
.btn.ghost {
  color: #141a24 !important;
  border: 3px solid rgba(255, 255, 255, 0.35) !important;
  padding: 12px 20px;
  border-radius: 18px;
}
.btn.ghost:hover {
  transform: translateY(-1px);
  background: #d1d2f8 !important;
}

/* marquee ticker */
.ticker {
  margin-top: 16px;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  white-space: nowrap;
  font-size: 14px;
  opacity: 0.8;
}
.ticker span {
  display: inline-block;
  padding-right: 34px;
  animation: ticker 18s linear infinite;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* scissor path accent */
.scissor-path {
  position: relative;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background: var(--card-paper);
}
@media (min-width: 900px) {
  .scissor-path {
    position: relative;
    left: 50% !important;
    transform: translateX(-50%);
    width: 100%;
  }
}

.spark {
  animation: sparkle 3.6s ease-in-out infinite;
}
@keyframes sparkle {
  0% {
    transform: translate(0, 0);
    opacity: 0.1;
  }
  25% {
    opacity: 0.85;
  }
  100% {
    transform: translate(780px, -60px);
    opacity: 0.1;
  }
}
/* responsive niceties */
@media (max-width: 540px) {
  .btn.ghost {
    display: block;
    margin: 8px auto 0;
  }
}

.cs-inner {
  position: relative;
  text-align: center;
}
/* typography rhythm to match hero/bento */
.cs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: #141a24 !important;
  margin: 0 0 8px;
  font-weight: 700;
}
#cutscene-title {
  margin: 0 0 6px;
}
.cutscene h2 {
  margin: 0 0 8px;
}
.cutscene h2 .accent {
  background: transparent;
  background-clip: text;
  color: #141a24 !important;
}
.cutscene .lead {
  padding:0 auto;
  margin: 0 auto;
}
.cutscene .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-book {
  display: block !important;
  margin: 10px auto !important;
  padding: 12px 0 12px !important;
  border-radius: 12px;
  width: 120px;
  background: rgba(255, 255, 255, 0.88) !important;
}
@media (max-width: 540px) {
  .cutscene .actions {
    flex-direction: column;
  }
  .cutscene .actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* Anfe reviews section */

#anfa-reviews .anfa-rv-container {
  max-width: 1120px;
  margin: 0 auto !important;
}

#anfa-reviews h2 {
  text-align: center;
  color: #141a24 !important;
}

#anfa-reviews .anfa-rv-sub {
  text-align: center;
  margin: 8px 0 24px;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Outer shell */
#anfa-reviews .anfa-rv-shell {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

/* prev / next buttons */
#anfa-reviews .anfa-rv-carousel .anfa-rv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--muted, rgba(0, 0, 0, 0.12));
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#anfa-reviews .anfa-rv-carousel .anfa-rv-prev {
  left: 0px;
  z-index: 1;
}
#anfa-reviews .anfa-rv-carousel .anfa-rv-next {
  right: 0px;
}
/* viewport + track */
#anfa-reviews .anfa-rv-viewport {
  overflow: hidden;
  border-radius: 16px;
}

#anfa-reviews .anfa-rv-track {
  display: flex;
  gap: 16px;
  padding: 0px 16px;
  scroll-snap-type: x mandatory;
}

/* === Base card: 1 per slide (mobile) === */
#anfa-reviews .anfa-rv-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 22px;
}

@media (min-width: 1100px) {
  .anfa-rv-track {
    display: grid;
    grid-template-columns: 1, 1fr;
  }
}
#anfa-reviews .anfa-rv-card p {
  margin: 0;
  text-align: center;
  font-size: 9pt;
}
#anfa-reviews .anfa-rv-card .author {
  display: block;
  margin-top: 8px;
  opacity: 0.7;
  color: #141a24 !important;
}
/* Desktop: 3 cards across */
@media (min-width: 900px) {
  #anfa-reviews .anfa-rv-track {
    justify-content: center;
  }
  #anfa-reviews .anfa-rv-card {
    flex: 0 0 30%;
    max-width: 30%;
    scroll-snap-align: none;
  }
}

/* Optional extra breakpoints, if you still want them */
@media (min-width: 980px) {
  #anfa-reviews .anfa-rv-card {
    flex-basis: 48%;
    max-width: 48%;
  }
}
@media (min-width: 1180px) {
  #anfa-reviews .anfa-rv-card {
    flex-basis: 32%;
    max-width: 32%;
  }
}

/* little shine animation on card (optional) */
#anfa-reviews .anfa-rv-card::after {
  content: "";
  position: absolute;
  inset: -5% -10%;
  z-index: 1;
  transform: translateX(-60%);
  animation: anfaRvShine 7s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes anfaRvShine {
  0% {
    transform: translateX(-60%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(60%);
  }
}

/* Bottom CTA pills */
#anfa-reviews .cta-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  margin: 6px;
}
.cutscene .cs-inner.container {
  z-index: -1;
  display: flex;
  flex-direction: column;
}
/* keep your text full width (so it doesn't look "centered") */
.cutscene .cs-inner.container > :not(.cs-frame) {
  width: 100%;
}

/* the frame itself */
.cutscene .cs-frame {
  width:  100%;
}
.cutscene .cs-frame {
  left: auto !important;
  right: auto !important;
  transform: none !important;
}
#cut-scene {
  margin-bottom: 0 !important;
}

/* CENTER the video block inside the cutscene */
.cutscene .cs-inner.container{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers the figure */
}

/* keep your text full width (so it doesn't look "centered") */
.cutscene .cs-inner.container > :not(.cs-frame){
  width: 100%;
}

/* the frame itself */
.cutscene .cs-frame{
  width: min(920px, 100%);
  margin: 18px auto 0 !important;
}
.cutscene .cs-frame{
  left: auto !important;
  right: auto !important;
  transform: none !important;
}
#cut-scene{
  margin-bottom:0!important;
}
/*---*/
.cs-frame {
  position: relative;
  margin: 18px auto;
  display:block;
  place-items: center;
  justify-self: center;
  align-self: center;

}
.cs-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;

}
.cs-toggle {
  position: absolute;
  inset: auto auto 14px 14px;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: #fff;
    color: #141a24 !important;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cs-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

/*-----------------------------------------------------*/
/* CTA button matches site buttons but centered */
.cs-cta {
  margin-top: 32px;
}

.cs-cta .btn-book {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 10px 20px !important;
  border-radius: 18px;
  font-size: 18pt;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline !important;
}

.btn-book:hover {
  background: #d1d2f8 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/*  ANFA • Live Barbers CSS  Works with your provided HTML + JS */
#barbers {
  margin: 0px;
  padding: 0;
}
.barbers {
  padding: 0;
}
.barbers-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 14px;
  box-sizing: border-box;
}

/* When JS adds this wrapper class, we keep styles consistent */
.barbers-shell {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Subtle lift when visible (set by IntersectionObserver in JS) */
.barbers-shell.is-visible {
  transform: translateY(-2px);
}

/*  Head bar (gradient ribbon)  */
.barbers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
  color: #141a24 !important;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
.barbers-head .head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.barbers-head .sep {
  opacity: 0.65;
}

/* Pulse dot (left of “We’re online”) */
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18);
  animation: pulse 1.6s infinite ease-out;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 249, 168, 0.927);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Hide/Show button */
.hide-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.hide-btn .chev {
  opacity: 0.65;
}
.hide-btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* ====================================================
   BARBERS CARDS — cleaner grid + consistent cards
   (drop-in override)
==================================================== */

.barbers-shell,
.barbers-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Grid: 2 on mobile, 3 on tablet, 4 on desktop */
#barbers-grid,
.barbers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 720px) {
  #barbers-grid,
  .barbers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  #barbers-grid,
  .barbers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}
/* Top: avatar centered */
.barber-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  margin: 2px auto 10px;
  display: block;
  border: 2px solid rgba(124, 92, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Info block centered & tidy */
.barber-card .info {
  text-align: center;
  display: grid;
  gap: 6px;
  align-content: start;
}

.barber-card .info h3,
.barber-card .info .name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #141a24 !important;
  letter-spacing: -0.01em;
}

.barber-card .role {
  margin: 0;
  font-size: 12.5px;
  color: #141a24 !important;
}

/* Status line */
.barber-card .status {
  margin: 0;
  font-size: 12px;
  color: #141a24 !important;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.barber-card .barber-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e; /* online */
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

/* Actions pinned at bottom, consistent */
.barber-card .actions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

/* Pills / buttons */
.barber-pill {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 20, 40, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #141a24 !important;
  font-weight: 800;
  cursor: pointer;
}

.barber-pill-primary {
  border: 0;
  color: #141a24 !important;
  color: #0b0d14;
  background: linear-gradient(90deg, #69bff8, #7bd389);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.barber-pill:hover {
  transform: translateY(-1px);
  background: #d1d2f8 !important;
}
.barber-pill:active {
  transform: translateY(0px);
}
/* Make cards feel clickable but clean */
.barber-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  border-color: rgba(124, 92, 255, 0.22);
  background: #d1d2f8 !important;
}

/* Keep things from looking cramped on tiny screens */
@media (max-width: 360px) {
  #barbers-grid,
  .barbers-grid {
    grid-template-columns: 1fr;
  }
  .barber-card {
    min-height: 200px;
  }
}

/* BARBER CARDS — clean light glass */
/* card surface */
.barber-card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  box-shadow:
    0 18px 46px rgba(11, 29, 57, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* subtle “ring” glow */
.barber-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
 -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}

/* text colors (crisp) */
.barber-card .name,
.barber-card h3 {
  color: #141a24 !important;
  font-weight: 900;
}

.barber-card .role,
.barber-card .status {
  color: #141a24 !important;
}

/* buttons match the clean glass look */
.barber-pill {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(11, 29, 57, 0.14) !important;
  color: #141a24 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.barber-pill-primary {
  border: 0 !important;
  color: #141a24 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 14px 30px rgba(11, 29, 57, 0.18) !important;
}

/* hover feels premium */
.barber-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px rgba(11, 29, 57, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  background: #d1d2f8 !important;
}

/* index page (Owner magazing styling-) */
.owner-pic {
  padding: 22px;
}
/* Kicker pill */
#owner-feature .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #141a24 !important;
  border-radius: 999px;
}
#owner-feature .owner-dot {
  width: 10px;
  color: greenyellow;
  z-index: 1;
  height: 10px;
  border-radius: 50%;
  background: rgb(82, 198, 5);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
}

/* Headline + deck */
#owner-feature .tile {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(32px, 4.2vw, 54px);

  letter-spacing: -0.4px;
  text-align: center !important;
}
#owner-feature .deck {
  font-size: 16px;
  color: #141a24 !important;
  border-left: 3px solid var(--ink);
  padding-left: 16px;
}
@media (min-width: 500px) {
  #owner-feature .kicker {
    margin: 0 auto 16px;
  }
  #owner-feature .tile {
    margin: 0 auto 32px;
  }
}

#owner-feature .mag-card {
  border-radius: 18px !important;
  overflow: hidden;
  position: relative;
  padding-top: 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
    z-index: -1;
}
/* Image inside the card – one rule only */
#owner-feature .mag-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.35s ease-in-out;
}
#owner-feature .mag-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

#owner-feature .mag-card.stat {
  width: 60%;
  height: 30%;
  left: 6%;
  top: -2%;
  z-index: 1;
}
#owner-feature .mag-card.owner {
  width: 78%;
  height: 70%;
  left: 12%;
  top: 10%;
  z-index: 2;
}

@media (hover: hover) {
  #owner-feature .mag-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    background: #d1d2f8 !important;
  }
}
@media (max-width: 560px) {
  #owner-feature .mag-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
  }
  #owner-feature .mag-grid {
    aspect-ratio: 3 / 4;
    min-height: 700px;
  }
  #owner-feature .mag-card.stat {
    width: 60%;
    height: 110%;
    left: -10%;
    top: -20%;
    z-index: -1;
  }
  #owner-feature .mag-card.owner {
    width: 55%;
    height: 150%;
    left: -1%;
    top: -30%;
    z-index: -2;
  }
  #owner-feature .mag-card.basin {
    width: 50%;
    height: 105%;
    right: -10%;
    bottom: 15%;
    z-index: 3;
  }
}
@media (min-width: 700px) {
  #owner-feature .mag-grid {
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 15px;
    z-index: 1;
    min-width: 100%;
    aspect-ratio: 3/4;
    min-height: 560px;
    position: relative;
  }
  #owner-feature .mag-card.stat {
    width: 60%;
    height: 40%;
    left: -2%;
    top: -1%;
    z-index: -1;

  }
  #owner-feature .mag-card.owner {
    width: 55%;
    height: 40%;
    left: 10%;
    top: -8%;
    z-index: -9!important;
  }
  #owner-feature .mag-card.basin {
    width: 45%;
    height: 35%;
    right: -35%;
    bottom: 18%;
    z-index: -3;
  }
}

@media (min-width: 900px) {
  #owner-feature .quote-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
  }
}

/* drop-cap paragraph */
#owner-feature .dropcap::first-letter {
  font-family: ui-serif, Georgia, serif;
  float: left;
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 0.9;
  padding: 0.18rem 0.5rem 0 0;
  color: #141a24 !important;
}
#owner-feature .dropcap {
  color: #141a24 !important;
}
.bullets {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
#owner-feature .bullets li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
#owner-feature .bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.18);
}
/* Buttons */
.quote-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
}
.quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: 0.2s ease-in-out;
  background: #d1d2f8 !important;
}
.quote-btn.quote-btn-primary {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.25);
  text-align: center;
  transition: 0.2s ease-in-out;

}
.quote-btn.quote-btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  background: #d1d2f8 !important;
}

/* OWNER FEATURE – final layout overrides */
#owner-feature .quote-grid {
  display: block;
  gap: 28px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  align-items: flex-start;
  margin-top: 22px !important;
  justify-content: center;
}

/* body copy */
#owner-feature .quote-body {
  display:block ;
  font-size: 16.5px;
  line-height: 1.75;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* bullets */
#owner-feature .bullets {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
#owner-feature .bullets li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
}
#owner-feature .bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  /* height: 1-px;*/
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(2, 187, 255, 0.18);
}

#owner-feature .pullquote:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transition: 0.2s ease-in-out;
  background: #d1d2f8 !important;
}
#owner-feature .pullquote p {
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

/*  Owner pullquote quotes — clean version  */
#owner-feature .pullquote {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  margin: 0 12px;
  border-radius: 10px;
  padding: 0 12px;
}

/* base style for both quote marks */
#owner-feature .quote-mark {
  position: absolute;
  font-size: 40px;
  line-height: 1.2;
  color: #141a24 !important;
  pointer-events: none;
}

/* opening quote – top left inside the card */
#owner-feature .quote-mark.start {
  top: -5px;
  left: 10px;
  color: #141a24 !important;
}

/* closing quote – bottom right inside the card */
#owner-feature .quote-mark.end {
  bottom: -10px;
  right: 12px;
  line-height: 1;
  color: #141a24 !important;
}

/* OPTIONAL: a tiny effect on hover (no appearing/disappearing) */
#owner-feature .pullquote:hover .quote-mark {
  color: #141a24 !important;
  background: #d1d2f8 !important;
}

/* Responsive: single column on mobile */
@media (max-width: 600px) {
  #owner-feature .mag-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 28px;
  }
}

/* Responsive: two columns on tablet and up */
@media (min-width: 601px) {
  #owner-feature .quote-grid {
    display: inline-block !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 28px;
    margin-bottom: 40px !important;
  }
}
/* Desktop pullquote – card on the right */
@media (min-width: 600px) {
  #owner-feature .pullquote {
    display: flex;
    margin-top: 24px;
    border: 1px solid var(--rule, #e6e8ec);
    border-radius: 16px;
    box-shadow: var(--shadow, 0 18px 44px rgba(0, 0, 0, 0.12));
    color: #141a24 !important;
    align-items: center;
    justify-content: center;
  }
  #owner-feature .pullquote p {
    font-family: ui-serif, Georgia, serif;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }
}

/*  Glossy Bento card (namespaced so global .card rules won't clobber it) --- */
.rsrv-card {
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  padding: 16px 12px 18px !important;
  border: 1px solid rgba(56, 189, 248, 0.6);
  backdrop-filter: saturate(120%) blur(6px);
}

.rsrv-card:hover {
  border: 1px solid rgba(56, 189, 248, 0.6);
  transform: translate(2px);
  box-shadow: #000000;
  transition: 0.2s ease-in-out;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
  background: #d1d2f8 !important;
}
/* top accent "gloss bar" */
.rsrv-card::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 8px;
  height: 4px;
  border-radius: 999px;
  opacity: 0.75;
  pointer-events: none;
}
.rsrv-card::before:hover {
  background: #d1d2f8 !important;
  position: absolute;
  z-index: 1;
}
/* icon + text layout (optional) */
.rsrv-card .rsrv-icon {
  width: 22%;
  top: 10px;
  right: 12px;
  opacity: 0.1;
  stroke: currentColor;
  fill: none;
  filter: none;
}
.rsrv-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #141a24 !important;
}
.rsrv-card p {
  margin: 0 0 14px;
  opacity: 0.75;
  text-align: center;
  color: #141a24 !important;
}

/* pill button */
.rsrv-pill {
  display: inline-block;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--muted);
  background: rgba(255, 255, 255, 0.88) !important;
  font-weight: 700;
}
/* Tablet: 2 columns */
@media (max-width: 640px) {
  #rsrv-container .rsrv-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
    padding-inline: 18px;
  }
}
#rsrv-container .rsrv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

/* Desktop: 4 slim cards */
@media (min-width: 1024px) {
  #rsrv-container .rsrv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-inline: 18px;
  }
}

.srvs-container {
  padding: 22px;
}

/* Center heading text */
.srvs-container .center {
  text-align: center;
  color: #141a24 !important;
}

/* Grid wrapper */
.srvs-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media (min-width: 600px) {
  .srvs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .srvs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
/* Card base */
.srvs-card {
  position: relative;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  gap: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  z-index: 1;
}

/* Icon chip */
.srvs-icon-emoji {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background:
    radial-gradient(circle at 0 0, #e0f2fe, transparent 60%),
    radial-gradient(circle at 100% 100%, #fef3c7, transparent 60%), #eff6ff;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Titles & copy */
.srvs-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #141a24 !important;
  margin: 0;
}
.srvs-card p {
  margin: 0;
  font-size: 15px;
  color: #141a24 !important;
  text-align: center;
}

/* Hover – ANFA glow */
@media (hover: hover) {
  .srvs-card:hover {
    background: #d1d2f8 !important;
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
  }
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
  .srvs-card {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Desktop: 4 slim cards */
@media (min-width: 1024px) {
  .srvs-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-inline: 18px;
  }
}

#nx-services {
  scroll-margin-top: 10px !important;
}
.nx-section {
  display: flex;
  color: #141a24 !important;
  padding: 0px 22px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  justify-content: center;
}

/* Title */
#nx-services h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.nx-emoji-title {
  font-size: 1.6rem;
  color: #141a24 !important;
  text-align: center;
}

.nx-sub {
  color: #141a24 !important;
  font-size: 1rem;
  padding-bottom: 20px;
  margin-bottom: 42px;
}

/* Grid Layout */
.nx-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Grid Layout */
@media (min-width: 600px) {
  .nx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/* Grid Layout */
@media (min-width: 1200px) {
  .nx-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/* Card */
.nx-card {
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
}
.nx-card:hover {
  transform: translateY(-4px);
  background: #d1d2f8 !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  border: 1px solid #201db9;
}

/* Emoji badge */
.nx-icon-emoji {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: #eef2f7;
  margin-bottom: 14px;
}

/* Titles */
.nx-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #141a24 !important;
  margin: 0 0 6px;
}

/* Paragraphs */
.nx-section p {
  font-size: 0.97rem;
  color: #141a24 !important;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

#reserve .reserve-wrap {
  display: grid;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  #reserve .reserve-wrap {
    grid-template-columns: 1fr;
  }
}

#reserve .ndx-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #141a24 !important;
  background: linear-gradient(90deg, rgba(245, 179, 1, 0.18), transparent);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 179, 1, 0.35);
}
#reserve h2 {
  margin: 0.6rem 0 0.4rem;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.12;
  color: #141a24 !important;
}
#reserve .lede {
  color: #141a24 !important;
  max-width: 48ch;
  margin-bottom: 1rem;
}

#reserve .benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.55rem;
}
#reserve .benefits .check {
  display: inline-grid;
  place-content: center;
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  background: linear-gradient(135deg, rgb(243, 200, 8), rgb(250, 114, 2));
  color: #141a24 !important;
  font-weight: 800;
  font-size: 0.75rem;
}

/* namespaced button (avoid global .btn overrides) */
#reserve .rsv-book {
  display: block;
  align-self: center;
  justify-self: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
#reserve .rsv-book:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  background: #d1d2f8 !important;
}
#reserve .rsv-book.wide {
  margin-top: 0.6rem;
}

#reserve .tiny-note {
  color: #141a24 !important;
  font-size: 0.92rem;
  margin-top: 0.6rem;
}

/* right card */
#reserve .reserve-right {
  display: grid;
  place-items: center;
}
#reserve .reserve-left {
  color: #141a24 !important;
  padding: 1.6rem 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(11, 36, 71, 0.06);
}

#reserve .reserve-card {
  width: 92vw;
  padding: 20px;
  border-radius: 18px !important;
  overflow: hidden;
  position: relative;
}

#reserve .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#reserve .rsv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #141a24 !important;
  background: #f0f4f8;
  border: 1px solid var(--line);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
}
#reserve .rsv-pill.live .rsv-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: green;

  animation: rsvPulse 1.8s infinite;
}
@keyframes rsvPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 215, 96, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 215, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 215, 96, 0);
  }
}

#reserve .ticket {
  padding: 18px;
}
#reserve .ticket .rsv-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #141a24 !important;
}
#reserve .ticket .rsv-sub {
  color: #141a24 !important;
  margin: 0.25rem 0 0.5rem;
}

/* subtle moving highlight */
#reserve .stripe {
  left: -20%;
  right: -20%;
  bottom: -50px;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  filter: blur(20px) saturate(1.1);
  animation: rsvSlide 6s ease-in-out infinite alternate;
}
#reserve .rsv-eyebrow {
  position: relative;
  overflow: hidden;
}
#reserve .rsv-eyebrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 175, 1, 0.4),
    transparent
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    left: -40%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes rsvSlide {
  from {
    transform: translateX(-5%) rotate(-6deg);
  }
  to {
    transform: translateX(5%) rotate(-6deg);
  }
}

/* =====================================================
               SERVICES    
  -----------------------------------------------------*/
.hero.hero-animated {
  height: 270px;
  position: relative;
  overflow: hidden;
  margin-top: 72px !important;
  padding-top: 0 !important;
}
.hero-animated .hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  pointer-events: none;
}
.hero-animated .hero-svg {
  width: 100%;
  height: 100% !important;
  display: inline;
}
.hero-animated .hero-svg path {
  fill: transparent;
  stroke: #fff;
  stroke-width: 2px;
  animation: strokeDraw 2s ease-in-out forwards;
}
@keyframes strokeDraw {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}
.hero-animated .hero__bar {
  position: absolute;
  z-index: 5;
  max-width: 1120px;
  margin: auto;
  padding: 24px 20px 36px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center !important;
}

.hero-animated .hero__title {
  text-align: center !important;
  color: #141a24 !important;
  margin: 0;
  font-size: clamp(24px, 4.8vw, 36px);
  line-height: 1.1;
}

.hero-animated .control {
  background: #fff;
  color: #141a24 !important;
  border: 1px solid #e6eef5;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.06);
}
.hero-animated .control label {
  font-size: 0.9rem;
  opacity: 0.85;
}
.hero-animated .control select {
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  padding-right: 28px;
  color: #141a24 !important;
}
.hero-animated .control .chev {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  color: #141a24 !important;
}
.hero-animated .control select:focus {
  border-color: #0a1b2a;
}
/* floating blobs */
.blob {
  transform-origin: center;
}
@keyframes blob1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.05);
  }
}
@keyframes blob2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, 10px) scale(1.06);
  }
}
@keyframes blob3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -8px) scale(1.04);
  }
}
.blob1 {
  animation: blob1 8s ease-in-out infinite;
}
.blob2 {
  animation: blob2 10s ease-in-out infinite;
}
.blob3 {
  animation: blob3 12s ease-in-out infinite;
}

/* flying hair */
.hair-field .hair {
  fill: #ffffff;
  opacity: 0.85;
}
@keyframes floatHair {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.95;
  }
  50% {
    transform: translate(40px, 35px) rotate(22deg);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 70px) rotate(0deg);
    opacity: 0;
  }
}
/* staggered waves */
.h1 {
  animation: floatHair 6s linear infinite;
}
.h2 {
  animation: floatHair 7s linear infinite 0.4s;
}
.h3 {
  animation: floatHair 8s linear infinite 0.8s;
}
.h4 {
  animation: floatHair 6.5s linear infinite 1.2s;
}
.h5 {
  animation: floatHair 7.2s linear infinite 1.6s;
}
.h6 {
  animation: floatHair 8.2s linear infinite 2s;
}
.h7 {
  animation: floatHair 7.6s linear infinite 2.4s;
}
.h8 {
  animation: floatHair 6.8s linear infinite 2.8s;
}
.h9 {
  animation: floatHair 7.4s linear infinite 1s;
}
.h10 {
  animation: floatHair 8.4s linear infinite 1.8s;
}
.h11 {
  animation: floatHair 7.1s linear infinite 0.6s;
}
.h12 {
  animation: floatHair 6.9s linear infinite 2.2s;
}

/* animated scissors gliding a path */
@keyframes scissorMove {
  0% {
    transform: translate(360px, 130px) rotate(12deg);
  }
  25% {
    transform: translate(520px, 150px) rotate(4deg);
  }
  50% {
    transform: translate(700px, 180px) rotate(-6deg);
  }
  75% {
    transform: translate(560px, 210px) rotate(2deg);
  }
  100% {
    transform: translate(360px, 130px) rotate(12deg);
  }
}
@keyframes blades {
  0%,
  100% {
    transform: rotate(18deg);
  }
  50% {
    transform: rotate(-18deg);
  }
}
.scissors {
  animation: scissorMove 7.2s ease-in-out infinite;
  transform-origin: center;
}
.blade {
  transform-origin: 0 0;
}
.blade--top {
  animation: blades 1.25s ease-in-out infinite;
}
/*  CSS code for services.html page Hero (simple gradient so nothing can break) */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 1),
    rgba(42, 210, 255, 1)
  );
  color: #141a24 !important;
}

.hero__bar {
  max-width: 1120px;
  margin: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__shell {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1 1 420px;
}

/* control + button */
.control {
  position: relative;
  flex: 1;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.06);
}
.control label {
  font-size: 0.9rem;
  opacity: 0.8;
  white-space: nowrap;
  color: #141a24 !important;
}
.control select {
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  padding-right: 28px;
  color: #141a24 !important;
}
.control .chev {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  color: #141a24 !important;
  pointer-events: none;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* quick chips */
.board {
  position: relative;
  max-width: 1120px;
  margin: -18px auto 10px;
  padding: 0 20px;
}
.board__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: #fff;
  color: #141a24 !important;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.chip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/*  WHY CHOOSE ANFA — make text crisp + aligned */
.why-anfa .feat p {
  margin: 0;
  color: rgba(11, 29, 57, 0.82);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 44ch;
  margin: 0;
  line-height: 1.55;
  opacity: 0.92;
}
/* force ALL text/content to the RIGHT column */
.why-anfa .feat > :not(img) {
  grid-column: 2;
  text-align: left;
}

/* section title */
.why-anfa h2 {
  color: #141a24 !important;
  font-weight: 900;
  text-align: center;
}

.card {
  background: #fff;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.08);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(18px, 3.6vw, 24px);
}
.card__meta {
  margin: 0.1rem 0;
  opacity: 0.85;
}
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #e6eef5;
  background: #fff;
}
.card__price {
  text-align: right;
  min-width: 120px;
}
.price {
  font-weight: 700;
}
.time {
  font-size: 0.9rem;
  opacity: 0.75;
}
.card__desc {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px dashed #e6eef5;
  line-height: 1.55;
}
.actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}
.addons {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.addon {
  border: 1px dashed #e6eef5;
  border-radius: 12px;
  padding: 0.35rem 0.55rem;
  background: #fff;
  font-size: 0.9rem;
}
[hidden] {
  display: none !important;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}
.feat:hover {
  transform: translateY(-6px);
  background: #d1d2f8 !important;
}
.feat img {
  width: 100px !important;
  height: 100px !important;
  margin-bottom: 12px;
  border-radius: 10px !important;
}

/* Combos */
.combos {
  padding: 0 22px;
  align-items: center;
  text-align: center;
}

/* grid */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .combo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1100px) {
  .combo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* overlay */
.combo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* PHOTO ON THE CARD */
.combos .combo,
.combo-grid .combo,
.combo {
  background-image: var(--img) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  min-height: 240px;
  border: 1px solid var(--card-border) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
}

/* DARK OVERLAY (does NOT replace the photo) */
.combos .combo::after,
.combo-grid .combo::after,
.combo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* KEEP TEXT ABOVE OVERLAY */
.combos .combo > *,
.combo-grid .combo > *,
.combo > * {
  position: relative;
  z-index: 1;
}

/* text on top */
.combo h3,
.combo span {
  position: relative;
  display: block;
  z-index: 2;
  color: #ffffff !important;
  margin: 0;
}
.combo h3 {
  bottom: 2px;
  font-size: 13px;
}

.combo span {
  opacity: 0.95;
  font-size: 13px;
}

/* desktop nice layout */
@media (min-width: 520px) {
  .combo {
    min-height: 30%px;
  }
}

/* Gallery */
.mini-gallery {
  padding: 1px 22px;
  text-align: center;
  margin-bottom: 22px;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-row figure {
  position: relative;
  flex: 1 1 300px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgb(0, 0, 0, 0.1);
  margin: 0;
}
.gallery-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.gallery-row figure:hover img {
  transform: scale(1.1);
  background: #d1d2f8 !important;
}
.gallery-row figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff !important;
  padding: 6px 10px;
  font-size: 13px;
  text-align: center;
  backdrop-filter: blur(6px);
}

/*  CTA STRIPE */
.cta-stripe {
  color: #141a24 !important;
  text-align: center;
}
.cta-inner {
  max-width: 800px;
  border-radius: 18px;
  margin: auto;
}
.cta-inner .btn.big{
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 14px;
}

.cta-stripe .cta-inner h2 {
  padding: 0;
  

}
.cta-inner p {
  margin-bottom: 22px;
  opacity: 0.9;
}
.btn.big {
  font-size: 1.1rem;
  border-radius: 12px;

}
.btn-gal{
  padding: 12px;
  border-radius: 12px;
  display: flex;
  justify-self: center;
  background: rgba(255,255,255,.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}
.gridgallery{
  display: grid;
  gap: 4px;
  
}
#galleryGrid{
  margin: 0;
  padding: 0;


}
/* =====================================================
              ABOUT PAGE
  /*-----------------------------------------------------*/

.ah-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin-top: 72px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0px !important;
  color: #141a24 !important;
  min-height: 72vh;
}
/*-----------------------------------------------------*/

/*-----------------------------------------------------*/
/* Background */
.ah-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(104%) contrast(104%);
  z-index: -1;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0px !important;
}
.ah-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Stack (on TOP of panel) */
.ah-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: grid;
  place-items: start center; /* top aligned */
  padding-top: calc(var(--ah-headroom) + 10px); /* clears header */
}
@media (min-width: 678px) {
  .ah-card {
    display: block !important;
    height: 75% !important;
    aspect-ratio: 4/3;
    width: auto !important;
  }
}
.ah-card {
  position: absolute;
  top: calc(var(--ah-headroom) + 10px);
  left: 50%;
  width: var(--ah-w);
  max-width: 980px;
  aspect-ratio: 4/3;
  transform: translateX(-50%) translateY(calc(-1 * var(--ah-start)));
  border-radius: var(--ah-r);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  object-position: center;
  opacity: 0;
  height: 75%;
  z-index: 9999;
}
.ah-hero.go .ah-card {
  animation: ahFadeDown var(--ah-dur) cubic-bezier(0.2, 0.65, 0.25, 1) forwards;
  animation-delay: calc(var(--i) * var(--ah-gap) + 0.12s);
}
@keyframes ah-fadeDown {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateX(-39.6567%) translateY(0px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(-39.6567%) translateY(0px);
  }
}

@keyframes ahFadeDown {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(calc(-1 * var(--ah-start)));
    filter: blur(0);
  }
  12% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(calc(var(--ah-end) * 0.35));
    filter: blur(0.5px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(var(--ah-end));
    filter: blur(6px);
  }
}
/* Idle hint when not playing */
.ah-stack:not(.go) .ah-card:first-child {
  opacity: 0.12;
  transform: translateX(-50%) translateY(0);
}

/* Type + buttons */
.ah-eyebrow {
  margin: 0 0 8px;
  font:
    800 12px/1 Poppins,
    system-ui;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #141a24 !important;
  text-align: center;
  padding-top: 22px;
}
.ah-title {
  text-align: center;
  color: #141a24 !important;
  margin: 0 0 8px;
  line-height: 1.05;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 52px);
}
.ah-accent {
  background: linear-gradient(90deg, #69bff8, #7bd389, #f9d77e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.ah-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ah-btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 14px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
}
.ah-primary {
  background: linear-gradient(90deg, #69bff8, #7bd389);
  color: #141a24 !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}
.ah-primary:hover {
  transform: translateY(-1px);
}
.ah-ghost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #141a24 !important;
}
.ah-ghost:hover {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  :root {
    --ah-w: min(92vw, 560px);
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ah-hero.go .ah-card {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

/*B) STORY + AV orbits */
.about-vibe {
  position: relative;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  margin: 0;
}
.about-vibe .container {
  margin: auto;
}
.av-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.av-head {
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.eyebrow {
  margin: 20px 0 8px;
  font:
    700 12px/1 Poppins,
    system-ui;
  letter-spacing: 0.14em;
  color: #141a24 !important;
  text-transform: uppercase;
}
.av-title {
  margin: 0 0 6px;
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.02;
}
.av-title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px rgba(15, 37, 50, 0.9);
}
.av-lead {
  max-width: 820px;
  margin: 8px auto 16px;
  font-size: clamp(16px, 2.1vw, 18px);
  opacity: 0.92;
  color: #141a24 !important;
}
.av-stats {
  margin: 16px auto 4px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.av-stats li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.av-stats li strong {
  display: block;
  font-size: 18px;
}
.av-stats li span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/*  Photo Gallery (scoped) */
.pg-root {
  --pg-ink: #0a2533;
  --pg-bg: #f6f9fc;
  --pg-card: #ffffff;
  --pg-ring: 0 18px 44px rgba(2, 6, 23, 0.1);
  --pg-grad: linear-gradient(90deg, #69bff8, #7bd389, #f9d77e);
  --pg-br: 22px;
  --pg-br-img: 16px;
  --pg-gap: 18px;
  color: #141a24 !important;
  background: transparent;
  padding: 20px 20px 8px;
}
.pg-grid {
  display: grid;
  gap: var(--pg-gap);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* mobile */
}
@media (min-width: 740px) {
  .pg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Card */
.pg-card {
  overflow: hidden;
  border-radius: var(--pg-br);
  padding: 14px;
  border: 1.5px solid transparent;
  box-shadow: var(--pg-ring);
  isolation: isolate; /* keep overlays inside */
  transform: translateZ(0);
  justify-items: center;
  margin: 0 auto;
}

/* subtle stagger for energy */
.pg-card.pg-alt {
  margin-top: 12px;
}
@media (min-width: 740px) {
  .pg-card.pg-alt {
    margin-top: 28px;
  }
}

/* Image */
.pg-card img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: var(--pg-br-img);
  display: block;
  filter: saturate(1.02);
  justify-self: center;
}

/* caption: glossy pill that never looks “heavy” */
.pg-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(0.1px) saturate(120%);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #141a24 !important;
  box-shadow: 0 8px 22px rgba(10, 37, 51, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

/* tiny accent dot */
.pg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69bff8;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(105, 191, 248, 0.25);
}

/* micro-interaction (safe) */
.pg-card::after {
  content: "";
  position: absolute;
  transform: translateX(-60%);
  pointer-events: none;
 opacity: 0.55;
 border-radius: inherit;
}
@keyframes pgSheen {
  0% {
    transform: translateX(-60%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(60%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pg-card::after {
    animation: none;
  }
}

/* keep clear of the chat launcher (you already have this class) */
.has-chat-safe {
  padding-bottom: max(96px, env(safe-area-inset-bottom));
}

/* AV Story */
.av-story {
  margin: 12px auto 8px;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.av-story h3 {
  font-size: clamp(20px, 3vw, 26px);
  margin: 10px 0;
  color: #141a24 !important;
}
.av-story p {
  margin: 6px 0 10px;
  color: #141a24 !important;
}
.av-story .quote {
  margin: 10px auto 0;
  max-width: 640px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: #141a24 !important;
}
/* Team title (scoped) */
.tg-title {
  position: relative;
  z-index: 2; /* keep above any decorative layers */
  margin: 28px auto 14px;
  text-align: center;
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  /* gradient ink */
  --tg-grad: linear-gradient(90deg, #69bff8, #7bd389, #f9d77e);
  background: var(--tg-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: #141a24 !important;
  /* subtle embossed stroke for light bgs */
  -webkit-text-stroke: 0.6px rgba(10, 37, 51, 0.25);
}
.tg-title::after {
  content: "";
  display: block;
  width: min(120px, 22vw);
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  opacity: 0.8;
}
/* == Team Grid for about page == */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  padding: 0 20px;
}

.team-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85))
      padding-box,
    linear-gradient(135deg, #69bff8, #7bd389, #f9d77e) border-box;
  border: 1.5px solid transparent;
  border-radius: 24px;
  padding: 22px 18px 28px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.team-photo {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.team-photo img {
  width: 100%;
  height: 154%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 8px 0 4px;
  color: #141a24 !important;
}

.team-role {
  font-size: 0.9rem;
  color: #141a24 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.team-desc {
  font-size: 0.95rem;
  color: #141a24 !important;
  opacity: 0.85;
  margin-top: 10px;
  line-height: 1.5;
}

/* Optional subtle glowing border animation */
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.team-card:hover::after {
  opacity: 0.25;
  filter: blur(18px);
}

/*  Anfa Cummunity tokens (local only) */
.cm-root {
  --ink: #0b2447;
  --text: #0a1b2a;
  --muted: #e6eef5;
  --ring: #cbd6df;
}
.cm-root * {
  box-sizing: border-box;
}
.cm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cm-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Hero ===== */
.cm-hero {
  position: relative;
  isolation: isolate;
  padding: 20px;
  overflow: hidden;
}
.cm-hero .cm-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bggrad);
  transform: translateY(8px) scale(1.02);
}
.cm-hero .cm-kicker {
  color: #141a24 !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 0.25rem;
  text-align: center;
}
.cm-hero h1 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  color: #141a24 !important;
  margin: 0.25rem 0 0.5rem;
  text-align: center;
}
.cm-hero .cm-lede {
  color: #141a24 !important;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.cm-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px auto 0;
  justify-content: center;
}
.cm-chip {
  padding: 8px 12px;
  border-radius: 12px;
  background: #f0f5fa;
  border: 1px solid var(--ring);
  color: #141a24 !important;
  font-weight: 600;
}

/*  Stats  */
.cm-stats .cm-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cm-stat {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(10, 20, 40, 0.06);
}
.cm-stat strong {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #141a24 !important;
}
.cm-stat span {
  color: #141a24 !important;
}

/* STORIES SECTION */
.stories {
  position: relative;
  padding: 5px 20px;
}

.stories-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.stories-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #141a24 !important;
  margin-bottom: 10px;
}

.stories-sub {
  color: #141a24 !important;
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* GRID */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230, 1fr));
  gap: 16px;
}

@media (max-width: 767px) {
  .stories-grid {
    grid-template-columns: 1fr;
    .story-img img {
      height: 300px;
    }
  }
}
@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
  }
}
/* CARD */
.story-card {
  position: relative;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.5s ease,
    box-shadow 0.4s ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* IMAGE + overlay */
.story-img {
  padding: 14px;
  background: #f3f4f7;
  display: grid;
  gap: 12px;
}
.story-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

@media (max-width: 600px) {
  .story-img img {
    aspect-ratio: 4/ 3;
  }
}
.story-card:hover .story-img img {
  transform: scale(1.08);
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.35)
  );
}

/* TEXT */
.story-content {
  padding: 24px;
  text-align: center;
}
.story-content h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #2f87b3, #69bff8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #141a24 !important;
}
.story-content p {
  margin: 0;
  font-size: 15px;
  color: #141a24 !important;
  line-height: 1.6;
  opacity: 0.9;
}

/* 2) Make the Stories section its own layer and cover the page bg */
.stories {
  position: relative;
  isolation: isolate; /* keeps older pseudo-elements behind from leaking in */
}

/* 3) If you copied decorative ::before/::after from another section, kill them here */
.stories::before,
.stories::after {
  content: none !important;
}

/* Event banner  */
.cm-event {
  width: 92%;
  display: flex;
  justify-self: center;
  background: linear-gradient(135deg, #0b2447 0%, #2f87b3 65%);
  color: #141a24 !important;
  padding: 44px 0;
  margin-top: 24px;
  text-align: center;
}
.cm-event h2 {
  margin: 0 0 0.25rem;
}
.cm-event .cm-lede {
  opacity: 0.9;
  margin: 0;
}
.cm-cta-row {
  display: flex;
  gap: 12px;
  margin: 16px auto 0;
  justify-content: center;
  flex-wrap: wrap;
}
.quote-grid .cta-row{
display: flex!important;
flex-wrap: wrap;
justify-content: center!important;
align-content: center!important;
margin:0 auto;
padding: 0 12px 22px;
gap: 12px;
}
.cm-btn,
.cm-btnGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.cm-btn {
  background: #fff;
  color: #141a24 !important;
}
.cm-btnGhost {
  border: 1px solid #cbd6df;
  color: #141a24 !important;
  background: transparent;
}
.cm-btn:hover,
.cm-btnGhost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Prtners Section  */
.anfa-partners.v2 {
  padding: 32px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.anfa-partners.v2 .v2-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.anfa-partners.v2 .v2-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: block; /* ensure not collapsed by global .icon rules */
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.anfa-partners.v2 .v2-icon:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.14));
}

/* Partner icon row: responsive, collision-proof  */
.anfa-partners.v2 .v2-row {
  display: grid;
  grid-template-columns: repeat(5, 56px); /* desktop: 5 across */
  justify-content: center; /* center the whole grid */
  align-items: center;
  gap: 16px 18px; /* row/column gaps */
  padding: 8px 0;
}

/* ensure every svg occupies same visual box */
.anfa-partners.v2 .v2-icon {
  width: 56px;
  height: 56px;
  display: block; /* ignore any global .icon rules */
  justify-self: center; /* center in its grid cell */
  align-self: center;
}

/* keep strokes readable as size changes */
.anfa-partners.v2 .v2-icon * {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.8;
}

/* slightly lighter shadow on small screens */
@media (max-width: 640px) {
  .anfa-partners.v2 .v2-row {
    grid-template-columns: repeat(4, 56px);
  }
  .anfa-partners.v2 .v2-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
  }
}
@media (max-width: 480px) {
  .anfa-partners.v2 .v2-row {
    grid-template-columns: repeat(3, 56px);
    gap: 14px 16px;
  }
}
@media (max-width: 360px) {
  .anfa-partners.v2 .v2-row {
    grid-template-columns: repeat(2, 56px);
    gap: 12px 14px;
  }
}

/* ===== Bottom CTA ===== */
.cm-cta {
  padding: 22px 0;
  text-align: center;
}
.cm-cta h2 {
  color: #141a24 !important;
  margin: 0.25rem 0;
}
.cm-cta .cm-lede {
  color: #141a24 !important;
  margin: 0 0 14px;
}
.cm-cta .cm-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/*1 ===================================================== 
                         REVIEWS PAGE
  ------------------------------------------------------*/

.rv-hero {
  overflow: hidden;
  text-align: center;
  color: #141a24 !important;
  position: relative;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  margin: 92px 22px 22px 22px !important;
}
@media (min-width: 678px) {
  .rv-hero {
    justify-self: center;
  }
}

.rv-hero .rv-inner {
  position: relative;
  padding: 22px 32px 22px;
}
.rv-hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  margin: 0 0 8px;
 color: #141a24 !important;
  z-index:1 ;
}
.rv-hero p {
  max-width: 720px;
  margin: 0 auto 16px;
  opacity: 0.9;
color: #141a24 !important;
  z-index: 1 ;
}

.rv-hero .rv-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rv-hero .rv-btn--primary {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.rv-hero .rv-btn--ghost {
  border: 1px solid rgba(238, 246, 248, 0.988) !important;
 color: #141a24 !important;
}

.rv-hero svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@keyframes rvSwell1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rvSwell2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes rvDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(160px);
  }
}

@keyframes rvTw {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.35);
  }
}

.rv-s2 {
  animation: rvTw 5.2s ease-in-out infinite 0.6s;
}
.rv-s3 {
  animation: rvTw 5.8s ease-in-out infinite 1.2s;
}
@media (prefers-reduced-motion: reduce) {
  .rv-wave1,
  .rv-wave2,
  .rv-ridge,
  .rv-s1,
  .rv-s2,
  .rv-s3 {
    animation: none;
  }
}
/* Rviews addition from web.css to complete style.css */

.rv-hero .rv-btn {
  position: relative;
  border-radius: 12px;
  padding: 0.62rem 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 1 ;
}

@keyframes rvSwell1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rvSwell2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes rvDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(160px);
  }
}

@keyframes rvTw {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.35);
  }
}

.rv-s2 {
  animation: rvTw 5.2s ease-in-out infinite 0.6s;
}
.rv-s3 {
  animation: rvTw 5.8s ease-in-out infinite 1.2s;
}
@media (prefers-reduced-motion: reduce) {
  .rv-wave1,
  .rv-wave2,
  .rv-ridge,
  .rv-s1,
  .rv-s2,
  .rv-s3 {
    animation: none;
  }
}

/*Reviews summary grid (unchanged) */
.rs-block {
  position: relative;
  color: #141a24 !important;
  isolation: isolate;
}

.rs-block .rs-container {
  max-width: 1100px;
  margin-inline: auto;
}

.rs-kicker {
  font:
    700 12px/1 Poppins,
    system-ui;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #141a24 !important;
  text-align: center;
}
.rs-title {
  font:
    800 clamp(24px, 4.6vw, 40px) / 1.08 Poppins,
    system-ui;
  text-align: center;
  color: #141a24 !important;
}
.rs-block .rs-sub {
  margin: 0 auto 18px;
  max-width: 70ch;
  color: #141a24 !important;
  text-align: center;
}

@media (max-width: 740px) {
  .rs-ratings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.rv-name {
  color: #141a24 !important;
}
.rs-rating {
  align-items: center;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.rs-badge svg {
  width: 18px;
  height: 18px;
}
.rs-google {
  color: #141a24 !important;
}
.rs-yelp {
  color: #c41200;
}
.rs-stars {
  --s: #ffc107;
  --e: #e5edf5;
  position: relative;
  height: 18px;
  min-width: 100px;
}
.rs-stars::before,
.rs-stars::after {
  content: "★★★★★";
  font:
    800 16px/1.1 ui-sans-serif,
    Poppins,
    system-ui;
  letter-spacing: 0.16em;
  color: #ffc107;
}
.rs-stars::before {
  color: #141a24 !important;
}
.rs-stars::after {
  position: absolute;
  inset: 0;
  width: calc((attr(data-score number) / 5) * 100%);
  white-space: nowrap;
}
.rv-note {
  margin-left: auto;
  color: #141a24 !important;
}
.rs-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 740px) {
  .rs-note {
    display: block;
  }
  .rv-cta {
    justify-content: flex-start;
  }
}
.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  text-decoration: none;
  border: 1px solid transparent;
}
.rs-btn--ghost {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
.rs-card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 678px) {
  .rs-card {
    background: linear-gradient(
      180deg,
      var(--card-paper) 0%,
      var(--card-paper-2) 100%
    ) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    width: 550px !important;
    padding: 0 !important;
    justify-self: center;
  }
}
.rs-container {
  width: 100%;
}
/* Remove browser default UL padding (this is your 40px) */
ul.rs-grid {
  padding-inline-start: 0 !important; /* kills the 40px */
  padding-left: 0 !important; /* extra safety */
  list-style: none !important;
  gap: 22px !important;
  margin: 22px 22px;
}

/* Cards fill their grid cell */
.rs-grid > .rs-card {
  width: 100%;
  margin: 0; /* remove centering */
}

.rs-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center !important;
  align-items: center !important;
}

.rs-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cfe7ff, #e9f5ff);
  display: grid;
  place-items: center;
  font: 800 16px/1 Poppins;
  color: #141a24 !important;
  margin: 0;
}
.rs-body {
  min-width: 0;
}
.rs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.rs-name {
  font: 700 16px/1.2 Poppins;
  margin: 0;
}
.rs-text {
  padding: 0px 12px;
  color: #141a24 !important;
}
.rs-meta {
  padding: 0 0 22px;
  gap: 8px;
  align-items: center;
  color: #141a24 !important;
  font-size: 0.9rem;
}
.rs-source {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef4fa;
  font-weight: 600;
}
.rs-google-small {
  color: #141a24 !important;
}
.rs-yelp-small {
  color: #141a24 !important;
}
.rs-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
  font-weight: 600;
}
.rs-more a {
  color: #141a24 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.rs-more a:hover {
  color: #141a24 !important;
  text-decoration: underline;
  background: #d1d2f8 !important;
}
.rs-dot {
  opacity: 0.4;
}
/*================================================== *
             LOCATION
 ====================================================== */
.hero-boston {
  position: relative !important;
  overflow: hidden;
  height: 350px;
  isolation: isolate;
}
.hero-boston .container {
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;
}

.hb-content {
  text-align: center;
  padding-top: 20px !important;
}
.hb-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 72px 0 8px;
  padding-top: 5px;
  color: #141a24 !important;
}
.hb-sub {
  font-size: clamp(12px, 2.1vw, 10px);
  max-width: 760px;
  margin: 12px auto 18px;
  opacity: 0.92;
  color: #141a24 !important;
}
.hb-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hb-btn {
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
.hb-btn--primary {
  color: #141a24 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.hb-btn--ghost {
  background: transparent !important;
  border-radius: 14px;
  color: #141a24 !important;
  border: 4px solid rgba(255, 255, 255, 0.35) !important;
}

.hb-canvas {
  width: 100%;
  height: 100%;
  display: inline;
}
.hb-glow {
  x: -200px;
  animation: hbDrift 26s linear infinite;
}
@keyframes hbDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(380px);
  }
}

/* skyline layer with gentle parallax */
.hb-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* skyline layer with gentle parallax */
@media (min-width: 768px) {
  .hb-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -150px;
    padding-bottom: 70px;
    z-index: 1;
    pointer-events: none;
  }
}
.hb-skyline-svg {
  width: 100%;
  display: inline;
  animation: hbSwell 12s ease-in-out infinite;
}
@keyframes hbSwell {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(0);
  }
}

/* “scissor sparkle” drift */
.hb-sparks {
  inset: 0;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 42%;
  left: 16%;
  width: 18px;
  height: 18px;
  opacity: 1%;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.55));
  animation: hbSpark 14s ease-in-out infinite;
}
.hb-spark.delay {
  top: 36%;
  left: auto;
  right: 18%;
  animation-duration: 18s;
  animation-delay: 0.8s;
}
@keyframes hbSpark {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translate(40px, -20px) rotate(15deg);
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translate(80px, -40px) rotate(30deg);
    opacity: 0.15;
  }
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .hb-glow,
  .hb-skyline-svg,
  .hb-sparks {
    animation: none;
  }
}
/* optional: gently fade hero into next section */
.hero-boston::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(246, 249, 252, 1)
  );
  z-index: 2;
  pointer-events: none;
}
.loc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO: content ALWAYS above skyline (skyline becomes ::after)  */
.hero-boston .hb-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

/* HIDE the old skyline element so it can't cover content */
.hero-boston .hb-skyline {
  display: block !important;
}

/* skyline layer as pseudo BEHIND content */
.hero-boston::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px; /* adjust skyline height */
  z-index: -2;
  pointer-events: none;

  /* paste your skyline svg as a background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 360'%3E%3C!-- your skyline paths/rects go here --%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;

  opacity: 0.95;
}

/* optional: fade so text is always readable */
.hero-boston::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* content on top */
.hero-boston .hero-boston__container,
.hero-boston .hb-content {
  position: relative;
  z-index: 2;
}

/* LOCATION • ESSENTIALS (ANFA) Make cards glassy + premium */
.loc-essentials {
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 5vw, 70px) 0;
}
.loc-essentials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}

/* header text inside the section */
.loc-head h2 {
  color: #141a24 !important;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-align: center;
}
.loc-head p {
  color: #141a24 !important;
  margin: 0 0 18px;
  text-align: center;
}

/* Grid */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

/* Cards */
.loc-card {
  grid-column: span 12;
  padding: 18px 18px 16px;
  /* HARD override: kills white bg from older CSS */
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  border-color: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Gradient ring */
.loc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.55),
    rgba(42, 210, 255, 0.35),
    rgba(255, 92, 179, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.loc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 26px 75px rgba(0, 0, 0, 0.48),
    0 0 0 6px rgba(124, 92, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Titles + text */
.loc-card h3 {
  color: #141a24 !important;
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}
.loc-card p {
  margin: 0 0 10px;
  color: #141a24 !important;
}

/* Icon chip */
.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Link style */
.loc-link {
  text-align: center;
  display: flex;
  gap: 8px;
  padding: 10px;
  align-items: center;
  justify-self: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  color: #141a24 !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}
a.loc-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Hours list */
.loc-list {
  margin: 8px 0 22px;
  padding-left: 18px;
  color: #141a24 !important;
}
.loc-list li {
  margin: 6px 0;
}

/* Button */
.loc-btn {
  display: flex;
  justify-self: center;
  margin-top: 16px !important;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15); ;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #141a24 !important;
}

.loc-btn--ghost{
 background: rgba(255,255,255,.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}
.loc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

/* Responsive: 2 columns on tablet, 3 on desktop */
@media (min-width: 720px) {
  .loc-card {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  .loc-card {
    grid-column: span 4;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .loc-card,
  .loc-btn {
    transition: none;
  }
  .loc-card:hover,
  .loc-btn:hover {
    transform: none;
  }
}
/* ================================
   LOCATION — premium glass section
   ================================ */

.loc-mapwrap {
  padding: 0 0 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

/* subtle grid texture *
.loc-mapwrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;

  background-size: 42px 42px;
  opacity: 0.08;
  pointer-events: none;
}

/* extra glow blur *
.loc-mapwrap::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -2;
  filter: blur(24px);
  opacity: 0.55;
  pointer-events: none;
}

/* ================================
   Glass cards inside the section
   ================================ */

/* map should clip nicely */
.loc-map {
  overflow: hidden;
}
/*end*/
.loc-split {
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}
.loc-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  margin: 12px 0 16px;
}
.loc-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 22px;
}
.loc-note {
  grid-column: span 12;
  position: relative;
  border-radius: 22px;
  padding: 18px 18px 16px;
  color: #141a24 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;

  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.loc-fine {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0.9;
  color: #141a24 !important;
}

/* ===== CTA ===== */
.loc-cta {
  color: #141a24 !important;
  margin-top: 22px;
}
.loc-cta h3 {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 8px;
}
.loc-cta p {
  text-align: center;
  opacity: 0.95;
  margin: 0 0 18px;
}
.loc-cta .loc-inline {
  justify-content: center;
}
.loc-card {
  padding: 18px 16px;
}

/* ==========================================================================
                                   CONTACT PAGE
  ---------------------------------------------------------------------*/
.contact-shell {
  padding: 12px 22px 0;
}
/* HERO WRAP */
.contact-hero-wrap {
  position: static;
  overflow: hidden;
  margin-top: 75px !important;
}

.contact-kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: #141a24 !important;
  margin-bottom: 0.6rem;
  text-align: center;
}
.contact-heading {
  font-size: 14pt !important;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 0.8rem;
  color: #141a24 !important;
}
.contact-subline {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  text-align: center;
}
.contact-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-hero-actions .btn-primary {
  display: flex;
  background: rgba(255,255,255,.88) !important;
  
}
.btn-primary, .btn-ghost {
  border-radius: 999px;
  padding: 8px 16px;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    opacity 0.15s ease;
  background: transparent !important;
  color: #141a24 !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
}
 .contact-section-shell .btn-primary {
  display: flex;
  justify-self: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.88) !important;
  font-size: 22px;
  text-align: center;
  margin: 22px 0 0;
  

}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.9);
  background: #d1d2f8 !important;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: #d1d2f8 !important;
}

.hero-pill-row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.8rem;
  align-items: center;
  color: #ffffff;
}
.hero-pill {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(12px);
}
.hero-pill .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
}

.contact-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: #141a24 !important;
}
.contact-metric strong {
  display: block;
  font-size: 1.1rem;
  color: #141a24 !important;
}

/* Right card */
.contact-right-card {
  border-radius: 26px;
  padding: 1.6rem 1.7rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.28);
  backdrop-filter: blur(20px);
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  margin: 26px 0 12px;
}
.contact-right-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #141a24 !important;
}
.contact-right-list {
  display: grid;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: #141a24 !important;
}
.contact-right-list span {
  display: block;
  opacity: 0.78;
}

/* CONTACT METHODS SECTION */

.contact-section-header {
justify-content: center !important;
  align-items: center !important;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-section-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #141a24 !important;
  text-align: center;
}
.contact-section-header p {
  margin: 0;
  font-size: 0.86rem;
  color: #141a24 !important;
  max-width: 26rem;
  text-align: center !important;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.contact-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.55);
  color: #141a24 !important;
  background: #d1d2f8 !important;
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #38bdf8, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-title {
  font-weight: 600;
  font-size: 0.98rem;
  color: #141a24 !important;
}
.contact-card-sub {
  font-size: 0.78rem;
  color: #141a24 !important;
}
.contact-card-body {
  font-size: 0.84rem;
  color: #141a24 !important;
  opacity: 0.9;
}
.contact-card-cta {
  font-size: 0.82rem;
  margin-top: 0.4rem;
  color: #141a24 !important;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.contact-card-cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.contact-form-card,
.contact-info-card {
  /* width: 100%;*/
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  position: relative;
  padding: 1.8rem 1.7rem 2.1rem;
  margin-top: 15px !important;
  align-self: start;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  margin-bottom: 22px !important;
}
@media (min-width: 900px) {
  .contact-form-card,
  .contact-info-card {
    background: linear-gradient(
      180deg,
      var(--card-paper) 0%,
      var(--card-paper-2) 100%
    ) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
    overflow: hidden;
    position: relative;
  }
}
.contact-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
}
.contact-field label {
  color: #141a24 !important;
}
.contact-field label span {
  color: #141a24 !important;
}

.contact-input,
.contact-textarea,
.contact-select {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  color: #141a24 !important;
}
.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  margin: 0.6rem 0 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #141a24 !important;
  cursor: pointer;
  display: block;
  align-items: center;
  gap: 0.4rem;
  justify-self: center!important;
}

.contact-bullets {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.86rem;
}
.contact-map-placeholder {
  margin-top: 1.2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 0;
  background: rgba(15, 23, 42, 0.35);
}
.contact-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 360px;
}

/* ✅ Toast: fixed overlay, never creates a “gap” */
.contact-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  width: min(920px, calc(100% - 32px));
  background: rgba(15, 23, 42, 0.95);
  color: #141a24 !important;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  z-index: 9999;
}
.contact-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pill-row {
    justify-content: center;
  }
  
}
@media (max-width: 768px) {
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-hero-actions {
    /*flex-direction: column; */
    align-items: stretch;
  }
}

/* CONTACT MAIN: clean grid */

/* desktop layout */
@media (min-width: 920px) {
  .contact-shell.contact-main {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px !important;
  }
}

/* tighten headings (avoid accidental space) */
.contact-form-card h2,
.contact-info-card h3 {
  margin: 0 0 10px;
  color: #141a24 !important;
}

.contact-info-list > div {
  margin: 0 0 12px;
}
.contact-info-label {
  font-weight: 700;
  opacity: 0.92;
  margin-bottom: 4px;
}

.contact-bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  opacity: 0.95;
}

/* map should not create gaps */
.contact-map-placeholder {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* toast should not take layout space */
.contact-toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 28px));
  z-index: 9999;
  margin: 0 !important;
}

/* ================================================
                     BARBERS PAGE (SCOPE
 ----------------------------------------------------*/
.barbers-page {
  padding-top: 72px;
}

.barbers-hero-wrap {
  padding: 22px 20px 22px;
}
.barbers-hero-card {
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* panels */
.barbers-hero-panel {
  padding: 24px 22px;
}
/* media panel (left on desktop) */
.barbers-hero-panel--media {
  position: relative;
  min-height: 200px;
}
.barbers-hero-photo {
  width: 75%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  border-radius: 12px;
  justify-self: center;
}

.barbers-hero-gradient {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(11, 29, 57, 0.92) 0%,
    rgba(9, 18, 38, 0.94) 55%,
    rgba(7, 12, 26, 0.96) 100%
  ) !important;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* content panel (right on desktop) */

.barbers-hero-panel--content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.barbers-hero-eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.85;
}
.barbers-hero-title {
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.barbers-hero-sub {
  margin: 0;
  max-width: 30rem;
  font-size: 14px;
}

.barbers-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.barbers-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.barbers-hero-btn--primary {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.barbers-hero-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  background: #d1d2f8 !important;
}

.barbers-hero-btn--ghost {
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.barbers-hero-btn--ghost:hover {
  background: #d1d2f8 !important;
}

/* badges */
.barbers-hero-badges {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  opacity: 0.9;
}

.barbers-hero-badges li::before {
  content: "• ";
}

/* Desktop layout  */

@media (min-width: 900px) {
  .barbers-hero-card {
    flex-direction: row;
    min-height: 320px;
  }

  .barbers-hero-panel--media {
    flex: 1 1 45%;
  }

  .barbers-hero-panel--content {
    flex: 1 1 55%;
    padding: 38px 40px;
    justify-content: center; /* vertical center */
  }
  .barbers-hero-title {
    font-size: 34px;
  }
  .barbers-hero-sub {
    font-size: 15px;
  }
  .barbers-hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* extra-wide screens */
@media (min-width: 1200px) {
  .barbers-hero-wrap {
    padding-top: 84px;
  }
  .barbers-hero-card {
    min-height: 360px;
  }
}

/* ---- Team cards ---- */
.barbers-staff {
  border-radius: 18px !important;
  overflow: hidden;
}
.barbers-staff__header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 22px;
}
.barbers-staff__header h2 {
  font-size: 24px;
  margin: 0 4px;
  color: #141a24 !important;
}
.barbers-staff__header p {
  margin: 0;
  font-size: 14px;
  color: #141a24 !important;
}
.barbers-staff__grid {
  display: grid;
  gap: 22px;
}
@media (max-width: 600px) {
  .barbers-staff__grid {
    grid-template-columns: repeat(1, minmax(0, 0.85fr));
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .barbers-staff__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.barbers-card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  position: relative;
  display: grid;
}

.barbers-card__img {
  width: 100%;
  height: auto;
  align-self: center;
  aspect-ratio: 3 / 4;
}
.barbers-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.barbers-card__name {
  font-size: 18px;
  margin: 0;
  color: #141a24 !important;
}
.barbers-card__role {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #141a24 !important;
}
.barbers-card__text {
  margin: 4px 0 6px;
  font-size: 13px;
  color: #141a24 !important;
  text-align: center;
}

.barbers-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 10px;
}
.barbers-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #141a24 !important;
  text-decoration: underline;
}
.barbers-card__btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.barbers-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28);
  background: #d1d2f8 !important;
}

/* BARBERS PAGE WRAPPER   */

.barbers-page-wrapper {
  margin-bottom: 1rem !important;
}

.barbers-book__header {
  text-align: center;
  margin-bottom: 22px;
  color: #141a24 !important;
}

.barbers-book__header p {
  margin: 0;
  font-size: 14px;
  color: #141a24 !important;
}
.barbers-book__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px !important;
}
/* gradient border */
.barbers-book__card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, red, green, blue);
  pointer-events: none;

  /* cut the middle out (so only border shows) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

/* keep content above the border */
.barbers-book__card > * {
  position: relative;
  z-index: 1;
}

.barbers-book__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: radial-gradient(circle at 0 0, #b400ff, #ff4ec3);
  color: #141a24 !important;
  margin-bottom: 8px;
}
.barbers-book__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #141a24 !important;
}
.barbers-book__card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #141a24 !important;
}

/* BARBERS PAGE WRAPPER */
.barbers-book {
  padding: 0 20px;
}
.barbers-book__header {
  text-align: center;
  margin-bottom: 22px;
}

.barbers-book__header p {
  margin: 0;
  font-size: 14px;
  color: #141a24 !important;
}

.barbers-book__card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  padding: 18px 18px 16px;
}
.barbers-book__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: radial-gradient(circle at 0 0, #b400ff, #ff4ec3);
  color: #141a24 !important;
  margin-bottom: 8px;
}
.barbers-book__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.barbers-book__card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #141a24 !important;
}
.barbers-book__link {
 font-size: 13px;
 border-radius: 5px;
 padding: 5px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);;
  }
   .barbers-book--link{
    background:none!important;
    color: #2563eb;
  }

  .barbers-book---link{
    background: none!important;
     color: #2563eb;
  }
  .barbers-vibes__link{
      color: #2563eb;
  }

/* ---- Vibes / gallery ---- */

.barbers-mood {
  max-width: 1120px;
  padding: 0 20px;
}
.barbers-mood__header {
  text-align: center;
  padding-bottom: 16px;
}
.barbers-mood__header h2 {
  margin: 0 0 4px;
  font-size: 22px;
}
.barbers-mood__header p {
  margin: 0;
  font-size: 14px;
  color: #141a24 !important;
}
.barbers-mood__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.barbers-mood__card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 22px auto;
}
.barbers-mood__img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  aspect-ratio: 2 /3;
}
.barbers-mood__body {
  padding: 16px 16px 18px;
}
.barbers-mood__body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.barbers-mood__body p {
  margin: 0 0 8px;
  color: #141a24 !important;
}
.barbers-mood__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.barbers-mood__link {
  font-size: 13px;
  font-weight: 600;
    color: #2563eb;
  text-decoration: none;
}

/* ===========================================
        GALLERY PAGE
-------------------------------------------- */

.gal_pg {
  margin-top: 82px;
  justify-items: center;
}
.gal_pg .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.4) contrast(1.1) brightness(0.9);
}
.gal_pg .hero-overlay {
  position: absolute;
  inset: 0;

  mix-blend-mode: soft-light !important;
}

@media (max-width: 678px) {
  .grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 12px;
  }
}
.gal_pg.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  text-align: center;
  
}
.gal_pg .hero-content h1 {
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  text-align: center;
}

.gal_pg .hero-content .sub {
  margin: 0 0 18px;
  opacity: 0.9;
}
.gal_pg .hero-content .btn {
  display: block;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
  padding: 12px;
  text-align: center;
  z-index: 1;
}
.gal_pg .hero-content .btn:hover {
  transform: translateY(-1px);
  background: #d1d2f8 !important;
}

/* hero layout on larger screens */
@media (min-width: 768px) {
  .gal_pg {
    padding: 22px !important;
    align-items: center;
    justify-content: flex-start;
  }
}
  .gal_pg .hero-content {
    position: relative;
    max-width: 720px;
    text-align: center;
    z-index: 1;
  }


/*GALLERY LAYOUT */
.container-gallery {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 0px;
}
.container-gallery .center {
  text-align: center;
}
.container-gallery h1.center {
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.container-gallery p.center {
  font-size: 0.98rem;
  color: #141a24 !important;
}

/*  FILTER CHIPS  */

.filters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  z-index: 1;
  padding: 0 0 12px ;
}
.filters button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #141a24 !important;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.02em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

.filters button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(9, 16, 54, 0.45);
  background: #d1d2f8 !important;
}

.filters button.active {
  color: #141a24 !important;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(11, 163, 255, 0.55);
}

/* IMAGE GRID  */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #050b18;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(3, 5, 20, 0.55);
}

/* subtle border glow */
.shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(38, 222, 255, 0.7),
    rgba(132, 94, 255, 0.7)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* caption gradient */
.shot .cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 10px 14px 12px;
  font-size: 0.85rem;
  color: #fdfdff;
  text-align: center;
  background: linear-gradient(to top, rgba(3, 5, 22, 0.95), rgba(3, 5, 22, 0));
}

/* hover state */
.shot:hover::before {
  opacity: 1;
  background: #d1d2f8 !important;
}

.shot:hover img {
  transform: scale(1.06);
  filter: saturate(1.25) contrast(1.08);
  background: #d1d2f8 !important;
}

/*  BOOK BUTTON UNDER GRID  */

.container-gallery .btn {
  border-radius: 999px;
  padding-inline: 1.7rem;
}

/* LIGHTBOX*/
.lightbox {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(15, 30, 68, 0.95),
    rgba(0, 0, 10, 0.96)
  );
  display: none; /* JS will add .is-open */
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.8);
}

/* close button */
#lightboxClose {
  position: absolute;
  top: 22px;
  right: 24px;
  background: red !important;
  color: #141a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

#lightboxClose:hover {
  background: #d1d2f8 !important;
  color: #141a24 !important;
}

/*SMALL SCREEN TWEAKS  */
@media (max-width: 600px) {
  .hero {
    margin-top: 80px;
    border-radius: 0;
  }
  .hero .hero-content {
    padding: 32px 18px 38px;
  }
  
  }

/* ============================================= 
                BOOKING PAGE LAYOU
------------------------------------------------ */
.hero__bookin {
  position: relative;
  padding: 4rem 1rem 0;
}
.hero__bookin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__content.container {
  max-width: 720px;

  z-index: -3 !important;
}

.bookin__eyebrow {
  color: #141a24 !important;
  text-align: center;
}
.hero__title span {
  background: linear-gradient(90deg, #2563eb, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  text-align: center;
  padding: 0 22px 22px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  
}

.btn--ghost {
 background: rgba(255,255,255,.88) !important;
  color: #141a24 !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  display: block;
 border-radius: 12px;
 padding: 12px;
 margin-bottom: 12px;
}
.hero__highlights {
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
  color: #141a24 !important;
}

/* steps */
.booking-steps {
  margin-bottom: 0 !important;
}
.booking-steps__grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .booking-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.step-card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  position: relative;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  margin-top: 12px;
}
.step-card__badge {
  position: absolute;
  top: -0.9rem;
  left: 1.3rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b400ff, #ff4ec3);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.step-card__title {
  margin: 0.6rem 0 0.4rem;
  color: #141a24 !important;
  text-align: center;
}

/* featured services */
.booking-featured {
  margin-bottom: 0 !important;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-head p {
  color: #141a24 !important;
}

.booking-featured__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .booking-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  margin: 0 22px 0 !important;
}

.service-card__link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #141a24 !important;
}
.service-card h3 {
  color: #141a24 !important;
}

/* ===== ANFA • Atmosphere Bento Grid ===== */

.booking-atmosphere__media {
  /* centered wrapper */
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 14px;
  box-sizing: border-box;

  /* bento grid */
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr 1fr;
  grid-auto-rows: 170px;

  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.booking-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

.booking-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.booking-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0) 60%
  );
  opacity: 0.45;
  pointer-events: none;
}

.booking-photo:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.04);
  background: #d1d2f8 !important;
}

.booking-atmosphere .booking-atmosphere__text p {
  color: #141a24 !important;
  padding: 0 22px;
  text-align: center;
}

.booking-atmosphere .booking-atmosphere__text h2 {
  color: #141a24 !important;
  text-align: center;
}
/* Placement (desktop/tablet) */
.booking-photo--main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.booking-photo--secondary {
  grid-column: 2;
}

/* Make the 2nd small one slightly wider/taller (more bento feel) */
.booking-photo--secondary:nth-of-type(3) {
  grid-row: span 1;
}


  .booking-photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .booking-photo--secondary {
    grid-column: auto;
  }


/*  FIX: Atmosphere Bento (no overlap, clean placement)  */
.booking-atmosphere__media {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-auto-rows: 160px !important;
  gap: 14px !important;

  width: min(520px, 100%) !important;
  margin-inline: auto !important;
  padding: 14px !important;
  box-sizing: border-box !important;
}

/* HARD RESET: stop any old absolute/transform rules */
.booking-atmosphere__media > * {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  margin: 0 !important;

  transform: none !important;
  translate: none !important;

  z-index: 0 !important;
}

/* Placement (no matter what classes) */
.booking-atmosphere__media > :nth-child(1) {
  grid-column: 1 / -1 !important;
  grid-row: 1 / span 2 !important;
  min-height: 320px !important;
}
.booking-atmosphere__media > :nth-child(2) {
  grid-column: 1 !important;
  grid-row: 3 !important;
}
.booking-atmosphere__media > :nth-child(3) {
  grid-column: 2 !important;
  grid-row: 3 !important;
}

/* images fill tiles */
.booking-atmosphere__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 22px !important;
}

/* the tile itself */
.booking-atmosphere__media figure {
  overflow: hidden !important;
  border-radius: 22px !important;
}

.bookin h3 {
  font-size: 1.05rem;
  color: #005792 !important;
}

.bookin p {
  padding: 0 22px 0px;
  font-size: 0.9rem;
  color: #0f172a !important;
  text-align: center;
}

@media (min-width: 768px) {
  .booking-atmosphere__grid,
  .container.bookin__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-atmosphere__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

/* Mobile tweaks */
@media (max-width: 560px) {
  .site-footer .newsletter-field {
    padding: 10px;
  }
  .site-footer .btn-subscribe {
    padding: 0.8rem 1rem;
  }
}
.loc-card p {
  color: #010101 !important;
  font-weight: 600;
  line-height: 1.55;
}

.loc-card li {
  color: #010101 !important;
  font-weight: 600;
  line-height: 1.55;
}
/* make the small labels clear too (if you have them) */
.loc-card small,
.loc-card .muted {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 600;
}
.loc-pane .loc-list li {
  color: #141a24 !important;
}

/* test */
/*  WHY CHOOSE ANFA — REAL left image + right text (no stacking) */
.why-anfa {
  text-align: center;
}

/* super small phones: still side-by-side but smaller thumb */
@media (max-width: 380px) {
  .why-anfa .feat {
    grid-template-columns: 110px 1fr;
    row-gap: 4px;
  }
  .why-anfa .feat p {
    font-size: 13px;
    max-width: none;
  }
  .why-anfa .feat > img {
    width: 110px;
    height: 80px;
  }
}

/* WHY CHOOSE ANFA — FIX GRID (cards grid + clean card layout) */
.why-anfa .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

/* mobile: 1 per row */
@media (max-width: 720px) {
  .why-anfa .features {
    grid-template-columns: 1fr;
  }
}

/* 2) each card layout: image left, text right */
.why-anfa .feat {
  width: auto !important;
  height: auto !important;
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "img title"
    "img body";
  column-gap: 12px;
  row-gap: 6px;
  align-items: start;
  padding: 12px;
  background: linear-gradient(
    180deg,
    var(--card-paper) 0%,
    var(--card-paper-2) 100%
  ) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14) !important;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  margin: 0px 22px 10px;
}

/* image */
.why-anfa .feat > img {
  grid-area: img;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* title */
.why-anfa .feat > h3 {
  grid-area: title;
  margin: 2px 0 0; /* tight */
  line-height: 1.15;

  color: #141a24 !important;
  font-weight: 900;
  font-size: 16px;
}
/* paragraph */
.why-anfa .feat > p {
  grid-area: body;
  max-width: 48ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #141a24 !important;
  /* prevents ugly tall cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Reviews: root + hero */

@keyframes rvSwell1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rvSwell2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes rvDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(160px);
  }
}
.rv-wave1 {
  opacity: 0.65;
  filter: blur(10px);
  animation: rvSwell1 12s ease-in-out infinite;
}
.rv-wave2 {
  opacity: 0.55;
  filter: blur(14px);
  animation: rvSwell2 16s ease-in-out infinite;
}
.rv-ridge {
  opacity: 0.35;
  filter: blur(18px);
  animation: rvDrift 28s linear infinite;
}
.rv-spark {
  fill: blue;
}
@keyframes rvTw {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.35);
  }
}
.rv-s1 {
  animation: rvTw 4.6s ease-in-out infinite;
}
.rv-s2 {
  animation: rvTw 5.2s ease-in-out infinite 0.6s;
}
.rv-s3 {
  animation: rvTw 5.8s ease-in-out infinite 1.2s;
}
@media (prefers-reduced-motion: reduce) {
  .rv-wave1,
  .rv-wave2,
  .rv-ridge,
  .rv-s1,
  .rv-s2,
  .rv-s3 {
    animation: none;
  }
}

/* =====================================================
JS STYLE FOR SERVICES PAGE
================================================= */
.svscontainer{
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
}
.svscard{
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;

  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);

  animation: fadeUp .35s ease;
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform:none; }
}
.card_title{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: .2px;
}

.card_meta{
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(0,0,0,.65);
}
.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.badges span,
.badges .badge{
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(17,24,39,.06);
  border: 1px solid rgba(0,0,0,.08);
}
.card_price{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.price{
  font-weight: 700;
  font-size: 18px;
}

.time{
  font-size: 13px;
  color: rgba(0,0,0,.6);
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.15);
}
.card_desc{
  margin: 6px 0 0;
  line-height: 1.5;
  font-size: 14.5px;
  color: rgba(0,0,0,.72);
}
.addons{
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.addons div,
.addons li{
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
}
.actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.btn{
  cursor: pointer;
  font-weight: 600;
  justify-self: center;

}

.btn-primary:hover{
  transform: translateY(-1px);
}
