/* =========================================================
   AMC Psychiatric Services — Design System & Site Styles
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --sage: #6E8F6B;
  --sage-dark: #465E45;
  --sage-darker: #2F3E2D;
  --sage-light: #E7EFE3;
  --sage-pale: #F2F6EE;

  --cream: #FBF7EF;
  --ivory: #F6F0E3;
  --blush: #F5E9E3;

  --gold: #C79A56;
  --gold-dark: #A87F42;

  --ink: #24302A;
  --ink-soft: #4C5850;
  --ink-faint: #7C8880;

  --white: #FFFFFF;
  --line: #E4DFD2;

  /* Type */
  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii & shadow */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(47, 62, 45, 0.07);
  --shadow-md: 0 14px 40px rgba(47, 62, 45, 0.12);
  --shadow-lg: 0 24px 64px rgba(47, 62, 45, 0.18);

  --container: 1200px;
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--sage-darker);
}

p {
  margin: 0;
}

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

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

svg {
  display: block;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 14px;
}

/* .eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
} */

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2.h-lg {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
}

.lede {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 16px;
}

.italic {
  font-style: italic;
  color: var(--gold-dark);
}

.bg-sage {
  background: var(--sage-darker);
  color: var(--white);
}

.bg-sage h2,
.bg-sage h3,
.bg-sage .eyebrow {
  color: var(--white);
}

.bg-sage .lede {
  color: rgba(255, 255, 255, 0.78);
}

.bg-pale {
  background: var(--sage-pale);
}

.bg-ivory {
  background: var(--ivory);
}

.bg-blush {
  background: var(--blush);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage-darker);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(36, 48, 42, 0.25);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--sage-darker);
  background: var(--sage-darker);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--sage-darker);
}

.btn-sm {
  padding: 15px 20px;
  font-size: 0.85rem;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-logo--light {
  width: 250px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding-top: 6px;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .25s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active,
.nav-links li.current-menu-item>a,
.nav-links li.current_page_item>a {
  color: var(--sage-darker);
}

.nav-links li.current-menu-item>a::after,
.nav-links li.current_page_item>a::after {
  width: 100%;
}

.nav-links .mobile-cta {
  display: none;
}

.side-menu-links li {
  list-style: none;
}

.side-menu-links li.current-menu-item>a {
  color: var(--white);
  background-color: var(--sage-darker);
}

.side-menu-links li a {
  transition: all ease 0.3s;
}

.side-menu-links li a:hover {
  color: var(--white);
  background-color: var(--sage-darker);
  transition: all ease 0.3s;
}

/* Desktop dropdown (hover) */
.nav-links li.menu-item-has-children>a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links li.menu-item-has-children>a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  transition: transform .4s ease;
  flex-shrink: 0;
}

.nav-links li.menu-item-has-children:hover>a::before,
.nav-links li.menu-item-has-children.dropdown-open>a::before {
  transform: rotate(-135deg) translateY(1px);
}

.nav-links li.menu-item-has-children:hover>a::before{
  margin-top: 4px;
}

.nav-links .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 265px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 60;
}

.nav-links li.menu-item-has-children:hover>.sub-menu,
.nav-links li.menu-item-has-children:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  list-style: none;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: normal;
}

.nav-links .sub-menu a::after {
  display: none;
}

.nav-links .sub-menu a:hover {
  background: var(--sage-darker);
  color: #fff;
}

/* Mobile side-menu expandable submenu */
.side-menu-links li.menu-item-has-children {
  position: relative;
}

.side-menu-links li.menu-item-has-children>a {
  padding-right: 44px;
}

.side-submenu-toggle {
  position: absolute;
  top: 11px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.side-submenu-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
}

li.sub-open>.side-submenu-toggle {
  transform: rotate(180deg);
  background: var(--sage-pale);
}

.side-menu-links .sub-menu {
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  border-left: 2px solid var(--line);
}

.side-menu-links .sub-menu li {
  list-style: none;
}

.side-menu-links .sub-menu a {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--sage-darker);
  white-space: nowrap;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.portal-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}

.qr-badge {
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.qr-badge .qr-canvas {
  width: 100%;
  height: 100%;
  display: flex;
}

.qr-badge .qr-canvas img,
.qr-badge .qr-canvas canvas,
.qr-badge .qr-canvas table {
  width: 100% !important;
  height: 100% !important;
}

.portal-label {
  line-height: 1.25;
  white-space: nowrap;
}

.portal-label strong {
  display: block;
  font-size: 0.8rem;
  color: var(--sage-darker);
  font-weight: 700;
  transition: color .2s ease;
}

.portal-label span {
  display: block;
  font-size: 0.66rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portal-label:hover strong {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sage-darker);
  transition: all .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 150px;
  background: var(--sage-pale);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 15% 20%, rgba(199, 154, 86, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(110, 143, 107, 0.18), transparent 45%); */
  background: #00000059;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 950px;
  margin: 0 auto;
}

.page-hero .lede {
  max-width: 850px;
  margin: 18px auto 0;
}

.inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.4; */
}

.crumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.crumbs a {
  color: var(--sage-dark);
  font-weight: 600;
}

.inner-banner-content-sec span,
.inner-banner-content-sec h1,
.inner-banner-content-sec p {
  color: #fff;
}

/* ---------- Home Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow {}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats .stat,
.cta-counters-list .stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-stats .stat b,
.cta-counters-list .stat b {
  font-size: 2rem;
}

.stat b span {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--sage-darker);
}

.stat span {
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-media {
  position: relative;
}

.hero-media .shape {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 90%;
  height: 90%;
  background: var(--sage-light);
  border-radius: var(--r-lg);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-media .float-card {
  position: absolute;
  z-index: 2;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  width: 200px;
}

.hero-media .float-card a img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-media .float-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-darker);
  flex-shrink: 0;
}

.hero-media .float-card .ico svg {
  width: 24px;
  height: auto;
}

.hero-media .float-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.hero-media .float-card span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* ---------- Logo / Insurance strip ---------- */
.strip {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 26px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.logo-row span {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink-soft);
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  height: 480px;
  object-fit: cover;
}

.split-media .frame {
  position: absolute;
  z-index: -1;
  top: 26px;
  left: 26px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
}

.check-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--sage-darker), var(--sage));
  border-radius: var(--r-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.cta-banner h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 520px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  justify-content: end;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Services grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 34px 28px;
  border: 1px solid var(--line);
  transition: all .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card .ico {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-darker);
  margin-bottom: 20px;
}

.service-card .ico svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card.has-image {
  padding: 0;
  overflow: hidden;
}

.service-card-img {
  height: 190px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card.has-image:hover .service-card-img img {
  transform: scale(1.06);
}


.service-card-btn {
  width: fit-content;
}

/* ---------- Disorder accordion (services page) ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
}

.acc-head h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 16px;
}

.acc-head .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-darker);
  flex-shrink: 0;
}

.acc-head .ico svg {
  width: 22px;
  height: 22px;
}

.acc-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .25s ease;
}

.acc-plus::before,
.acc-plus::after {
  content: "";
  position: absolute;
  background: var(--sage-darker);
  transition: all .25s ease;
}

.acc-plus::before {
  width: 12px;
  height: 2px;
}

.acc-plus::after {
  width: 2px;
  height: 12px;
}

.acc-item.open .acc-plus {
  background: var(--sage-darker);
  transform: rotate(180deg);
}

.acc-item.open .acc-plus::before,
.acc-item.open .acc-plus::after {
  background: var(--white);
}

.acc-item.open .acc-plus::after {
  height: 0;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.acc-body-in {
  padding: 0 28px 28px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
}

/* ---------- Option cards (telemedicine / face-to-face) ---------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.option-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--line);
}

.option-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-card h3 .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-card ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.option-card ul li b {
  color: var(--ink);
}

.option-card ul li svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px;
  text-align: center;
}

.price-card.featured {
  background: var(--sage-darker);
  color: var(--white);
  border-color: transparent;
  /* transform: translateY(-10px); */
  box-shadow: var(--shadow-lg);
}

.price-card.featured h4,
.price-card.featured .price {
  color: var(--white);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.price-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.price-card .price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--sage-darker);
  margin: 10px 0;
}

.price-card p {
  color: var(--ink-faint);
  font-size: 0.9rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .25s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.avatar {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--sage-light), var(--blush));
  position: relative;
}

.avatar svg {
  width: 84px;
  height: 84px;
  color: var(--sage-darker);
  opacity: 0.5;
}

.avatar .initials {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--sage-darker);
  box-shadow: var(--shadow-sm);
}

.team-body {
  padding: 28px;
}

.team-body h3 {
  font-size: 1.3rem;
}

.team-body .role {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0 14px;
}

.team-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.team-body p+p {
  margin-top: 12px;
}

.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.credentials-row span {
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ---------- Testimonials ---------- */
.testi-wrap {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 86vw);
  background: var(--white);
  border-radius: var(--r-md);
  padding: 34px;
  border: 1px solid var(--line);
}

.bg-sage .testi-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.bg-sage .service-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.bg-sage .service-card h3 {
  color: #fff;
}

.bg-sage .service-card p {
  color: rgba(255, 255, 255, 0.75);
}

.bg-sage .service-card .ico {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testi-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.bg-sage .testi-card p {
  color: rgba(255, 255, 255, 0.85);
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.testi-who .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--sage-darker);
  font-weight: 600;
}

.testi-who b {
  display: block;
  font-size: 0.95rem;
}

.testi-who span {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.bg-sage .testi-who span {
  color: rgba(255, 255, 255, 0.6);
}

.testi-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.testi-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.testi-nav button:hover {
  background: var(--sage-darker);
  border-color: var(--sage-darker);
  color: var(--white);
}

.testi-nav svg {
  width: 18px;
  height: 18px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-card .ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--sage-light);
  color: var(--sage-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card .ico svg {
  width: 24px;
  height: 24px;
}

.info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.info-card p,
.info-card a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  display: block;
}

.info-card a:hover {
  color: var(--sage-dark);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field p br {
  display: none;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  transition: all .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(110, 143, 107, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 14px;
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 340px;
  margin-top: 26px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Ketamine specifics ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 8px;
}

.process-step .num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--sage-light);
  -webkit-text-stroke: 1.5px var(--sage);
  margin-bottom: 10px;
  display: block;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.info-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 40px;
}

.info-panel+.info-panel {
  margin-top: 24px;
}

.info-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.info-panel p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.info-panel p+p {
  margin-top: 14px;
}

.pill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pill-badges span {
  background: var(--blush);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: var(--r-pill);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-darker);
  color: rgba(255, 255, 255, 0.82);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col .fc-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  align-items: flex-start;
}

.footer-col .fc-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  flex-wrap: wrap;
  column-gap: 35px;
  row-gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom span:nth-child(3) {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-copy-right-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Decorative blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Team bio cards (Team page, detailed layout) ---------- */
.bio-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 30px;
}

.bio-card:last-child {
  margin-bottom: 0;
}

.bio-card .avatar {
  height: 280px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.bio-card h3 {
  font-size: 1.6rem;
}

.bio-card .role {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 8px 0 18px;
}

.bio-card p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}

.bio-card blockquote {
  margin: 18px 0 0;
  padding: 16px 20px;
  background: var(--sage-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--sage-darker);
  font-family: var(--font-head);
  font-size: 1.05rem;
}



/* ---------- Insurance logo carousel (Swiper) ---------- */
.logo-slider {
  position: relative;
  /* padding: 0 60px; */
}

.logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider .swiper-slide img {
  width: auto;
  height: 110px;
  opacity: 0.8;
  filter: grayscale(15%);
}

.logo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all .2s ease;
}

.logo-nav:hover {
  background: var(--sage-darker);
  border-color: var(--sage-darker);
  color: var(--white);
}

.logo-nav.prev {
  left: 0;
}

.logo-nav.next {
  right: 0;
}

.logo-nav svg {
  width: 18px;
  height: 18px;
}

.logo-slider .swiper-pagination {
  position: static;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.logo-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  opacity: 1;
}

.logo-slider .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ---------- CTA banner with counters (footer, sitewide) ---------- */
.cta-counters-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(47, 62, 45, 0.88), rgba(110, 143, 107, 0.82));
  background-size: cover;
  background-position: center;
}

.cta-counters-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: start;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-counters-left {
  max-width: 520px;
}

.cta-counters-left .eyebrow {
  color: var(--gold);
}

.cta-counters-left h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta-counters-left p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 14px;
  line-height: 1.75;
}

.cta-counters-right {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-counters-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 30px;
  width: 100%;
}

.cta-counters-list .stat b {
  color: #fff;
}

.cta-counters-list .stat span {
  color: rgba(255, 255, 255, 0.7);
}

.cta-counters-list .stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Mobile side-slide menu ---------- */
.mobile-bar {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-call-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-darker);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-call-btn svg {
  width: 19px;
  height: 19px;
}

.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 30, 26, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 900;
}

.side-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: var(--cream);
  z-index: 901;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.side-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-menu-close svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.side-menu-links {
  display: flex;
  flex-direction: column;
}

.side-menu-links a {
  display: flex;
  padding: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.side-menu-links a.active {
  color: var(--sage-darker);
}

.side-menu-cta {
  /* margin-top: auto; */

  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-cta .btn {
  width: 100%;
  justify-content: center;
}






.left-right-content-sec .lede p {
  margin-bottom: 12px;
}

.service-image-card-sec .service-card-inner-area {
  display: flex;
  flex-direction: column;
  padding: 24px;
}


/* ---------------- */

.ico img.icon-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amc-map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
}

.amc-map-wrapper iframe {
  width: 100%;
  object-fit: cover;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.blog-grid-section .service-card {
  padding: 0;
}

.blog-grid-section .service-grid a {
  overflow: hidden;
}

.blog-grid-section .service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.single-blog-detail {
  padding: 20px;
}

.single-blog-card {
  overflow: hidden;
}

.blog-grid-section .service-grid a img {
  transition: all ease 0.4s;
}

.blog-grid-section .service-grid a:hover img {
  transform: scale(1.1);
  transition: all ease 0.4s;
}

.blog-detail-banner {
  padding: 100px 0;
  background: var(--sage-darker);
}

.blog-detail-banner h1 {
  color: #fff;
}

.service-gif-img-sec .service-card-inner-area {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-design-by-links span a {
  color: var(--gold);
}

.footer-design-by-links span a:hover {
  color: var(--gold);
}





/* ============================================ */
/* ---------- Responsive ---------- */

@media (max-width: 1370px) {
  .portal-widget {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 1080px) {

  .split-media .frame {
    left: 18px;
    top: 18px;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-header.mobile-open .nav-links .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 14px;
    border-radius: var(--r-pill);
    background: var(--sage-darker);
    color: var(--white);
    font-weight: 700;
  }

  .nav-actions>a.btn {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }


  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .option-grid,
  .price-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-counters-wrap {
    grid-template-columns: 1fr;
  }

  .cta-counters-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: start;
  }

  .team-grid {
    max-width: 70%;
  }

  .hero-media .float-card {
    left: -11px;
  }

  .hero-copy {
    order: 2;
  }
}

@media (max-width: 1010px) {

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-stats {
    gap: 26px;
  }

  .team-grid {
    max-width: 85%;
  }


}

@media (max-width:860px) {
  .bio-card {
    grid-template-columns: 1fr;
  }

  .bio-card .avatar {
    height: auto;
  }

  .cta-counters-list .stat {
    padding: 24px;
  }

  .page-hero {
    padding: 110px 0;
  }

  .cta-counters-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .team-grid {
    max-width: 100%;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat b,
  .cta-counters-list .stat b {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .cta-counters-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-counters-list {
    gap: 26px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .hero-media .shape {
    inset: -12px -12px auto auto;
  }

  .split-media .frame {
    left: 12px;
    top: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .hero-media img {
    height: 320px;
  }

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

  .stat b span {
    font-size: 1.8rem;
  }

  .bio-card {
    padding: 20px;
  }

  .page-hero {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .info-card {
    padding: 20px;
  }

  .form-card {
    padding: 30px 20px;
  }

  .cta-counters-section {
    padding: 60px 0;
  }

  .side-menu {
    width: 100%;
  }
}

@media (max-width:425px) {
  .info-card {
    flex-direction: column;
    padding: 16px;
  }
}



/* ================================================ */
.amc4 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.amc4__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.amc4__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amc4__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(24 32 22 / 55%), rgb(24 32 22 / 60%));
}

/* floating stickers — plain static elements, no JS loop */
.amc-sticker {
  position: absolute;
  opacity: .1;
  z-index: -1;
  animation: amcFloat 10s ease-in-out infinite;
  width: 300px;
  right: 0;

}

.amc-sticker img,
.amc-sticker svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amc-sticker--svg {
  filter: brightness(0) invert(1);
}

.amc-sticker--img {
  filter: grayscale(1) brightness(2);
}

.amc-sticker-1 {
  top: 10%;
  left: 6%;
  width: 70px;
  height: 70px;
}

.amc-sticker-2 {
  top: 78%;
  left: 90%;
  width: 30px;
  height: 30px;
  animation-delay: -3s;
}

.amc-sticker-3 {
  top: 14%;
  left: 88%;
  width: 80px;
  height: 80px;
  animation-delay: -6s;
}

.amc-sticker-4 {
  top: 66%;
  left: 8%;
  width: 46px;
  height: 46px;
  animation-delay: -2s;
}

@keyframes amcFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(6deg);
  }
}

.amc4 .container {
  position: relative;
  z-index: 2;
}

.amc4__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.amc4__eyebrow {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.amc4__title {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 40px;
}

.amc4__title em {
  color: var(--gold);
  font-style: italic;
}

.amc4__stage {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  padding: 50px 56px 36px;
}

.amc4__swiper {
  cursor: grab;
}

.amc4__swiper:active {
  cursor: grabbing;
}

.amc4__swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amc4__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.amc4__stars svg {
  width: 20px;
  height: 20px;
}

.amc4__quote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 24px;
}

.amc4__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amc4__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.amc4__avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
}

.amc4__person-txt {
  text-align: left;
}

.amc4__name {
  color: #fff;
  font-weight: 700;
  font-size: .96rem;
}

.amc4__role {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
}

.amc4__source {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  overflow: hidden;
}

.amc4__source svg,
.amc4__source img {
  width: 100%;
  height: 100%;
}

.amc4__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.amc4__arrow:hover {
  background: var(--gold);
  color: var(--sage-darker);
}

.amc4__arrow svg {
  width: 17px;
  height: 17px;
}

.amc4__arrow--prev {
  left: -23px;
}

.amc4__arrow--next {
  right: -23px;
}

.amc4__pagination {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  position: static !important;
  width: auto !important;
  margin-top: 34px;
}

.amc4__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, .3);
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
}

.amc4__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--r-pill);
}

@media (max-width:700px) {
  .amc4__stage {
    padding: 40px 22px 30px;
  }

  .amc4__arrow {
    display: none;
  }
}


/* Hide native arrow only on select */
.wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px;
  color: var(--ink);
}

/* Custom arrow only for select fields */
.wpcf7-form-control-wrap:has(select)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  pointer-events: none;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  background-size: 12px;
}

.error-page{
  background-color: var(--sage-darker);
}

.error-page span,
.error-page h1,
.error-page p{
  color: #fff;
}

/* recaptcha css */
.grecaptcha-badge{
  display: none !important;
}