/* Start of Header (All Content) */
header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(255, 255, 255, 0) 2px 18px
    ),
    linear-gradient(180deg, #f4efe6 0%, #ece5da 100%);
  height: 100px;
}

.element-header-spacer {
  margin-bottom: 100px;
}

.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(45, 75, 59, 0.025) 0 1px,
      rgba(45, 75, 59, 0) 1px 20px
    );
  backdrop-filter: blur(10px);
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header + .element-header-spacer {
  margin-bottom: 122px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--second-color);
  color: #1d1d1d;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.header-topbar {
  background: rgba(173, 188, 223, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-topbar-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px;
  font-size: 14px;
}

.header-trust {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.header-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-lang {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.header-main {
  padding: 4px 0;
}

.header-main-inner {
  margin: 0 auto;
  display: grid;
  max-width: 100%;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 6px 28px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-brand img {
  width: 70px;
}

.header-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "Aladin";
  font-size: 22px;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
  color: #4a4a4a;
}

.nav-primary {
  position: relative;
  z-index: 5;
}

.nav-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-list li {
  position: relative;
}

.nav-list a,
.nav-toggle-btn {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #2a2a2a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-primary .nav-list > li > a,
.nav-primary .nav-list > li > .nav-toggle-btn {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-primary .nav-list > li > a:hover,
.nav-primary .nav-list > li > a:focus-visible,
.nav-primary .nav-list > li > .nav-toggle-btn:hover,
.nav-primary .nav-list > li > .nav-toggle-btn:focus-visible,
.nav-primary .has-submenu:hover > .nav-toggle-btn,
.nav-primary .has-submenu.is-open > .nav-toggle-btn {
  background: rgba(176, 90, 118, 0.14);
  color: #8f3d58;
  box-shadow: 0 0 0 1px rgba(176, 90, 118, 0.24);
}

.nav-primary .active-page,
.nav-primary .active-page a {
  color: #b05a76;
}

.submenu {
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  min-width: 230px;
  display: none;
}

.submenu li a,
.submenu .nav-toggle-btn {
  width: 100%;
  padding: 10px 16px;
  justify-content: space-between;
  font-size: 18px;
  border-radius: 10px;
}

.submenu li a:hover,
.submenu li a:focus-visible,
.submenu .nav-toggle-btn:hover,
.submenu .nav-toggle-btn:focus-visible {
  background: rgba(176, 90, 118, 0.14);
  color: #8f3d58;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.has-submenu:hover > .submenu,
.has-submenu.is-open > .submenu {
  display: block;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: var(--second-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.cta-split {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.cta-label {
  background: var(--second-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 16px;
  height: 40px;
  border-radius: 999px 0 0 999px;
  font-weight: 600;
  font-family: "Aladin";
  letter-spacing: 0.2px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.cta-toggle {
  background: var(--second-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  padding: 0 12px;
  height: 40px;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-menu {
  position: absolute;
  top: 46px;
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  min-width: 210px;
  display: none;
  z-index: 10;
}

.cta-menu-label {
  display: block;
  padding: 6px 16px 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #22314a;
  pointer-events: none;
  border-bottom: 2px solid #f6e39a;
}

.cta-menu a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 18px;
  color: #2a2a2a;
}

.cta-split.is-open .cta-menu {
  display: block;
}

.nav-toggle {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle i {
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.site-header.function-toggle-open .nav-toggle i {
  transform: rotate(90deg) scale(1.05);
}

.nav-drawer {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  padding: 18px 28px 26px;
}

.nav-drawer .nav-list {
  display: grid;
  gap: 12px;
}

.nav-drawer .nav-list li {
  position: relative;
}

.nav-drawer .submenu {
  position: static;
  box-shadow: none;
  border-radius: 12px;
  background: rgba(173, 188, 223, 0.18);
  margin-top: 6px;
  display: none;
}

.nav-drawer .has-submenu.is-open > .submenu {
  display: block;
}

.nav-drawer a,
.nav-drawer .nav-toggle-btn {
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-drawer a:hover,
.nav-drawer a:focus-visible,
.nav-drawer .nav-toggle-btn:hover,
.nav-drawer .nav-toggle-btn:focus-visible,
.nav-drawer .has-submenu.is-open > .nav-toggle-btn {
  background: rgba(176, 90, 118, 0.14);
  color: #8f3d58;
  box-shadow: 0 0 0 1px rgba(176, 90, 118, 0.24);
}

@media (hover: none) and (pointer: coarse) {
  .nav-drawer a:active,
  .nav-drawer .nav-toggle-btn:active,
  .nav-drawer .has-submenu.is-open > .nav-toggle-btn {
    background: rgba(176, 90, 118, 0.2);
    color: #8f3d58;
    box-shadow: 0 0 0 1px rgba(176, 90, 118, 0.3);
  }
}

.site-header.function-toggle-open .nav-drawer {
  display: block;
}

/* End of Header Styles */
/* ===================== */

/* ===================== */
/* Floating Parent Packs */
.floating-pack-menu {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  perspective: 1000px;
}

.floating-pack-flip {
  position: relative;
  width: 150px;
  height: 150px;
  display: block;
  transform-style: preserve-3d;
  overflow: hidden;
}

.floating-pack-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

.floating-pack-menu img {
  width: 100%;
  height: 100%;
  display: block;
}

.floating-pack-face-front {
  transform: rotateX(0deg);
  overflow: hidden;
}

.floating-pack-face-front::after {
  content: "View Parent Info Pack";
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  font-family: sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0.74;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
}

.floating-pack-face-back {
  transform: rotateX(-180deg);
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 12px;
  color: #ffffff;
  background: var(--third-color);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.floating-pack-menu:hover .floating-pack-face-front,
.floating-pack-menu:focus-visible .floating-pack-face-front {
  transform: rotateX(180deg);
}

.floating-pack-menu:hover .floating-pack-face-front::after,
.floating-pack-menu:focus-visible .floating-pack-face-front::after {
  opacity: 0.9;
  transform: translateY(-1px);
}

.floating-pack-menu:hover .floating-pack-face-back,
.floating-pack-menu:focus-visible .floating-pack-face-back {
  transform: rotateX(0deg);
}

.site-header.function-toggle-open ~ .floating-pack-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

.pack-modal-open {
  overflow: hidden;
}

.parent-pack-modal {
  position: fixed;
  inset: 0;
  background: rgba(34, 30, 24, 0.48);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 12000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.parent-pack-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.parent-pack-modal-dialog {
  position: relative;
  width: min(540px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(173, 213, 223, 0.22) 100%
  );
  color: #26302b;
  border: 1px solid rgba(173, 188, 223, 0.6);
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.parent-pack-modal-dialog .brand-name {
  color: #95bcc3;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.parent-pack-modal-dialog h1 {
  color: #b89a55;
  font-size: clamp(2.2rem, 7.2vw, 4.1rem);
  line-height: 1.03;
  margin-top: 4px;
}

.parent-pack-modal-dialog h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

.parent-pack-modal-dialog p {
  margin: 0 0 12px;
  line-height: 1.5;
}

.parent-pack-modal-body {
  margin-top: 16px;
  padding: 16px 14px 12px;
  border: 1px solid rgba(188, 223, 173, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.parent-pack-form {
  margin-top: 12px;
}

.parent-pack-form .form-row {
  margin-bottom: 12px;
}

.parent-pack-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #2e3f37;
}

.parent-pack-form input[type="text"],
.parent-pack-form input[type="email"],
.parent-pack-form input[type="tel"],
.parent-pack-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d1d8cd;
  border-radius: 10px;
  background: #fffefc;
  font-size: 15px;
}

.parent-pack-form input[type="text"]:focus,
.parent-pack-form input[type="email"]:focus,
.parent-pack-form input[type="tel"]:focus,
.parent-pack-form select:focus {
  outline: none;
  border-color: #c19db5;
  box-shadow: 0 0 0 3px rgba(223, 173, 188, 0.25);
}

.parent-pack-form .form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px 9px;
  border-radius: 10px;
  background: rgba(173, 188, 223, 0.18);
}

.parent-pack-form .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #b89a55;
}

.parent-pack-form .form-consent label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.parent-pack-form .form-consent a {
  text-decoration: underline;
}

.parent-pack-form-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #4f5e57;
}

.parent-pack-form .form-actions {
  margin-top: 14px;
}

.parent-pack-form .element-button {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.parent-pack-form .form-status {
  margin-top: 10px;
  min-height: 20px;
  font-size: 14px;
  line-height: 1.35;
}

.parent-pack-form .form-status.is-success {
  color: #146c2e;
}

.parent-pack-form .form-status.is-error {
  color: #b42318;
}

.parent-pack-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(223, 173, 188, 0.8);
  border-radius: 50%;
  background: rgba(223, 173, 188, 0.3);
  color: #37413b;
  cursor: pointer;
}

.parent-pack-modal-close:hover,
.parent-pack-modal-close:focus-visible {
  background: rgba(223, 173, 188, 0.58);
}
/* End of Floating Parent Packs */
/* ===================== */

/* ===================== */
/* Start of Footer */

.footer-inner {
  margin: 0 auto;
  padding: 60px 60px 40px;
  border-radius: 28px;
  /* background: var(--fourth-color); */
  color: #333a33;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-inner img {
  width: 150px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-copy .brand-name {
  font-size: 2.5rem;
}

.footer-brand-copy .brand-tagline {
  font-size: 1.3rem;
}

.footer-brand h3 {
  font-size: 35px;
}

.footer-col h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(218, 165, 32, 0.85);
}

.footer-col a {
  display: block;
  color: #333a33;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-socials {
  padding: 10px 0;
  font-size: 30px;
}

.footer-socials a {
  display: inline-block;
  padding: 6px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #333a33;
  text-decoration: none;
  font-size: 25px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  z-index: 1;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  color: #333a33;
  text-decoration: none;
}

.footer-subsection {
  margin: 10px 0 14px;
}

.footer-subsection span {
  display: block;
  margin-bottom: 6px;
  color: rgba(218, 165, 32, 0.85);
}

.footer-subsection a {
  display: block;
  color: #333a33;
  margin-bottom: 8px;
  text-decoration: none;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}
/* End of Footer */
/* ===================== */

/* ===================== */
/* Index Page Styles */
/* _________________ */
/* Hero Styles */
.section-hero {
  background: linear-gradient(135deg, #f6c1b1 0%, #fbe9cf 45%, #cfe9d7 100%);
  padding: 80px 20px 65px;
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 100%;
  height: 90px;
  display: block;
  pointer-events: none;
  transform: scaleY(1);
}

.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  color: #1f1f1f;
  text-shadow: 1px -1px rgba(51, 58, 51, 0.25);
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #32423a;
}

.hero-anniversary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.hero-anniversary-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.65),
      transparent 55%
    ),
    linear-gradient(145deg, #f9d79b 0%, #eabf6a 55%, #d5a24b 100%);
  color: #533a1a;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow:
    0 12px 24px rgba(78, 56, 24, 0.25),
    inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 1.1rem;
}

.hero-anniversary-seal::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(122, 86, 40, 0.45);
}

.hero-anniversary-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #f6a46c, #e66b66);
  color: #fff9f1;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 20px rgba(164, 88, 62, 0.25);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-media-main {
  width: min(682px, 90vw);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  padding: 12px 12px 42px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-foil-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #5a3f20;
  background: linear-gradient(
    135deg,
    rgba(255, 240, 200, 0.95) 0%,
    rgba(216, 176, 96, 0.95) 45%,
    rgba(255, 249, 233, 0.9) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 10px 18px rgba(85, 60, 24, 0.25);
  transform: rotate(-4deg);
  z-index: 3;
}

.hero-media-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.18) 0 12%,
      transparent 13% 100%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 0, 0, 0.04) 0 14%,
      transparent 15% 100%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.05));
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-media-main::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  border: 2px solid rgba(230, 210, 180, 0.7);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(230, 210, 180, 0.6);
}

.hero-media-main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  border-radius: 12px;
}

.hero-media-main::before,
.hero-media-main::after {
  pointer-events: none;
}

.hero-polaroids {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: flex;
  gap: 12px;
}

.hero-polaroid {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: rotate(-4deg);
  animation: hero-float 6s ease-in-out infinite;
}

.hero-polaroid:nth-child(2) {
  transform: rotate(6deg);
  margin-left: 0;
  animation-delay: 0.8s;
}

.hero-polaroid img {
  display: block;
  width: 216px;
  height: 158px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-strip {
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1200px;
  position: relative;
}

.hero-strip-hint {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d4b3b;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
}

.hero-strip-viewport {
  overflow: hidden;
  position: relative;
}

.hero-strip-viewport::before,
.hero-strip-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;
  z-index: 2;
}

.hero-strip-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(246, 233, 207, 0.9), transparent);
}

.hero-strip-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(246, 233, 207, 0.9), transparent);
}
.hero-strip-track {
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-strip-track::-webkit-scrollbar {
  display: none;
}

.hero-strip-item {
  flex: 0 0 auto;
  width: clamp(225px, 25vw, 300px);
  scroll-snap-align: center;
}

.hero-strip-item img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-strip-btn {
  border: none;
  background: #2d4b3b;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes hero-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* End of Hero Styles */
/* __________________ */

/* Services Page Hero */
.services-hero-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(175, 203, 193, 0.3), transparent 44%),
    radial-gradient(
      circle at 94% 18%,
      rgba(255, 216, 146, 0.36),
      transparent 38%
    ),
    linear-gradient(145deg, #f6faf7 0%, #edf5f9 56%, #f8f3ea 100%);
  padding-block: 26px 44px;
}

.services-hero-wrap {
  position: relative;
}

.services-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.services-hero-copy {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(50, 78, 65, 0.16);
  box-shadow: 0 18px 32px rgba(27, 53, 43, 0.13);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(243, 250, 247, 0.94) 100%
  );
  overflow: hidden;
}

.services-hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(174, 197, 235, 0.26),
    transparent 68%
  );
  pointer-events: none;
}

.services-hero-eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #416858;
}

.services-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #1c2f25;
}

.services-hero-title-texture {
  display: inline-block;
  font-weight: 800;
  background: url(../Images/textured-title-fill.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(45, 75, 59, 0.5);
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .services-hero-title-texture {
    color: #27493a;
    background: none;
  }
}

.services-hero-lead {
  margin: 0;
  color: #354a40;
  font-size: 1.03rem;
  line-height: 1.66;
  max-width: 46ch;
}

.services-hero-points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(50, 78, 65, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2b4a3d;
}

.services-hero-points i {
  color: #6a4c1f;
}

.services-hero-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
}

.services-hero-jump a {
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
  color: #26473a;
  border: 1px solid rgba(38, 71, 58, 0.24);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.95),
    rgba(244, 248, 246, 0.93)
  );
  border-radius: 999px;
  padding: 8px 13px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.services-hero-jump a:hover {
  background: #26473a;
  color: #fff;
  border-color: #26473a;
}

.services-hero-media {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  align-items: stretch;
  margin: 0;
  padding: 16px 16px 12px;
  border-radius: 30px 22px 26px 20px;
  background: linear-gradient(160deg, #ffffff 0%, #edf5f1 100%);
  border: 1px solid rgba(42, 66, 56, 0.16);
  box-shadow: 0 20px 36px rgba(26, 45, 37, 0.16);
  position: relative;
  overflow: hidden;
}

.services-hero-media::before {
  content: "";
  position: absolute;
  inset: 8px 10px 42px 10px;
  border-radius: 40px 26px 34px 28px;
  background:
    radial-gradient(
      circle at 20% 16%,
      rgba(173, 188, 223, 0.34),
      transparent 44%
    ),
    radial-gradient(
      circle at 76% 22%,
      rgba(255, 214, 137, 0.34),
      transparent 40%
    ),
    radial-gradient(
      circle at 56% 82%,
      rgba(149, 200, 173, 0.32),
      transparent 42%
    );
  filter: blur(1.3px);
  z-index: 0;
  pointer-events: none;
}

.services-hero-media::after {
  content: "";
  position: absolute;
  inset: auto -24% -34% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(130, 172, 223, 0.24),
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.services-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 0;
  box-shadow:
    0 14px 26px rgba(29, 49, 40, 0.16),
    0 0 0 2px rgba(255, 255, 255, 0.82);
  background: #e9f1ec;
  border-radius: 24px;
}

.services-hero-media figcaption {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 68, 56, 0.2);
  color: #294639;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
/* End Services Page Hero */

/* Funding Page Hero */
.funding-hero-section {
  background:
    radial-gradient(
      circle at 6% 10%,
      rgba(175, 203, 193, 0.28),
      transparent 40%
    ),
    radial-gradient(
      circle at 96% 14%,
      rgba(255, 214, 137, 0.28),
      transparent 38%
    ),
    linear-gradient(150deg, #f7fbf8 0%, #eef5fa 55%, #f8f2e8 100%);
  padding-block: 24px 42px;
}

.funding-hero-shell {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.funding-hero-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.funding-hero-layout > article {
  border-radius: 24px;
  border: 1px solid rgba(44, 72, 58, 0.16);
  box-shadow: 0 16px 30px rgba(27, 49, 40, 0.12);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 250, 246, 0.93)
  );
  padding: 22px 20px;
}

.funding-hero-copy {
  display: flex;
  flex-direction: column;
}

.funding-hero-eyebrow {
  margin: 0 0 10px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #416858;
}

.funding-hero-layout h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1d3227;
}

.funding-hero-lead {
  margin: 14px 0 0;
  max-width: 48ch;
  color: #3a5247;
  line-height: 1.62;
}

.funding-hero-uls {
  position: relative;
  display: block;
  width: 100%;
  height: 118px;
  margin-top: auto;
}

.funding-hero-uls::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(100% - 84px);
  height: 10px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    #f7b6b2,
    #f7d2a2,
    #f6f3a6,
    #bfe8c2,
    #b9d8f7,
    #cdb7f0
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.funding-hero-uls::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b8872b' d='M12 2.4l2.56 5.2 5.74.84-4.15 4.04.98 5.72L12 15.9l-5.13 2.7.98-5.72L3.7 8.44l5.74-.84L12 2.4z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(45, 75, 59, 0.18));
}

.funding-hero-info h2 {
  margin: 0;
  color: #244236;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.funding-hero-info h3 {
  margin: 14px 0 8px;
  color: #2e5141;
  font-size: 1rem;
}

.funding-hero-info p {
  margin: 10px 0 0;
  color: #3b5147;
  line-height: 1.58;
}

.funding-hero-info ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.funding-hero-info li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  border-radius: 12px;
  border: 1px solid rgba(45, 75, 59, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #354b40;
  padding: 8px 10px;
}

.funding-hero-info li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: #d6a94f;
  box-shadow: 0 0 0 4px rgba(214, 169, 79, 0.18);
}

.funding-hero-showcase {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  background:
    radial-gradient(
      circle at 78% 14%,
      rgba(173, 188, 223, 0.34),
      transparent 38%
    ),
    linear-gradient(162deg, #ffffff 0%, #eef6f2 100%);
}

.funding-hero-image {
  margin: 0;
  min-height: 104px;
  border-radius: 16px;
  border: 1px solid rgba(45, 75, 59, 0.17);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  padding: 14px 12px;
}

.funding-hero-image img {
  display: block;
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}
/* End Funding Page Hero */

/* Funding 30 Hours Section */
.funding-30-section {
  background: linear-gradient(180deg, #f6fbf8 0%, #f3f8f5 100%);
}

.funding-30-card {
  margin: 0;
  border-radius: 26px;
  border: 1px solid rgba(43, 72, 60, 0.18);
  background: linear-gradient(
    165deg,
    rgba(173, 203, 209, 0.42) 0%,
    rgba(185, 214, 220, 0.4) 52%,
    rgba(177, 207, 213, 0.42) 100%
  );
  box-shadow: 0 20px 34px rgba(24, 43, 35, 0.12);
  padding: clamp(20px, 3vw, 34px);
}

.funding-30-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #45685a;
}

.funding-30-card h2 {
  margin: 0;
  color: #ae8754;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.funding-30-card > p {
  margin: 14px 0 0;
  color: #495f58;
  line-height: 1.58;
}

.funding-30-card h3 {
  margin: 18px 0 10px;
  color: #ae8754;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
}

.funding-30-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.funding-30-points li {
  border-radius: 14px;
  border: 1px solid rgba(46, 75, 62, 0.18);
  background: rgba(255, 255, 255, 0.64);
  color: #3f5550;
  padding: 10px 12px;
}

.funding-30-sites {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.funding-30-site {
  border-radius: 16px;
  border: 1px solid rgba(40, 67, 56, 0.18);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
}

.funding-30-site h4 {
  margin: 0;
  color: #2d4a3d;
  font-size: 1.1rem;
}

.funding-30-site ul {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  color: #3d534c;
  display: grid;
  gap: 8px;
}

.funding-30-note {
  margin-top: 16px;
  color: #475d55;
  font-weight: 600;
}

.funding-30-note a {
  color: #7f643e;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
/* End Funding 30 Hours Section */

/* Funding Why Section */
.funding-why-section {
  background: linear-gradient(180deg, #f8fbf9 0%, #f4f8f6 100%);
}

.funding-why-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.funding-why-media {
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(45, 75, 59, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(24, 42, 34, 0.14);
  overflow: hidden;
}

.funding-why-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.funding-why-content {
  border-radius: 28px;
  border: 1px solid rgba(44, 72, 58, 0.16);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(243, 249, 246, 0.94) 100%
  );
  box-shadow: 0 18px 34px rgba(24, 42, 34, 0.12);
  padding: clamp(20px, 2.4vw, 30px);
}

.funding-why-content h2 {
  margin: 0;
  color: #b3904f;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.03;
}

.funding-why-content p {
  margin: 14px 0 0;
  color: #4a6059;
  line-height: 1.6;
  max-width: 62ch;
}

.funding-why-content h3 {
  margin: 18px 0 10px;
  color: #b3904f;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.funding-why-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.funding-why-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: #435851;
  font-size: 1.02rem;
  line-height: 1.48;
}

.funding-why-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.43rem;
  border-radius: 50%;
  background: #d2a24c;
  box-shadow: 0 0 0 4px rgba(210, 162, 76, 0.18);
}
/* End Funding Why Section */

/* Funding CTA Section */
.funding-cta-section {
  background: linear-gradient(180deg, #f6faf7 0%, #f1f7f3 100%);
}

.funding-cta-card {
  border-radius: 24px;
  border: 1px solid rgba(45, 75, 59, 0.2);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96),
    rgba(241, 248, 244, 0.94)
  );
  box-shadow: 0 16px 30px rgba(24, 44, 35, 0.12);
  padding: clamp(18px, 2.5vw, 30px);
}

.funding-cta-card h2 {
  margin: 0;
  color: #26473a;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.12;
}

.funding-cta-card p {
  margin: 12px 0 0;
  color: #435951;
  line-height: 1.58;
  max-width: 68ch;
}

.funding-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* End Funding CTA Section */

/* Services At a Glance */
.services-glance {
  display: grid;
  gap: 16px;
}

.services-glance-title {
  margin: 0;
}

.services-glance-title span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 30px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(248, 251, 250, 0.9)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(45, 75, 59, 0.02) 0 1px,
      rgba(45, 75, 59, 0) 1px 18px
    );
  border: 1px solid rgba(45, 75, 59, 0.26);
  box-shadow:
    0 12px 22px rgba(15, 30, 24, 0.14),
    inset 0 0 0 2px rgba(255, 255, 255, 0.72);
  color: #2d4b3b;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: 0.01em;
  z-index: 1;
}

.services-glance-title span::before,
.services-glance-title span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #dcaec6;
  border: 1px solid rgba(65, 42, 55, 0.2);
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(23, 14, 19, 0.18);
  z-index: -1;
}

.services-glance-title span::before {
  left: 18px;
  top: -8px;
  transform: rotate(-11deg);
}

.services-glance-title span::after {
  right: 18px;
  top: -8px;
  transform: rotate(10deg);
}

.services-glance-intro {
  margin: 0;
  max-width: 64ch;
  color: #3d5248;
}

.services-glance-subtitle {
  position: relative;
  display: inline-block;
  padding: 8px 14px 10px;
  border-radius: 10px 16px 12px 14px;
  background: rgba(173, 188, 223, 0.18);
  border-left: 4px solid #afbccf;
  box-shadow: inset 0 0 0 1px rgba(45, 75, 59, 0.1);
  font-size: 0.97rem;
  line-height: 1.55;
}

.services-glance-subtitle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -6px;
  height: 7px;
  border-radius: 999px;
  background: rgba(45, 75, 59, 0.16);
  filter: blur(2px);
}

.services-glance-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-glance-card {
  border-radius: 20px;
  border: 1px solid rgba(47, 74, 61, 0.18);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96),
    rgba(242, 249, 245, 0.93)
  );
  box-shadow: 0 14px 30px rgba(28, 49, 40, 0.1);
  padding: 18px;
}

.services-glance-card-head h3 {
  margin: 0;
}

.services-glance-tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-glance-facts + .services-glance-tags {
  margin-top: 12px;
}

.services-glance-tags li {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(38, 68, 56, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: #284739;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 10px;
}

.services-glance-facts {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.services-glance-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 155px) minmax(0, 1fr);
  align-items: start;
  gap: 8px 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(49, 74, 64, 0.2);
}

.services-glance-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.services-glance-facts dt {
  margin: 0;
  font-weight: 800;
  color: #29483a;
}

.services-glance-facts dd {
  margin: 0;
  color: #40574d;
}

.services-glance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-glance-links a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(40, 72, 58, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: #26473a;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.services-glance-timeline {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(41, 71, 57, 0.2);
  background: rgba(247, 252, 249, 0.92);
  padding: 12px;
}

.services-glance-timeline p {
  margin: 0 0 8px;
  color: #2d4b3b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-glance-timeline ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.services-glance-timeline li {
  border-radius: 12px;
  border: 1px solid rgba(45, 75, 59, 0.18);
  background: #fff;
  color: #3d5348;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 8px 9px;
}

.services-glance-timeline li span {
  display: block;
  color: #2b4a3d;
  font-weight: 800;
  margin-bottom: 3px;
}

.services-glance-availability {
  border-radius: 20px;
  border: 1px solid rgba(44, 72, 58, 0.2);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 214, 137, 0.24),
      transparent 42%
    ),
    linear-gradient(160deg, #f7fcf8 0%, #eef7f4 100%);
  padding: 20px;
}

.services-glance-availability h3 {
  margin: 0 0 8px;
}

.services-glance-availability p {
  margin: 0;
  color: #3a5146;
}

.services-glance-availability ul {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  color: #354b40;
}

.services-glance-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-glance-actions .element-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.services-glance-actions .element-button:hover,
.services-glance-actions .element-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(26, 46, 37, 0.2);
  background: #223a2e;
  color: #fff;
}

.services-enquire-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-enquire-actions .element-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .services-glance-actions .element-button {
    transition: none;
  }

  .services-glance-actions .element-button:hover,
  .services-glance-actions .element-button:focus-visible {
    transform: none;
  }

  .services-enquire-actions .element-button {
    transition: none;
  }
}
/* End Services At a Glance */

/* Cwmdu Services Section */
.services-site-cwmdu {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(175, 203, 193, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 214, 137, 0.22),
      transparent 30%
    ),
    linear-gradient(165deg, #f7fbf8 0%, #eff7f3 55%, #f8f3ea 100%);
}

.services-site-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.services-site-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  color: #466d5d;
}

.services-site-head h2 {
  margin: 0;
  color: #2d4b3b;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.07;
}

.services-site-title-pill {
  display: inline-flex;
  align-items: center;
  margin-inline: 2px;
  padding: 3px 12px 4px;
  border-radius: 999px;
  border: 1px solid rgba(45, 75, 59, 0.25);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(245, 249, 247, 0.93)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(45, 75, 59, 0.02) 0 1px,
      rgba(45, 75, 59, 0) 1px 18px
    );
  color: #2d4b3b;
  box-shadow:
    0 6px 14px rgba(27, 46, 37, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.services-site-title-gradient {
  background: linear-gradient(120deg, #e596af 0%, #86b7e1 50%, #7cbf9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.services-site-subtitle {
  margin: 0;
  max-width: 64ch;
  color: #3a5347;
}

.services-site-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.services-site-card {
  margin: 0;
  border: 1px solid rgba(45, 75, 59, 0.16);
  box-shadow: 0 14px 28px rgba(28, 46, 38, 0.11);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96),
    rgba(242, 249, 245, 0.92)
  );
}

.services-site-card h3 {
  margin: 0 0 10px;
}

.services-site-card-title-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(44, 73, 59, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #2d4b3b;
  box-shadow: 0 6px 12px rgba(26, 42, 35, 0.12);
}

.services-site-card dt {
  color: #2f4d3d;
}

.services-site-card dd,
.services-site-card p,
.services-site-card li {
  color: #3f554a;
}

.services-site-card--parent {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.services-site-photo {
  margin: 0;
  grid-column: 7 / -1;
  grid-row: 1;
  align-self: stretch;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: block;
  height: 100%;
}

.services-site-carousel {
  padding: 0;
  background: transparent;
  display: grid;
  gap: 8px;
}

.services-site-carousel-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #eaf2ee;
  box-shadow:
    0 12px 22px rgba(29, 49, 40, 0.14),
    inset 0 0 0 1px rgba(45, 75, 59, 0.16);
}

.services-site-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: services-site-fade 16s ease-in-out infinite;
}

.services-site-carousel-slide:nth-child(1) {
  animation-delay: 0s;
}

.services-site-carousel-slide:nth-child(2) {
  animation-delay: 4s;
}

.services-site-carousel-slide:nth-child(3) {
  animation-delay: 8s;
}

.services-site-carousel-slide:nth-child(4) {
  animation-delay: 12s;
}

.services-site-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url(../Images/textured-title-fill.png);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url(../Images/textured-title-fill.png);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.services-site-carousel-caption {
  position: absolute;
  left: 10px;
  right: auto;
  bottom: 10px;
  max-width: min(84%, calc(100% - 20px));
  margin: 0;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 68, 56, 0.2);
  color: #294639;
  border-radius: 14px;
  padding: 7px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.services-site-carousel--tan {
  margin: 12px auto 16px;
  max-width: 860px;
}

@supports not ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .services-site-carousel-slide img {
    border-radius: 16px;
  }
}

@keyframes services-site-fade {
  0%,
  19% {
    opacity: 1;
  }
  25%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-site-carousel-slide {
    animation: none;
    opacity: 0;
  }

  .services-site-carousel-slide:first-child {
    opacity: 1;
  }
}

.services-site-card--benefits {
  grid-column: 1 / -1;
}

.services-site-card--benefits ul.services-site-benefit-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.services-site-benefit-cards li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 18px rgba(20, 34, 28, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  color: #2d4b3b;
  line-height: 1.35;
}

.services-site-benefit-cards li i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 75, 59, 0.2);
  color: #3a5a49;
  font-size: 0.78rem;
}

/* Explicit benefit card color mapping (client-friendly IDs) */
#benefit-card-0 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(250, 222, 178, 0.4)
  );
}

#benefit-card-1 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(245, 217, 157, 0.4)
  );
}

#benefit-card-2 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(188, 226, 205, 0.42)
  );
}

#benefit-card-3 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(186, 214, 243, 0.42)
  );
}

#benefit-card-4 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(237, 194, 214, 0.42)
  );
}

#benefit-card-5 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(191, 221, 247, 0.42)
  );
}

#benefit-card-6 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(239, 197, 219, 0.42)
  );
}

#benefit-card-7 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(199, 234, 219, 0.42)
  );
}

#benefit-card-8 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52),
    rgba(222, 205, 244, 0.42)
  );
}

.services-site-age-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.services-site-age-card {
  border-radius: 14px;
  border: 1px solid rgba(46, 74, 60, 0.18);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px;
}

.services-site-age-card h4 {
  margin: 0 0 6px;
  color: #2f4d3e;
}

.services-site-age-card dl {
  margin: 0;
}

.services-site-age-card dt {
  margin-top: 8px;
}

.services-site-age-card dd {
  margin: 0;
}

.services-site-rhythm {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-site-rhythm--image {
  margin: 0;
}

.services-site-mini-gallery {
  margin: 2px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.services-site-mini-card {
  margin: 0;
  position: relative;
  aspect-ratio: 5 / 3.6;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.services-site-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url(../Images/textured-title-fill.png);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url(../Images/textured-title-fill.png);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.services-site-mini-card figcaption {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--first-color);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.services-site-rhythm li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(45, 75, 59, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: #2e4a3c;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.services-site-rhythm i {
  color: #8f6b3c;
}

#cwmdu-availability {
  grid-column: 1 / span 6;
  grid-row: 3;
}

#cwmdu-availability dt {
  font-weight: 800;
  color: #214536;
}

#tan-availability dt {
  font-weight: 800;
  color: #214536;
}

#cwmdu-funding {
  grid-column: 1 / -1;
  grid-row: 4;
}

#cwmdu-funding dl {
  margin: 0;
}

#cwmdu-funding dt {
  display: inline-block;
  margin-top: 10px;
  padding: 0 0 3px;
  color: #214536;
  font-weight: 800;
  border-bottom: 2px solid rgba(33, 69, 54, 0.35);
}

#cwmdu-funding dd {
  margin: 6px 0 0;
}

#tan-funding dl {
  margin: 0;
}

#tan-funding dt {
  display: inline-block;
  margin-top: 10px;
  padding: 0 0 3px;
  color: #214536;
  font-weight: 800;
  border-bottom: 2px solid rgba(33, 69, 54, 0.35);
}

#tan-funding dd {
  margin: 6px 0 0;
}

.services-site-funding-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(200px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.services-site-funding-logos {
  display: grid;
  gap: 12px;
  align-content: start;
}

.services-site-funding-logos img {
  width: 100%;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(45, 75, 59, 0.15);
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
}

.services-site-funding-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.services-site-funding-point i {
  margin-top: 2px;
}

.services-site-resources-label {
  margin: 14px 0 8px;
  font-weight: 700;
  color: #2b4a3b;
}

.services-site-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-site-resource-links a {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(40, 72, 58, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: #26473a;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}

#cwmdu-rates {
  grid-column: 7 / -1;
  grid-row: 3;
}

#cwmdu-rates ul {
  margin: 10px 0 0;
}

#cwmdu-rates .services-site-famly-logo {
  display: block;
  width: clamp(120px, 22vw, 180px);
  height: auto;
  margin: 8px 0 2px;
}

#cwmdu-rates li + li {
  margin-top: 10px;
}

#cwmdu-rates li i {
  color: #c77ea2;
}

#services-at-a-glance,
#cwmdu-services,
#tan-y-lan-services,
#services-faqs,
#cwmdu-parent-info,
#cwmdu-availability,
#cwmdu-funding,
#cwmdu-rates,
#tan-parent-info,
#tan-availability,
#tan-funding {
  scroll-margin-top: 170px;
}

@media (min-width: 601px) {
  .services-site-cwmdu > .layout-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: clamp(16px, 2.2vw, 34px);
    padding-right: clamp(16px, 2.2vw, 34px);
  }

  .services-site-card--parent {
    grid-column: 1 / span 5;
  }

  .services-site-photo {
    grid-column: 6 / -1;
    align-self: start;
    height: auto;
  }

  .services-site-carousel {
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(45, 75, 59, 0.2);
    background:
      radial-gradient(
        circle at 12% 10%,
        rgba(183, 217, 202, 0.2),
        transparent 42%
      ),
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.88),
        rgba(241, 248, 244, 0.86)
      );
    box-shadow: 0 18px 30px rgba(28, 46, 38, 0.15);
  }

  .services-site-carousel-stage {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    max-height: clamp(360px, 34vw, 520px);
  }

  .services-site-rhythm--image {
    margin-top: 2px;
  }

  #cwmdu-parent-info > p {
    margin: 0 0 8px;
  }

  .services-site-age-grid {
    gap: 8px;
  }

  .services-site-age-card {
    padding: 8px 10px;
  }

  .services-site-age-card h4 {
    margin: 0 0 4px;
  }

  .services-site-age-card dt {
    margin: 6px 0 1px;
  }
}
/* End Cwmdu Services Section */

/* Tan Y Lan Services Section */
.services-site-tan {
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(171, 205, 233, 0.2),
      transparent 38%
    ),
    radial-gradient(
      circle at 92% 20%,
      rgba(249, 214, 168, 0.2),
      transparent 34%
    ),
    linear-gradient(150deg, #f2f7fb 0%, #f4fbf8 56%, #f8f6ef 100%);
}

.services-site-head--tan .services-site-kicker {
  color: #36516c;
}

.services-site-title-gradient--tan {
  background: linear-gradient(118deg, #78a6cc 0%, #8cc3b2 52%, #e5ad8b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.services-site-grid--tan .services-site-carousel--tan {
  margin: 0;
  max-width: none;
}

.services-site-grid--tan #tan-parent-info {
  padding: clamp(12px, 1.6vw, 18px);
}

.services-site-grid--tan #tan-parent-info > p {
  margin: 0 0 8px;
}

.services-site-grid--tan #tan-parent-info .services-site-age-grid {
  gap: 8px;
}

.services-site-grid--tan #tan-parent-info .services-site-age-card {
  padding: 8px 10px;
  border-radius: 12px;
}

.services-site-grid--tan #tan-parent-info .services-site-age-card h4 {
  margin: 0 0 4px;
}

.services-site-grid--tan #tan-parent-info .services-site-age-card p {
  margin: 0;
  line-height: 1.36;
}

.services-site-grid--tan #tan-availability,
.services-site-grid--tan #tan-funding {
  padding: clamp(12px, 1.6vw, 18px);
}

.services-site-funding-layout--tan {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 16px;
}

.services-site-funding-layout--tan .services-site-funding-point i {
  color: #5a86a7;
}

.services-site-funding-logos--tan a {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(90, 134, 167, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(52, 85, 110, 0.1);
}

.services-site-funding-logos--tan img {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.services-site-rhythm--tan li {
  border-color: rgba(53, 88, 116, 0.25);
  background: rgba(255, 255, 255, 0.9);
  color: #2a465c;
}

.services-site-rhythm--tan i {
  color: #5a86a7;
}

.services-site-benefit-cards--tan li {
  border-color: rgba(55, 90, 116, 0.14);
}

#tan-benefit-card-0 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(188, 221, 241, 0.44)
  );
}

#tan-benefit-card-1 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(248, 218, 187, 0.4)
  );
}

#tan-benefit-card-2 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(204, 235, 222, 0.44)
  );
}

#tan-benefit-card-3 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(226, 210, 243, 0.42)
  );
}

#tan-benefit-card-4 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(249, 224, 190, 0.4)
  );
}

#tan-benefit-card-5 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(199, 224, 244, 0.44)
  );
}

#tan-benefit-card-6 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(233, 216, 246, 0.42)
  );
}

#tan-benefit-card-7 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(202, 236, 220, 0.44)
  );
}

#tan-benefit-card-8 {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.54),
    rgba(189, 219, 242, 0.44)
  );
}

@media (min-width: 601px) {
  .services-site-tan > .layout-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: clamp(16px, 2.2vw, 34px);
    padding-right: clamp(16px, 2.2vw, 34px);
  }

  .services-site-grid--tan .services-site-photo--tan {
    grid-column: 6 / -1;
    grid-row: 1;
    align-self: start;
    height: auto;
  }

  #tan-parent-info {
    grid-column: 1 / span 5;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: min(100%, 92%);
  }

  .services-site-card--benefits-tan {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  #tan-availability {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: center;
    justify-self: center;
    width: min(100%, 92%);
  }

  #tan-funding {
    grid-column: 1 / -1;
    grid-row: 4;
    align-self: center;
    justify-self: center;
    width: min(100%, 92%);
  }
}
/* End Tan Y Lan Services Section */

/* Services FAQ Section */
.services-faq-section {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(173, 188, 223, 0.24),
      transparent 36%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(246, 209, 158, 0.24),
      transparent 32%
    ),
    linear-gradient(170deg, #eef4f8 0%, #f6fbf9 58%, #fbf7ef 100%);
}

.services-faq {
  border-radius: 24px;
  border: 1px solid rgba(45, 75, 59, 0.16);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.95),
      rgba(242, 249, 246, 0.92)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(45, 75, 59, 0.02) 0 1px,
      rgba(45, 75, 59, 0) 1px 20px
    );
  box-shadow: 0 16px 32px rgba(30, 48, 40, 0.12);
  padding: clamp(18px, 2.8vw, 30px);
}

.services-faq > p:first-child {
  margin: 0 0 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  color: #486351;
}

.services-faq h2 {
  margin: 0 0 10px;
}

.services-faq .faq-quickfacts {
  margin: 12px 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.services-faq .faq-chip {
  display: block;
  margin: 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(47, 79, 63, 0.24);
  color: #244538;
  font-weight: 700;
  box-shadow:
    0 8px 14px rgba(30, 48, 40, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  transform: rotate(-1deg);
}

.services-faq .faq-chip:nth-child(1) {
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.75),
    rgba(250, 217, 174, 0.78)
  );
}

.services-faq .faq-chip:nth-child(2) {
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.75),
    rgba(191, 220, 245, 0.8)
  );
  transform: rotate(0.8deg);
}

.services-faq .faq-chip:nth-child(3) {
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.75),
    rgba(199, 235, 217, 0.82)
  );
  transform: rotate(-0.6deg);
}

.services-faq .element-faq-item {
  border: 1px solid rgba(48, 76, 63, 0.18);
  border-radius: 16px;
  margin: 0 0 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(26, 42, 35, 0.09);
  overflow: clip;
}

.services-faq .element-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 14px 54px 14px 16px;
  color: #294639;
  font-weight: 700;
  line-height: 1.4;
}

.services-faq .element-faq-item summary::-webkit-details-marker {
  display: none;
}

.services-faq .element-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(38, 65, 52, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: #2f4a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.services-faq .element-faq-item[open] summary::after {
  content: "\2212";
}

.services-faq .faq-answer {
  padding: 0 16px 14px;
  border-top: 1px solid rgba(46, 75, 62, 0.12);
  background: linear-gradient(
    180deg,
    rgba(249, 253, 251, 0.85),
    rgba(244, 250, 246, 0.92)
  );
}

.services-faq .faq-answer p {
  margin: 10px 0 0;
}

.services-faq .faq-cta {
  margin-top: 14px;
  padding: clamp(14px, 1.8vw, 20px);
  border-radius: 18px;
  border: 1px solid rgba(48, 76, 63, 0.22);
  background:
    linear-gradient(
      155deg,
      rgba(150, 186, 172, 0.18),
      rgba(173, 188, 223, 0.24) 46%,
      rgba(248, 217, 171, 0.2)
    ),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 20px rgba(26, 42, 35, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.services-faq .faq-cta p {
  margin: 0;
  color: #28473b;
  line-height: 1.45;
}

.services-faq .faq-cta p + p {
  margin-top: 10px;
}

.services-faq .faq-cta-row + .faq-cta-row {
  margin-top: 10px;
}

.services-faq .faq-cta-site {
  margin: 0 0 4px;
  font-weight: 800;
  color: #1f3d31;
}

.services-faq .faq-cta-contact-line {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.services-faq .faq-cta-sep {
  color: #4f6a5d;
  font-weight: 700;
}

.services-faq .faq-cta strong {
  color: #1f3d31;
}

.services-faq .faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d5f8a;
  text-decoration: none;
  font-weight: 700;
}

.services-faq .faq-cta-link-text {
  border-bottom: 2px solid currentColor;
  line-height: 1.1;
}

.services-faq .faq-cta-link i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(47, 79, 63, 0.22);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  color: #1f4f70;
}

.services-faq .faq-cta-link:hover,
.services-faq .faq-cta-link:focus-visible {
  color: #0f4a70;
}
/* End Services FAQ Section */

#img-01 {
  position: absolute;
  max-width: 35%;
}

#img-02 {
  position: absolute;
  max-width: 35%;
  right: 0;
}

/* Section 1 Styles */

.section1 {
  padding: 45px;
  margin: 95px 0 0;
  position: relative;
}

.section1 > * {
  position: relative;
  z-index: 1;
}
.section1 > * {
  position: relative;
  z-index: 1;
}

.locations-twin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin: 20px auto 40px;
  max-width: 1200px;
}

.location-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.location-card-footer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: -18px;
  margin-left: 18px;
  margin-right: 18px;
}

.location-twin-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 14px rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-rows: auto;
  position: relative;
}

.location-card-main {
  position: relative;
  overflow: hidden;
}

.location-twin-image {
  position: relative;
  overflow: hidden;
}

.location-corner-ribbon {
  position: absolute;
  top: 19px;
  left: -40px;
  background: linear-gradient(135deg, #f6e39a, #f2c986);
  color: #2d4b3b;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 45px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-45deg);
  box-shadow:
    0 8px 14px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(45, 75, 59, 0.2);
  z-index: 4;
  text-align: center;
}

.location-twin-image iframe {
  width: 100%;
  height: 270px;
  border: 0;
}

.location-tag {
  position: static;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(225, 166, 212, 0.9);
  color: #333a33;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 6;
}

.location-twin-body {
  padding: 18px 20px 22px;
  position: relative;
  overflow: hidden;
}

.location-twin-body h3 {
  margin: 0 0 8px;
  color: #2d4b3b;
  font-size: 1.7rem;
}

.location-twin-body p {
  margin: 0 0 12px;
  color: #3a3a3a;
}

.location-hover-card {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 38, 1);
  color: #fff;
  padding: 22px 22px 60px;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  z-index: 5;
}

.location-hover-card p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.7;
}

.location-more-link {
  align-self: center;
  color: #fff;
  font-size: 1.65rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.location-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  position: relative;
  z-index: 6;
}

.location-directions-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 14px rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  transform: rotate(-1.5deg);
}

.location-polaroid {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 10px 10px 32px;
  border-radius: 14px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 0 14px rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: 170px;
  transform: rotate(2deg);
  text-align: center;
  margin-left: auto;
}

.location-polaroid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.location-polaroid-caption {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #2d4b3b;
}

.location-twin-card:hover .location-hover-card {
  opacity: 1;
}

.location-twin-card:hover .location-corner-ribbon {
  opacity: 0;
  visibility: hidden;
}

.location-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 0;
  color: #2d4b3b;
  font-size: 0.95rem;
  position: relative;
  z-index: 6;
}

.location-icon-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 75, 59, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.location-twin-card:hover .location-icon-row span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.element-locations-header.element-header h2 {
  color: #2d4b3b;
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
  padding: 0;
  margin: 30px 0 10px;
}

.locations-title-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  color: #2d4b3b;
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.locations-title-light {
  font-weight: 500;
  color: #6c7b70;
}

.locations-title-strong {
  font-weight: 800;
  background: url(../Images/textured-title-fill.png);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(45, 75, 59, 0.5);
}

.locations-title-underline {
  display: block;
  width: 320px;
  height: 32px;
  margin: 8px auto 10px;
  transform: translateX(25px);
}

.locations-title-subtitle {
  margin: 0 0 24px;
  color: #4c5b52;
  font-size: 1.35rem;
}

.section1 .element-card-location {
  max-width: 400px;
  justify-self: center;
  align-self: center;
}

.section1 h3 {
  font-size: 2rem;
  color: #333a33;
}

.section1 h3 i {
  color: #333a33;
  margin-right: 10px;
}

.section1 p {
  font-size: 20px;
}
/* Card Set A */
.element-card-setA {
  padding: 40px 10px;
}

.element-card-setA .element-card-light {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.element-card-setA .layout-grid {
  gap: 24px;
}

/* Option 2: Staggered rhythm */
.element-card-setA .element-card-light:nth-child(2),
.element-card-setA .element-card-light:nth-child(4) {
  transform: translateY(14px);
}

.element-card-setA .element-card-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.55),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.element-card-setA .element-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.element-card-setA .element-card-light:hover::after {
  opacity: 1;
}

.element-card-setA .element-card-light:hover .card-feature-icon {
  transform: rotate(-4deg) scale(1.05);
}

#card-award,
#card-rocket {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

#card-funding,
#card-environment {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.card-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.card-feature-icon {
  width: 140px;
  height: 140px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  color: #2d4b3b;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}

.icon-playful {
  width: 100px;
  height: 100px;
  display: block;
}

.card-feature-body h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #2d4b3b;
}

.card-feature-body p {
  margin: 0;
  color: #3a3a3a;
  line-height: 1.6;
}

.card-feature-toggle {
  display: none;
}

.card-feature-details {
  width: 100%;
}

.element-card-setA .card {
  max-width: 250px;
  min-height: 250px;
  overflow: hidden;
}
.element-card-setA h3 {
  font-size: 2rem;
  color: #333;
}

.element-card-setA h3 i {
  font-size: 4rem;
  margin-right: 10px;
  color: #333;
}

.element-card-setA p {
  width: auto;
  font-size: 18px;
}

#card-award {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(255, 255, 255, 0) 2px 18px
    ),
    linear-gradient(180deg, #f5efe4 0%, #ece2d4 100%);
  color: var(--first-color);
}

#card-rocket {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(255, 255, 255, 0) 2px 18px
    ),
    linear-gradient(180deg, #f5efe4 0%, #ece2d4 100%);
  color: var(--fifth-color);
}

#card-funding {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(255, 255, 255, 0) 2px 18px
    ),
    linear-gradient(180deg, #f5efe4 0%, #ece2d4 100%);
  color: var(--third-color);
}

#card-environment {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      rgba(255, 255, 255, 0) 2px 18px
    ),
    linear-gradient(180deg, #f5efe4 0%, #ece2d4 100%);
  color: var(--fourth-color);
}

#card-award h3 {
  color: var(--first-color);
}

#card-rocket h3 {
  color: var(--fifth-color);
}

#card-funding h3 {
  color: var(--third-color);
}

#card-environment h3 {
  color: var(--fourth-color);
}

#card-award p,
#card-rocket p,
#card-funding p,
#card-environment p {
  color: #333a33;
}

#card-award:hover h3 {
  color: var(--first-color);
}

#card-rocket:hover h3 {
  color: var(--fifth-color);
}

#card-funding:hover h3 {
  color: var(--third-color);
}

#card-environment:hover h3 {
  color: var(--fourth-color);
}

#card-award:hover h3 i {
  color: var(--first-color);
}

#card-rocket:hover h3 i {
  color: var(--fifth-color);
}

#card-funding:hover h3 i {
  color: var(--third-color);
}

#card-environment:hover h3 i {
  color: var(--fourth-color);
}

#card-award:hover {
  color: var(--first-color);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 5s ease;
}

#card-rocket:hover {
  color: var(--fifth-color);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#card-funding:hover {
  color: var(--third-color);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#card-environment:hover {
  color: var(--fourth-color);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* End of Card Set A */

/* End of Section 1 */
/* __________________ */
/* Section 2 Styles */
.section2 {
  margin: 20px 0;
  padding: 70px 0 80px;
}

.section2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.section2-overview {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(320px, 1.05fr);
  grid-template-areas: "features copy";
  gap: 28px;
  align-items: start;
}

.section2-overview-copy {
  grid-area: copy;
  display: grid;
  gap: 20px;
  align-self: start;
}

.section2-intro {
  text-align: left;
}

.section2-intro h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  color: #2d4b3b;
  font-weight: 800;
}

.section2-intro p {
  max-width: 820px;
  margin: 0;
  font-size: 1.1rem;
  color: #3a3a3a;
  line-height: 1.7;
}

.section2-kicker {
  display: inline-block;
  margin: 0;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2d4b3b;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.8rem;
  border: 2px solid rgba(45, 75, 59, 0.8);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(255, 255, 255, 0.7);
  transform: rotate(-2deg);
  position: relative;
  align-self: center;
}

.section2-kicker::after {
  content: "✦";
  position: absolute;
  right: -14px;
  top: -10px;
  font-size: 0.9rem;
  color: #e78a9e;
}

.section2-features {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.section2-feature {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section2-feature:nth-child(3) {
  grid-column: 1 / -1;
}

.section2-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: rgba(45, 75, 59, 0.08);
  color: #2d4b3b;
  font-size: 1.5rem;
}

.section2-feature h3 {
  margin: 0 0 8px;
  color: #2d4b3b;
  font-size: 1.35rem;
}

.section2-feature p {
  margin: 0;
  color: #3a3a3a;
  line-height: 1.6;
}

.section2-proof {
  display: grid;
  gap: 24px;
}

.section2-proof-card {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section2-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2d4b3b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section2-proof-card h3,
.section2-reviews-intro h3 {
  margin: 0 0 14px;
  color: #2d4b3b;
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  line-height: 1.2;
}

.section2-proof-card p {
  margin: 0 0 14px;
  color: #39453e;
  line-height: 1.75;
}

.section2-proof-card p:last-child {
  margin-bottom: 0;
}

.section2-reviews {
  display: grid;
  gap: 16px;
}

.section2-reviews-intro {
  padding: 6px 4px 0;
}

.section2-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section2-video-row {
  display: flex;
  justify-content: center;
}

.review-panel {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 20px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  color: #2d4b3b;
}

.review-summary {
  display: grid;
  gap: 12px;
  border-bottom: 1px dashed rgba(45, 75, 59, 0.25);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.review-summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-score {
  display: grid;
  gap: 6px;
}

.review-score-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2d4b3b;
}

.review-count {
  font-size: 0.95rem;
  color: #4c5b52;
}

.review-stars {
  color: #f3b34b;
  display: inline-flex;
  gap: 4px;
  font-size: 0.9rem;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-quote {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(45, 75, 59, 0.15);
}

.review-quote-stars {
  display: inline-flex;
  gap: 3px;
  color: #f3b34b;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.review-quote p {
  margin: 0 0 10px;
  color: #3a3a3a;
  line-height: 1.6;
}

.review-name {
  font-weight: 600;
  color: #2d4b3b;
  font-size: 0.95rem;
}

.section2-video-card {
  position: relative;
  isolation: isolate;
  padding: 28px 18px 0;
  width: min(860px, 100%);
}

.section2-video-frame {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 252, 245, 0.95),
      rgba(246, 239, 228, 0.92)
    ),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(98, 122, 98, 0.22);
  box-shadow:
    0 28px 52px rgba(40, 56, 51, 0.18),
    inset 0 0 0 3px rgba(255, 255, 255, 0.65);
}

.section2-video-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.section2-video-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #2d4b3b;
  color: #f8f5ef;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(45, 75, 59, 0.2);
}

.section2-video-chip-soft {
  background: rgba(255, 255, 255, 0.75);
  color: #567260;
  border: 1px solid rgba(86, 114, 96, 0.18);
  box-shadow: none;
}

.section2-video-stage {
  position: relative;
  padding: 24px 22px 96px;
  min-height: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #f6f1e7 0%, #eef2e9 68%, #e7edde 100%);
  box-shadow: inset 0 0 0 1px rgba(92, 114, 97, 0.12);
}

.section2-video-topper {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 28px 24px;
  background: linear-gradient(180deg, #f6f1e7 0%, #eef2e9 100%);
  border-bottom: 1px solid rgba(110, 137, 116, 0.14);
  pointer-events: none;
}

.section2-video-topper-line {
  flex: 1 1 auto;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(110, 137, 116, 0),
    rgba(110, 137, 116, 0.45),
    rgba(110, 137, 116, 0)
  );
}

.section2-video-topper-sprig {
  position: relative;
  width: 36px;
  height: 20px;
}

.section2-video-topper-sprig::before,
.section2-video-topper-sprig::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 14px;
  height: 14px;
  background: linear-gradient(180deg, #9bb59c 0%, #6f8f73 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.section2-video-topper-sprig::before {
  left: 3px;
  border-radius: 70% 30% 70% 30% / 60% 35% 65% 40%;
  transform: rotate(-34deg);
}

.section2-video-topper-sprig::after {
  right: 3px;
  border-radius: 30% 70% 30% 70% / 35% 60% 40% 65%;
  transform: rotate(34deg);
}

.section2-video-topper-sprig {
  background: linear-gradient(
    180deg,
    rgba(110, 137, 116, 0) 0%,
    rgba(110, 137, 116, 0) 28%,
    rgba(110, 137, 116, 0.55) 28%,
    rgba(110, 137, 116, 0.55) 100%
  );
  background-size: 2px 14px;
  background-repeat: no-repeat;
  background-position: center 6px;
}

.section2-video-layer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: block;
  border-radius: 55% 45% 20px 20px / 36% 38% 18px 18px;
  pointer-events: none;
}

.section2-video-layer-back {
  z-index: 1;
  height: 42%;
  background: #c8dbca;
  bottom: 10px;
}

.section2-video-layer-middle {
  z-index: 1;
  left: 26px;
  right: 26px;
  height: 40%;
  background: #9ebea6;
  bottom: 24px;
}

.section2-video-layer-front {
  z-index: 3;
  left: 8px;
  right: 8px;
  height: 30%;
  background:
    radial-gradient(
      circle at 8% 24%,
      rgba(255, 255, 255, 0.35),
      transparent 20%
    ),
    linear-gradient(180deg, #ead6a5 0%, #dec489 100%);
  border-radius: 40% 60% 24px 24px / 52% 42% 24px 24px;
  bottom: 10px;
  box-shadow:
    0 -2px 0 rgba(255, 255, 255, 0.45) inset,
    0 -14px 24px rgba(93, 85, 48, 0.08);
}

.section2-video-screen {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 0.76;
  overflow: hidden;
  border-radius: 28px;
  background: #d6ddd6;
  border: 10px solid #f7f0e3;
  box-shadow:
    0 0 0 1px rgba(98, 122, 98, 0.18),
    0 18px 30px rgba(31, 44, 60, 0.16);
}

.section2-video-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section2-video-caption {
  display: grid;
  gap: 6px;
  max-width: 520px;
  padding: 14px 16px;
  margin: -28px 20px 0 auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(86, 114, 96, 0.16);
  box-shadow: 0 12px 20px rgba(48, 63, 54, 0.12);
}

.section2-video-caption p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d4b3b;
  line-height: 1.35;
}

.section2-video-caption span {
  color: #5c675f;
  line-height: 1.55;
  font-size: 0.94rem;
}

.section2-video-sun {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  opacity: 0.85;
  top: 0;
  left: 28px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(250, 230, 165, 0.9) 0%,
    rgba(250, 230, 165, 0.2) 68%,
    transparent 70%
  );
}

.section2-video-leaf {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 124px;
  border-radius: 60% 40% 60% 40% / 48% 44% 56% 52%;
  background: linear-gradient(180deg, #8eb196 0%, #63896c 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
  transform-origin: bottom center;
}

.section2-video-leaf::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 12px;
  width: 2px;
  background: rgba(247, 240, 227, 0.45);
  transform: translateX(-50%);
}

.section2-video-leaf-left {
  left: -4px;
  bottom: 104px;
  transform: rotate(-20deg);
}

.section2-video-leaf-right {
  right: 8px;
  bottom: 118px;
  transform: rotate(18deg);
}

.section2-flag {
  display: inline-block;
  width: 44px;
  height: 30px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  margin-left: 10px;
  vertical-align: middle;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.section2-action {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 6px;
}

.section2-action-text {
  margin: 0;
  color: #2d4b3b;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.section2-action .cta-split {
  position: relative;
  z-index: 60;
}

.section2-action .cta-split .cta-menu {
  z-index: 61;
}

.section2 .element-button {
  background-color: var(--second-color);
}

/* End of Section 2 */
/* __________________ */

/* Section 3 Styles */

.section3 {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section3-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 20px;
  align-items: start;
  width: min(1200px, 100%);
}

.section3 .element-text-header {
  max-width: 520px;
  text-align: left;
}

.section3-hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.hours-card {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 12px 14px;
  color: #2d4b3b;
  box-shadow: 0 12px 24px rgba(31, 44, 60, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.hours-card h3 {
  margin: 0 0 6px;
  font-size: 1.825rem;
}

.hours-card p {
  margin: 0;
  font-size: 0.95rem;
}

.section3 .element-text-header h4 {
  font-size: 2.2rem;
  color: #2d4b3b;
  text-shadow: 1px -1px rgba(51, 58, 51, 0.25);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7d7a6, #f2c986);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.7);
  position: relative;
}

.section3 .element-text-header h4::before,
.section3 .element-text-header h4::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #e3b66f;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.section3 .element-text-header h4::before {
  left: -8px;
}

.section3 .element-text-header h4::after {
  right: -8px;
}

.section3 .element-text-header h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  color: #2d4b3b;
  text-shadow: 1px -1px rgba(51, 58, 51, 0.25);
}

.element-card-setB {
  padding: 0;
  align-items: start;
}

.section3-cards .element-card-setB {
  display: grid;
  gap: 12px;
}

.section3 .element-card-light {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.element-card-setB .element-card-light {
  max-width: 100%;
  background-color: transparent;
  border: none;
}

.element-card-setB h3 {
  font-size: 1.7rem;
  color: #2d4b3b;
}

#identity-02,
#identity-03 {
  font-size: 1.8rem;
}

.card-icon-svg {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex: 0 0 auto;
}

.card-icon-svg svg {
  width: 100%;
  height: 100%;
}

.element-card-setB .utility-inline-flex {
  align-items: center;
  gap: 12px;
}

.element-card-setB p {
  font-size: 16px;
  color: #2d4b3b;
}

.section3 .element-text-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #32423a;
}

/* End of Section 3 */
/* __________________ */

.utility-bg-section3to4 {
  background: linear-gradient(
    to bottom,
    var(--fifth-color),
    var(--fourth-color)
  );
}

/* Section 4 Styles */
.section4 {
  padding: 45px 20px 60px;
}

.section4 .element-text-header {
  margin-bottom: 24px;
}

.section4 .element-text-header {
  font-size: 2.5rem;
  color: goldenrod;
}

.section4-title {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.section4-title h1 {
  margin: 0;
}

.section4-title-blocks {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.section4-title-blocks .title-main {
  font-weight: 700;
  font-size: calc(clamp(2rem, 3.2vw, 3rem) + 30px);
  color: #2d4b3b;
  letter-spacing: 0.02em;
}

.section4-title-blocks .title-blocks {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.section4-title-blocks .title-blocks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 70px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d4b3b;
  background: linear-gradient(
    135deg,
    #f2d39b 0%,
    #e0b97e 45%,
    #c9a97e 55%,
    #b98c5b 100%
  );
  border-radius: 8px;
  box-shadow:
    0 8px 0 rgba(45, 75, 59, 0.38),
    0 14px 22px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(45, 75, 59, 0.22);
  text-transform: uppercase;
}

.section4-title-blocks .title-blocks span:nth-child(1) {
  border: 2px solid #d3a66b;
}

.section4-title-blocks .title-blocks span:nth-child(2) {
  border: 2px solid #cfad5f;
}

.section4-title-blocks .title-blocks span:nth-child(3) {
  border: 2px solid #86b59c;
}

.section4-title-blocks .title-blocks span:nth-child(4) {
  border: 2px solid #8fb6dd;
}

.section4-title-blocks .title-blocks span:nth-child(5) {
  border: 2px solid #d28aa3;
}

.section4-title-blocks .title-blocks span:nth-child(6) {
  border: 2px solid #caa86e;
}

.section4-title-blocks .title-blocks span:nth-child(7) {
  border: 2px solid #94b077;
}

.section4-title-blocks .title-blocks span:nth-child(8) {
  border: 2px solid #bf9e7c;
}

.section4-title-blocks .title-blocks span:nth-child(9) {
  border: 2px solid #a18ad6;
}

.section4-title-blocks .title-blocks span:nth-child(10) {
  border: 2px solid #c99669;
}

.section4-title-blocks .title-blocks span:nth-child(odd) {
  transform: rotate(-4deg) translateY(2px);
  box-shadow:
    -3px 9px 0 rgba(45, 75, 59, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(45, 75, 59, 0.22);
}

.section4-title-blocks .title-blocks span:nth-child(even) {
  transform: rotate(4deg) translateY(-2px);
  box-shadow:
    3px 9px 0 rgba(45, 75, 59, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(45, 75, 59, 0.22);
}

.section4-title-blocks .title-blocks span:nth-child(3n) {
  transform: rotate(-6deg) translateY(3px);
}

.section4-title-blocks .title-blocks span:nth-child(4n) {
  transform: rotate(6deg) translateY(-3px);
  box-shadow:
    4px 8px 0 rgba(45, 75, 59, 0.35),
    0 14px 20px rgba(0, 0, 0, 0.16),
    inset 0 0 0 2px rgba(45, 75, 59, 0.22);
}

.section4-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.facility-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.facility-card-body h3 {
  font-size: 3.025rem;
  color: var(--second-color);
  text-shadow: 1px -2px #333a33;
  margin: 8px 0 4px;
}

.facility-card-body h4 {
  font-size: 2.025rem;
  color: var(--first-color);
  text-shadow: none;
  margin: 0 0 12px;
}

.facility-card-body p {
  margin: 0 0 14px;
}

.facility-signature {
  font-weight: 600;
  color: #2d4b3b;
}

.facility-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  background: #f6e39a;
  color: #2d4b3b;
  box-shadow: inset 0 0 0 2px rgba(45, 75, 59, 0.2);
}

.facility-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.anniversary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #2d4b3b;
  background: linear-gradient(135deg, #f6e39a, #f2c986, #f7d7a6);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(45, 75, 59, 0.18);
  gap: 6px;
}

.anniversary-starburst {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #fff 20%, #f6e39a 40%, #f2c986 70%);
  clip-path: polygon(
    50% 0%,
    60% 25%,
    85% 15%,
    70% 40%,
    100% 50%,
    70% 60%,
    85% 85%,
    60% 75%,
    50% 100%,
    40% 75%,
    15% 85%,
    30% 60%,
    0% 50%,
    30% 40%,
    15% 15%,
    40% 25%
  );
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.facility-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
}

.facility-chips li {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(45, 75, 59, 0.2);
}

.facility-media {
  position: relative;
  border-radius: 18px;
  box-shadow: none;
}

.facility-media-inline {
  padding: 0;
  margin: 8px 0 18px;
}

.photo-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  position: relative;
}

.photo-carousel-hint {
  position: absolute;
  z-index: 3;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 49, 74, 0.9);
  color: #f6e39a;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(20, 35, 58, 0.25);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.photo-carousel-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.photo-carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.photo-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  padding: 12px 18%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 18%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.photo-carousel-track::-webkit-scrollbar {
  display: none;
}

.photo-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 16px 32px rgba(20, 35, 58, 0.16);
  scroll-snap-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.photo-card:nth-child(odd) {
  transform: rotate(-1deg);
}

.photo-card:nth-child(even) {
  transform: rotate(1deg);
}

.photo-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 20px 36px rgba(20, 35, 58, 0.2);
}

.photo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.photo-card figcaption {
  margin-top: 10px;
  font-weight: 700;
  color: #2d4b3b;
  text-align: center;
}

.photo-carousel-btn {
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 20px rgba(20, 35, 58, 0.2);
  font-size: 1.6rem;
  line-height: 1;
  color: #2d4b3b;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.photo-carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(20, 35, 58, 0.24);
}

.photo-carousel-btn:focus-visible {
  outline: 3px solid rgba(45, 75, 59, 0.35);
  outline-offset: 3px;
}

/* Highlights from Option B */
.facility-highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 2px rgba(45, 75, 59, 0.18);
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1740px;
  margin-inline: auto;
}

.facility-highlight {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 188px;
  padding: 34px 22px;
  background: linear-gradient(145deg, #f6e7b6, #eacb8a);
  mask: url(../Images/textured-title-fill.png) center / 100% no-repeat;
  -webkit-mask: url(../Images/textured-title-fill.png) center / 100% no-repeat;
  text-align: center;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(45, 75, 59, 0.22);
}

.facility-highlight:nth-child(1) {
  background: linear-gradient(145deg, #f2d39b, #d3a66b);
}

.facility-highlight:nth-child(2) {
  background: linear-gradient(145deg, #e4c679, #cfad5f);
}

.facility-highlight:nth-child(3) {
  background: linear-gradient(145deg, #a9d2b6, #86b59c);
}

.facility-highlight:nth-child(4) {
  background: linear-gradient(145deg, #b2cfe9, #8fb6dd);
}

.facility-highlight:nth-child(5) {
  background: linear-gradient(145deg, #e7b4c4, #d28aa3);
}

.facility-highlight .highlight-title {
  font-weight: 700;
  color: #2d4b3b;
  margin: 0;
  line-height: 1.18;
}

.facility-highlight .highlight-text {
  font-size: 0.92rem;
  color: #2d4b3b;
  margin: 0;
  line-height: 1.28;
  max-width: 24ch;
  margin-inline: auto;
}

.facility-highlight:nth-child(5) {
  justify-self: center;
}

/* End of Section 4 */
/* __________________ */

/* Section 5 Styles */
.testimonials-section {
  padding: 70px 22px;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 240, 1),
    rgba(241, 237, 228, 1)
  );
}

.testimonials-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: #f6e39a;
  margin: 0 auto 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22314a, #2b3b57);
  box-shadow:
    0 16px 28px rgba(34, 49, 74, 0.25),
    inset 0 0 0 2px #f6e39a;
}

.kicker-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.testimonials-kicker svg {
  width: 63px;
  height: 63px;
  color: #7b5aa6;
  align-self: center;
  flex-shrink: 0;
}

.kicker-tab {
  position: absolute;
  top: -14px;
  width: 90px;
  height: 30px;
  border-radius: 999px;
  background: #f6e39a;
  box-shadow: 0 8px 16px rgba(34, 49, 74, 0.2);
  z-index: 1;
  border: 2px dashed rgba(93, 70, 35, 0.6);
}

.kicker-tab-1 {
  left: 18%;
  transform: rotate(-6deg);
  background: #f7d7a6;
}

.kicker-tab-2 {
  left: 44%;
  transform: rotate(4deg);
  background: #f6e39a;
}

.kicker-tab-3 {
  left: 68%;
  transform: rotate(-3deg);
  background: #f2c986;
}

.testimonials-inner {
  width: min(1200px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.testimonials-story {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.testimonials-story h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #2d4b3b;
  margin: 0 0 16px;
}

.testimonials-story p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: #35443c;
}

.testimonials-cta {
  margin-top: 18px;
}

.testimonials-cta .cta-label,
.testimonials-cta .cta-toggle {
  background: var(--third-color);
}

.testimonials-proof {
  display: grid;
  gap: 16px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.proof-banner {
  position: absolute;
  top: 8px;
  right: -30px;
  background: linear-gradient(135deg, #f6e39a, #f2c986);
  color: #2d4b3b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 34px;
  transform: rotate(30deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
  outline: 1px solid rgba(246, 227, 154, 0.8);
}

.proof-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d4b3b;
}

.proof-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d4b3b;
}

.proof-card p {
  margin: 0;
  color: #35443c;
  line-height: 1.6;
}

.testimonials-title {
  max-width: 800px;
  background: #22314a;
  border-radius: 28px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  padding: 20px 26px;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.testimonials-marquee-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
}

.testimonials-marquee-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #f6e39a;
  margin: 0 0 6px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.testimonials-marquee-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.video-filmstrip {
  width: min(1200px, 100%);
  margin: 0 auto 24px;
  background: #22314a;
  border-radius: 24px;
  padding: 16px 16px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
}

.filmstrip-viewport {
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
}

.filmstrip-prev {
  grid-column: 1;
  grid-row: 1;
}

.filmstrip-next {
  grid-column: 3;
  grid-row: 1;
}

.filmstrip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 8px 8px 16px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.video-filmstrip.is-looping .filmstrip-track {
  scroll-snap-type: none;
}

.filmstrip-nav {
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.filmstrip-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.filmstrip-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.filmstrip-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.filmstrip-dot:hover,
.filmstrip-dot:focus-visible {
  background: rgba(255, 255, 255, 0.65);
}

.filmstrip-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.filmstrip-card {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(136, 185, 235, 0.7);
  border-radius: 14px;
  overflow: visible;
  scroll-snap-align: start;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(15, 19, 27, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 240px;
}

.filmstrip-card.is-clone {
  pointer-events: none;
}

.filmstrip-card img {
  display: block;
  width: 100%;
  height: 150px;
  aspect-ratio: auto;
  object-fit: cover;
}

.filmstrip-label {
  position: static;
  display: block;
  margin: 8px auto 10px;
  padding: 6px 12px;
  width: 170px;
  border-radius: 999px;
  background: rgba(136, 185, 235, 0.7);
  color: #1b2a3d;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.filmstrip-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 160px;
}

.filmstrip-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 2;
}

.video-play i {
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.video-carousel-card:hover .video-play,
.video-carousel-card:focus-visible .video-play {
  background: rgba(0, 0, 0, 0.35);
}

.video-carousel-card:focus-visible {
  outline: 3px solid var(--second-color);
  outline-offset: 3px;
}

.video-carousel-btn {
  border: none;
  background: var(--second-color);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.video-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.video-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-carousel-dot.active {
  background: var(--third-color);
  transform: scale(1.2);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-open .site-header {
  display: none;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 28, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.video-lightbox.is-open {
  display: flex;
}

.video-lightbox-inner {
  position: relative;
  width: min(900px, 92vw);
  background: #0b0e16;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.video-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--second-color);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}

.video-lightbox-prev {
  left: 8px;
}

.video-lightbox-next {
  right: 8px;
}

.video-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

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

.video-lightbox-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 8px 18px;
  min-width: 210px;
  max-width: min(88%, 420px);
  border-radius: 999px;
  background: rgba(136, 185, 235, 0.88);
  color: #1b2a3d;
  font-size: clamp(0.85rem, 1.35vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 10px 24px rgba(15, 19, 27, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.video-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: var(--second-color);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
}

.video-lightbox-fullscreen {
  position: absolute;
  top: 12px;
  right: 56px;
  border: none;
  background: var(--second-color);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
}

.video-lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.video-lightbox-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.video-lightbox-dot.active {
  background: var(--third-color);
  transform: scale(1.2);
}

/* End of Section 5 */
/* __________________ */

/* ===================== */
/* Home Page (index.html) */
/* Section 6: Trust */
/* ===================== */

/* ================================ */
/* Shared Trust Marquee (index.html */
/* + Cwmdu About page)              */
/* ================================ */
.trust-section,
.location-trust {
  padding: 40px 20px;
}

.trust-ribbon,
.location-trust-ribbon {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(45, 75, 59, 0.18);
  text-align: center;
}

.trust-ribbon h3,
.location-trust-ribbon h3 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #2d4b3b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-logos,
.location-trust-logos {
  overflow: hidden;
  width: 100%;
}

.trust-logos-track,
.location-trust-logos-track {
  display: flex;
  gap: 18px 28px;
  align-items: center;
  width: max-content;
  animation: trust-marquee 40s linear infinite;
}

.trust-logos:hover .trust-logos-track,
.location-trust-logos:hover .location-trust-logos-track {
  animation-play-state: paused;
}

.trust-logo-card,
.location-trust-logo-card {
  background: rgba(136, 185, 235, 0.7);
  border-radius: 18px;
  padding: 14px 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(34, 49, 74, 0.18);
  flex: 0 0 auto;
}

.trust-logo-card img,
.location-trust-logo-card img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  max-width: 500px;
  filter: grayscale(0.05);
  opacity: 0.95;
}

#logo-welgov,
#logo-swac,
#logo-ciw,
#logo-wppa,
#logo-flying-start,
#logo-cofw,
#logo-ndna,
#logo-food-hygiene-rating {
  width: 150px;
}

@keyframes trust-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-logos-track,
  .location-trust-logos-track {
    animation: none;
    transform: translateX(0);
  }
}

/* ===================== */
/* Cwmdu About Page      */
/* Section 6: Trust      */
/* ===================== */
.location-trust-bg {
  background-image: url(../Images/backgrounds/bg-texture-01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* End of Section 6 */
/* __________________ */

/* ===================== */
/* Cwmdu About Page      */
/* Hero Section          */
/* ===================== */
.location-hero {
  padding: 64px 24px 32px;
  overflow-x: clip;
}

.location-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.location-hero-content {
  display: grid;
  gap: 18px;
}

.location-hero-anniversary {
  border: 2px solid rgba(45, 75, 59, 0.25);
  border-radius: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 22px rgba(45, 75, 59, 0.08);
  display: grid;
  gap: 10px;
  position: relative;
}

.location-hero-anniversary-media {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
}

.location-hero-anniversary-img {
  width: min(230px, 100%);
  height: auto;
  align-self: start;
  background: #fff;
  padding: 10px 10px 22px;
  border-radius: 6px;
  box-shadow:
    0 14px 28px rgba(45, 75, 59, 0.18),
    inset 0 0 0 1px rgba(45, 75, 59, 0.08);
  transform: rotate(-2deg);
}

.location-hero-anniversary-img:nth-child(2) {
  transform: rotate(2deg);
}

/* ===================== */
/* Meet the Team Page    */
/* Hero Section          */
/* ===================== */
.team-hero {
  position: relative;
  padding: 96px 24px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  row-gap: 18px;
  column-gap: 56px;
  align-items: start;
  background: linear-gradient(
    225deg,
    rgba(186, 213, 236, 0.92) 0%,
    rgba(242, 179, 155, 0.92) 50%,
    rgba(196, 228, 212, 0.92) 100%
  );
}

.team-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.9)
  );
  pointer-events: none;
  z-index: 0;
}

.team-hero-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(3.2rem, 4.8vw, 4.6rem);
  color: #2a2a2a;
}

.team-hero-title-cutout {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.16em;
  row-gap: 0.08em;
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px 6px 12px;
  background: rgba(223, 173, 188, 0.45);
  border-radius: 12px 20px 14px 18px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.12),
    inset 0 -5px 0 rgba(255, 255, 255, 0.6);
}

.team-hero-highlight {
  position: relative;
  display: inline-block;
  color: inherit;
  z-index: 0;
}

.team-hero-highlight::before {
  content: none;
}

.team-hero-highlight::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.08em;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #f7b6b2,
    #f7d2a2,
    #f6f3a6,
    #bfe8c2,
    #b9d8f7,
    #cdb7f0
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.team-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(188, 223, 173, 0.4);
  border: 1px solid rgba(45, 75, 59, 0.2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d4b3b;
}

.team-hero-body {
  display: grid;
  gap: 18px;
  grid-column: 1 / 2;
  align-self: start;
}

.team-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  font-size: 28px;
  color: #3a3a3a;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
}

.team-hero-content p {
  margin: 0;
}

.team-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.team-hero-uls {
  position: relative;
  flex: 0 0 100%;
  height: 132px;
  margin-top: 10px;
}

.team-hero-uls::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(100% - 90px);
  height: 12px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    #f7b6b2,
    #f7d2a2,
    #f6f3a6,
    #bfe8c2,
    #b9d8f7,
    #cdb7f0
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.team-hero-uls::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 102px;
  height: 102px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b8872b' d='M12 2.4l2.56 5.2 5.74.84-4.15 4.04.98 5.72L12 15.9l-5.13 2.7.98-5.72L3.7 8.44l5.74-.84L12 2.4z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(45, 75, 59, 0.18));
}

.team-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(223, 173, 188, 0.28);
  border: 1px solid rgba(173, 188, 223, 0.45);
  font-size: 13px;
  font-weight: 600;
  color: #2d4b3b;
  box-shadow: 0 10px 20px rgba(45, 75, 59, 0.12);
}

.team-hero-pill i {
  color: #b05a76;
}

.team-hero-media {
  position: relative;
  z-index: 1;
  grid-column: 2 / 3;
  padding: 26px;
  border-radius: 34px;
  background: #1e2329;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.team-hero-media img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 26px;
  object-fit: cover;
}

.team-hero-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.team-hero-media::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #2f6dff 0%, #0a0f14 60%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 0 6px rgba(47, 109, 255, 0.35);
  pointer-events: none;
}

.team-hero-ig {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(122, 78, 161, 0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 16px 24px 18px 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 10px 20px rgba(90, 46, 138, 0.22),
    inset 0 -4px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.location-hero-eyebrow {
  margin: 0 0 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2d4b3b;
  font-weight: 600;
}

.location-hero-content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #2d4b3b;
}

.location-hero-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.location-hero-title-row h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: #2d4b3b;
}

.location-hero-years {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d4b3b;
  background: #f6c965;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow:
    0 8px 18px rgba(45, 75, 59, 0.18),
    inset 0 0 0 2px rgba(45, 75, 59, 0.2);
  font-size: 0.78rem;
}

.location-hero-thanks {
  margin: 0 0 12px;
  font-size: 1rem;
  font-style: italic;
  color: #2d4b3b;
  position: relative;
  padding-left: 20px;
}

.location-hero-thanks::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: -0.05em;
  font-size: 1.1rem;
  color: #e37d96;
}

.location-hero-content p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2f3b34;
}

.location-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(45, 75, 59, 0.16);
  background: #f9f4ec;
  padding: 10px;
}

.location-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../Images/backgrounds/bg-texture-01.png);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.location-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(45, 75, 59, 0.12);
}

.location-hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 9999;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f6c965;
  color: #2d4b3b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(45, 75, 59, 0.18);
}

.location-hero-badge span {
  display: block;
  font-size: 0.85rem;
}

.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2d4b3b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.location-hero-highlights {
  max-width: 1200px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-hero-highlight {
  position: relative;
  border-radius: 22px;
  padding: 22px 24px;
  background: linear-gradient(140deg, #ffffff 0%, #f8fbf9 100%);
  box-shadow: 0 16px 30px rgba(45, 75, 59, 0.08);
}

.location-hero-highlight::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: 48px;
  height: 16px;
  border-radius: 999px;
  background: #f6c965;
  box-shadow: 0 6px 14px rgba(45, 75, 59, 0.12);
}

.location-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(231, 165, 187, 0.22);
  color: #2d4b3b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.location-hero-highlight h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 10px;
  font-size: 1.4rem;
  color: #2d4b3b;
}

.location-hero-highlight h2 i {
  color: #e37d96;
  font-size: 1.1rem;
}

.location-hero-highlight h2::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(45, 75, 59, 0.35),
    rgba(45, 75, 59, 0.35) 6px,
    transparent 6px,
    transparent 12px
  );
}

.location-hero-highlight p {
  margin: 0;
  color: #2f3b34;
  line-height: 1.6;
}

/* ===================== */
/* Cwmdu About Page      */
/* Section 1             */
/* ===================== */
.location-overview {
  padding: 56px 24px;
}

.location-overview-media,
.location-overview-content {
  margin: 0 auto;
}

.location-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.location-overview-media {
  position: relative;
  justify-self: start;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-radius: 26px;
}

.location-overview-media::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image: url(../Images/svg/cwmdu-watercolor-blob-02.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.location-overview-media img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(45, 75, 59, 0.14);
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(0.925);
  transform-origin: left center;
  mask-image: url(../Images/svg/cwmdu-watercolor-blob.svg);
  mask-repeat: no-repeat;
  mask-size: 104% 104%;
  mask-position: center;
  -webkit-mask-image: url(../Images/svg/cwmdu-watercolor-blob.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 104% 104%;
  -webkit-mask-position: center;
}

.location-overview-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2d4b3b;
}

.location-overview-content p {
  margin: 0 0 18px;
  color: #2f3b34;
  line-height: 1.6;
  font-size: 1.02rem;
}

.location-overview-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.location-overview-content li {
  position: relative;
  padding-left: 28px;
  color: #2f3b34;
  line-height: 1.55;
}

.location-overview-content li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #e7a5bb;
  font-size: 0.85rem;
}

/* ===================== */
/* Cwmdu About Page      */
/* Section 2 (Main Focus) */
/* ===================== */
.location-care {
  display: grid;
  gap: 32px;
  padding: 32px 0 64px;
}

.location-care-panel {
  --panel-accent: #f6c965;
  --panel-ink: #2d4b3b;
  padding: clamp(28px, 5vw, 48px) 24px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.location-care-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.location-care-panel--intro {
  background: #2d4b3b;
  color: #f8f4ea;
  --panel-accent: #f6c965;
  --panel-ink: #f8f4ea;
}

.location-care-panel--rooms {
  background: #f6c965;
  color: #2d4b3b;
  --panel-accent: #2d4b3b;
  --panel-ink: #2d4b3b;
}

.location-care-panel--clubs {
  background: #f3b7c7;
  color: #2d4b3b;
  --panel-accent: #2d4b3b;
  --panel-ink: #2d4b3b;
}

.location-care-panel--expectations {
  background: #b7e4b2;
  color: #234233;
  --panel-accent: #234233;
  --panel-ink: #234233;
}

/* ===================== */
/* Cwmdu About Page      */
/* Section 3 (Facilities) */
/* ===================== */
.location-facilities {
  padding: 72px 24px;
  background: linear-gradient(180deg, #f9f1e5 0%, #ffffff 100%);
}

.location-facilities-header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.location-facilities-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #2d4b3b;
  margin: 0 0 12px;
}

.location-facilities-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #2d4b3b;
}

.location-facilities-header p {
  margin: 0;
  font-size: 1.08rem;
  color: #2f3b34;
}

.location-facilities-video {
  max-width: 1100px;
  margin: 0 auto 32px;
}

.location-facilities-video-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(45, 75, 59, 0.22);
}

.location-facilities-video-frame iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.location-facilities-video-title {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(45, 75, 59, 0.85);
  color: #f9f1e5;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.location-facilities-highlights {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.location-facilities-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 16px 30px rgba(45, 75, 59, 0.14);
  border: 2px solid rgba(45, 75, 59, 0.12);
}

.location-facilities-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #2d4b3b;
}

.location-facilities-card p {
  margin: 0;
  color: #2f3b34;
  line-height: 1.6;
}

.location-facilities-body {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: center;
}

.location-facilities-body p {
  margin: 0;
  color: #2f3b34;
  line-height: 1.6;
}

.location-facilities-body .location-button {
  justify-self: center;
}

.location-care-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.location-care-intro h2,
.location-clubs-header h2,
.location-expectations h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.location-care-intro h3,
.location-clubs-header h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 600;
}

.location-care-intro p,
.location-clubs-header p,
.location-expectations p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.location-care-intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.location-care-panel--intro .location-button {
  background: #f6c965;
  color: #2d4b3b;
}

.location-care-panel--intro .location-button--external {
  background: transparent;
  color: #f8f4ea;
  border: 2px solid rgba(248, 244, 234, 0.65);
}

.location-care-intro-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(20, 36, 28, 0.2);
  display: block;
}

.location-expectations-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-expectations-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(20, 36, 28, 0.2);
  display: block;
}

.location-care-rooms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.location-room-card,
.location-club-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(45, 75, 59, 0.12);
}

.location-care-panel--intro .location-room-card,
.location-care-panel--intro .location-club-card {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.location-room-card h3,
.location-club-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.location-care-panel--rooms .location-care-panel-inner {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
}

.location-care-panel--rooms .location-care-rooms {
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 20px;
}

.location-care-panel--rooms .location-room-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 16px;
}

.location-care-panel--rooms .location-care-rooms .location-room-card:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.location-care-panel--rooms .location-care-rooms .location-room-card:nth-child(2),
.location-care-panel--rooms .location-care-rooms .location-room-card:nth-child(3) {
  grid-column: 2;
}

.location-care-panel--rooms .location-care-rooms .location-room-card:nth-child(2) {
  grid-row: 1;
}

.location-care-panel--rooms .location-care-rooms .location-room-card:nth-child(3) {
  grid-row: 2;
}

.location-care-panel--rooms .location-room-card h3 {
  margin: 0;
}

.location-care-panel--rooms .location-room-card h4 {
  margin: 2px 0 0;
}

.location-care-panel--rooms .location-room-card p {
  margin: 0;
}

.location-room-card-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(45, 75, 59, 0.18);
  display: block;
}

.location-care-panel--rooms .location-care-rooms-media {
  display: none;
}

@media (max-width: 1100px) {
  .location-care-panel--rooms .location-care-rooms {
    grid-template-columns: 1fr;
  }
}

.location-clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.location-care-panel--clubs .location-care-panel-inner {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
}

.location-care-panel--clubs .location-clubs-header {
  max-width: 860px;
}

.location-care-panel--clubs .location-clubs-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  align-items: start;
}

.location-care-panel--clubs .location-club-card {
  height: 100%;
}

.location-club-time {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #2d4b3b;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.location-club-card ul,
.location-expectations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.location-club-card li,
.location-expectations li {
  position: relative;
  padding-left: 24px;
}

.location-club-card li::before,
.location-expectations li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #2d4b3b;
  font-size: 0.85rem;
}

/* Meet the Team - Hero Section */

/* Contact Page Styles (Moved from inline HTML) */
.contact-page .section1 {
  padding: 132px 20px 10px;
}

.contact-page .element-contact-information {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 28px);
}

.contact-page .element-contact-information-location,
.contact-page .element-contact-information-inputForm {
  min-width: 0;
}

.contact-page .element-enquiry-form {
  max-width: 560px;
  margin: auto;
  padding: 28px 24px;
  border: 1px solid #d8e2db;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 58, 49, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

.contact-page .element-enquiry-form h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
}

.contact-page .element-enquiry-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #2d3a34;
}

.contact-page .element-enquiry-form input,
.contact-page .element-enquiry-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bacac0;
  border-radius: 10px;
  background-color: #fcfdfc;
  font-size: 15px;
  color: #1f2a26;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-page .element-enquiry-form input:focus,
.contact-page .element-enquiry-form select:focus {
  outline: none;
  border-color: #2f6b57;
  box-shadow: 0 0 0 3px rgba(47, 107, 87, 0.16);
}

.contact-page .element-enquiry-form .form-row {
  margin-bottom: 16px;
}

.contact-page .element-enquiry-form .field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: #b42318;
}

.contact-page .element-enquiry-form [aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.contact-page .element-enquiry-form .form-actions {
  margin-top: 20px;
}

.contact-page .element-enquiry-form .form-recaptcha {
  margin-top: 8px;
}

.contact-page .element-enquiry-form .form-recaptcha-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3a34;
}

.contact-page .element-enquiry-form .form-recaptcha-widget {
  display: inline-block;
  min-height: 78px;
}

.contact-page .element-enquiry-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.contact-page .element-enquiry-form .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  accent-color: #2f6b57;
}

.contact-page .element-enquiry-form .form-consent label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #2d3a34;
}

.contact-page .element-enquiry-form .form-consent a {
  color: #2f6b57;
  text-decoration: underline;
}

.contact-page .element-enquiry-form button {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  background: linear-gradient(180deg, #2f6b57 0%, #275848 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.contact-page .element-enquiry-form button:hover {
  box-shadow: 0 8px 16px rgba(39, 88, 72, 0.24);
  transform: translateY(-1px);
}

.contact-page .element-enquiry-form .form-note {
  margin-top: 12px;
  font-size: 13px;
  color: #5b6962;
}

.contact-page .element-enquiry-form .form-reassurance {
  margin-top: 6px;
  font-size: 13px;
  color: #36554a;
  line-height: 1.45;
}

.contact-page .element-enquiry-form .form-status {
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
}

.contact-page .element-enquiry-form .form-status.is-success {
  color: #146c2e;
}

.contact-page .element-enquiry-form .form-status.is-error {
  color: #b42318;
}

.contact-page .element-enquiry-form button:disabled,
.contact-page .element-enquiry-form button.is-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-page .element-enquiry-form .form-success {
  margin-top: 14px;
  padding: 14px 14px 12px;
  border: 1px solid #b7d8be;
  background: #f3fbf4;
  border-radius: 12px;
}

.contact-page .element-enquiry-form .form-success h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  color: #1f5630;
}

.contact-page .element-enquiry-form .form-success p {
  margin: 0;
  color: #284834;
}

@media (max-width: 640px) {
  .contact-page .section1 {
    padding: 108px 14px 8px;
  }

  .contact-page .element-enquiry-form {
    padding: 22px 16px;
    border-radius: 14px;
  }
}

.contact-page .section2 {
  padding: 56px 20px 70px;
}

.contact-page .element-faq {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-page .element-faq > p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6b57;
}

.contact-page .element-faq h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 42px);
}

.contact-page .element-faq-intro {
  margin: 0 0 18px;
  max-width: 780px;
}

.contact-page .faq-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.contact-page .faq-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #c7d8ce;
  background: #f5faf6;
  color: #2f6b57;
  font-size: 13px;
  font-weight: 600;
}

.contact-page .element-faq-item {
  margin-bottom: 12px;
  padding: 18px 18px 16px;
  border: 1px solid #d8e5dd;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(29, 55, 45, 0.05);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-page .element-faq-item summary {
  margin: 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.28;
  font-weight: 700;
  color: #203a30;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.contact-page .element-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-page .element-faq-item summary::after {
  content: "+";
  font-size: 28px;
  line-height: 1;
  color: #2f6b57;
  flex-shrink: 0;
  margin-top: -2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.contact-page .element-faq-item[open] summary::after {
  content: "−";
}

.contact-page .element-faq-item:hover {
  border-color: #c1d8ca;
  box-shadow: 0 10px 26px rgba(29, 55, 45, 0.08);
}

.contact-page .element-faq-item[open] {
  border-color: #b9d5c5;
  background: #fcfffd;
}

.contact-page .element-faq-item[open] .faq-answer {
  animation: faq-reveal 0.22s ease;
}

.contact-page .faq-answer {
  margin-top: 10px;
}

.contact-page .faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.contact-page .faq-answer p + p {
  margin-top: 10px;
}

.contact-page .faq-answer a {
  color: #2f6b57;
  text-decoration: underline;
}

.contact-page .faq-cta {
  margin-top: 24px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #cfe0d6;
  background: linear-gradient(180deg, #f8fcf9 0%, #edf5ef 100%);
}

.contact-page .faq-cta p {
  margin: 0 0 10px;
}

.contact-page .faq-cta-link {
  color: #2f6b57;
  font-weight: 700;
  text-decoration: underline;
}

.contact-page a:focus-visible,
.contact-page button:focus-visible,
.contact-page summary:focus-visible,
.contact-page input:focus-visible,
.contact-page select:focus-visible {
  outline: 3px solid #2f6b57;
  outline-offset: 2px;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .contact-page .section2 {
    padding: 44px 16px 56px;
  }

  .contact-page .element-faq-item {
    padding: 16px 14px;
  }

  .contact-page .faq-chip {
    font-size: 12px;
  }
}

/* ------------------------------------- */
/* Events Page */
.events-page {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 42%, #f6f8f2 100%);
}

.events-hero-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.events-form-card,
.events-content-card {
  padding: clamp(20px, 2vw, 28px);
  border-radius: 22px;
  border: 1px solid #d6deef;
  box-shadow: 0 14px 32px rgba(45, 63, 94, 0.09);
}

.events-form-card {
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
}

.events-content-card {
  background: linear-gradient(165deg, #fffef9 0%, #f7fbf5 100%);
  border-color: #d8e4d2;
}

.events-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3d5e96;
}

.events-form-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.events-content-card h2 {
  margin: 0;
  font-family: "Aladin", cursive;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #b89a55;
}

.events-content-card p {
  margin: 14px 0 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: #2d3d33;
}

.events-content-lead {
  margin-top: 10px;
  font-weight: 700;
  color: #4b5f8f;
}

.events-content-card h3 {
  margin: 20px 0 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.25;
  color: #2f6b57;
}

.events-date-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 20px;
  margin-top: 12px;
}

.events-date-table-card {
  padding: 12px 12px 10px;
  border: 1px solid #d8e4d2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.events-date-table-card h4 {
  margin: 0;
  font-family: "Aladin", cursive;
  font-size: clamp(29px, 2.3vw, 37px);
  line-height: 1.25;
  color: #3d5e96;
}

.events-site-time {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #2f6b57;
}

.events-date-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.events-date-table th,
.events-date-table td {
  text-align: left;
  vertical-align: top;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(61, 94, 150, 0.18);
}

.events-date-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6078a6;
  font-weight: 700;
}

.events-date-table tbody tr:last-child td {
  border-bottom: 0;
}

.events-date-table .event-highlight {
  font-weight: 700;
}

.events-content-signoff {
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: clamp(14px, 0.95vw, 15px);
  color: #2f6b57;
}

.events-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.events-links a {
  color: #2f6b57;
  font-weight: 700;
  text-decoration: underline;
}

.events-page a:focus-visible,
.events-page button:focus-visible,
.events-page input:focus-visible,
.events-page select:focus-visible {
  outline: 3px solid #3d5e96;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .events-hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .events-form-card,
  .events-content-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .events-form-card h1,
  .events-content-card h2 {
    line-height: 1.14;
  }

  .events-links a {
    width: 100%;
  }

  .events-date-tables {
    gap: 10px;
  }
}

/* ------------------------------------- */
/* Maintenance Page */
.maintenance-page {
  background: linear-gradient(180deg, #f4f9f8 0%, #ffffff 42%, #f7f3ea 100%);
}

.maintenance-page #main {
  overflow: hidden;
}

.maintenance-hero {
  position: relative;
}

.maintenance-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 300px;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(64, 147, 122, 0.16) 0%,
      rgba(64, 147, 122, 0) 55%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(247, 167, 82, 0.2) 0%,
      rgba(247, 167, 82, 0) 52%
    );
  z-index: 0;
}

.maintenance-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.maintenance-hero-copy {
  padding: clamp(20px, 2vw, 28px);
  border-radius: 24px;
  border: 1px solid #d2e5dd;
  background: linear-gradient(135deg, #ffffff 0%, #f2f9f6 100%);
  box-shadow: 0 14px 32px rgba(26, 68, 53, 0.1);
}

.maintenance-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2f6b57;
}

.maintenance-hero-copy h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.maintenance-lead {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.68;
  color: #204235;
}

.maintenance-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
}

.maintenance-link {
  color: #2f6b57;
  font-weight: 700;
  text-decoration: none;
}

.maintenance-link i {
  margin-left: 6px;
}

.maintenance-link:hover {
  text-decoration: underline;
}

.maintenance-chips {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.maintenance-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c8dbd2;
  background: #fbfffc;
  color: #1f4b3c;
  font-weight: 600;
  font-size: 14px;
}

.maintenance-hero-card {
  margin: 0;
  padding: clamp(20px, 2vw, 26px);
  border-radius: 24px;
  border: 1px solid #ecd7b7;
  background: linear-gradient(160deg, #fffaf1 0%, #fffdf8 100%);
  box-shadow: 0 14px 28px rgba(123, 83, 36, 0.1);
  text-align: center;
  animation: maintenance-float 5s ease-in-out infinite;
}

.maintenance-brand {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  text-align: center;
  width: 100%;
}

.maintenance-brand img {
  width: min(320px, 100%);
  height: auto;
}

.maintenance-parent-pack {
  width: 52%;
  min-width: 0;
  max-width: 240px;
}

.maintenance-parent-pack + .maintenance-parent-pack {
  margin-left: -6%;
}

.maintenance-download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
}

.maintenance-download-actions .element-button {
  font-size: 15px;
  padding: 9px 14px;
}

@media (max-width: 680px) {
  .maintenance-parent-pack {
    width: 58%;
  }

  .maintenance-parent-pack + .maintenance-parent-pack {
    margin-left: -16%;
  }

  .maintenance-download-actions {
    display: grid;
  }

  .maintenance-download-actions .element-button {
    width: 100%;
  }
}

.maintenance-hero-note {
  margin: 16px 0 0;
  line-height: 1.6;
  color: #644a25;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.maintenance-card {
  padding: clamp(18px, 2vw, 24px);
  border-radius: 18px;
  border: 1px solid #d8e6df;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(30, 65, 52, 0.07);
}

.maintenance-card h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.22;
}

.maintenance-card h2 i {
  margin-right: 8px;
  color: #2f6b57;
}

.maintenance-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.maintenance-card li {
  margin-top: 8px;
}

.maintenance-card p {
  margin: 14px 0 0;
}

.maintenance-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
}

.maintenance-card-actions a {
  color: #2f6b57;
  font-weight: 700;
  text-decoration: underline;
}

.maintenance-card-feature {
  background: linear-gradient(170deg, #fff8ef 0%, #ffffff 64%);
  border-color: #e8d6bf;
}

.maintenance-card-actions-stacked {
  display: grid;
  gap: 6px;
}

.maintenance-contact-list strong {
  color: #213a30;
}

.maintenance-contact-list a {
  color: #2f6b57;
  overflow-wrap: anywhere;
}

.maintenance-page a:focus-visible,
.maintenance-page button:focus-visible {
  outline: 3px solid #2f6b57;
  outline-offset: 2px;
}

@keyframes maintenance-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .maintenance-hero-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-chips li {
    width: 100%;
    border-radius: 12px;
  }

  .maintenance-hero-card {
    animation: none;
  }
}

@media (max-width: 560px) {
  .maintenance-hero {
    padding-top: 8px;
  }

  .maintenance-hero-copy {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .maintenance-hero-copy h1 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.12;
  }

  .maintenance-lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .maintenance-hero-actions {
    display: grid;
    gap: 10px;
  }

  .maintenance-hero-actions .element-button,
  .maintenance-hero-actions .maintenance-link {
    width: 100%;
  }

  .maintenance-hero-actions .element-button {
    justify-content: center;
    text-align: center;
  }

  .maintenance-link {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #c8dbd2;
    background: #ffffff;
  }

  .maintenance-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .maintenance-card h2 {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .maintenance-card-actions {
    gap: 10px;
  }

  .maintenance-card-actions a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .maintenance-eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .maintenance-chips li {
    font-size: 13px;
    padding: 8px 10px;
  }

  .maintenance-hero-card {
    padding: 14px 12px;
    border-radius: 14px;
  }
}

/* ------------------------------------- */
/* School Readiness Hero */
.school-readiness-hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 78%,
      rgba(133, 189, 182, 0.22) 0%,
      transparent 36%
    ),
    radial-gradient(
      circle at 95% 15%,
      rgba(242, 201, 134, 0.2) 0%,
      transparent 30%
    );
}

.school-readiness-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 56px;
  width: min(58vw, 760px);
  aspect-ratio: 1 / 1;
  background-image: url(../Images/svg/cwmdu-watercolor-blob.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
}

.school-readiness-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding-inline: clamp(22px, 4vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(18px, 2.8vw, 48px);
}

.school-readiness-hero-copy {
  max-width: 720px;
}

.school-readiness-hero-kicker {
  margin: 0;
  font-family: "Aladin", cursive;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  color: #9ec8bf;
}

.school-readiness-hero-copy h1 {
  margin: 12px 0 10px;
  max-width: 20ch;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.02;
  color: #b9964e;
}

.school-readiness-hero-copy p {
  margin: 16px 0 0;
  max-width: 58ch;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
  color: #6f6f72;
}

.school-readiness-hero-actions {
  margin-top: 28px;
}

.school-readiness-hero-actions .element-button {
  border-radius: 999px;
  padding: 12px 22px;
}

.school-readiness-prep {
  padding: 58px 0 78px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(
      90deg,
      rgba(51, 58, 51, 0.02) 0 1px,
      rgba(51, 58, 51, 0) 1px 20px
    );
}

.school-readiness-prep-wrap {
  width: 100%;
  max-width: none;
  padding-inline: clamp(22px, 4vw, 78px);
  text-align: center;
}

.school-readiness-prep-kicker {
  margin: 0 0 8px;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #333a33;
  opacity: 0.85;
}

.school-readiness-prep h2 {
  margin: 0 0 34px;
  font-size: clamp(36px, 4.4vw, 74px);
  line-height: 1.06;
  color: #333a33;
}

.school-readiness-prep-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 20px 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(245, 225, 167, 0.88) 0%,
    rgba(234, 201, 121, 0.85) 100%
  );
  box-shadow:
    0 10px 24px rgba(120, 102, 57, 0.16),
    inset 0 -2px 0 rgba(255, 255, 255, 0.45);
}

.school-readiness-prep-title::before,
.school-readiness-prep-title::after {
  content: "★";
  font-size: 0.42em;
  line-height: 1;
  color: #b9964e;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.school-readiness-prep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  align-items: start;
}

.school-readiness-prep-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(80, 83, 93, 0.08);
  padding: clamp(16px, 1.8vw, 24px);
}

.school-readiness-prep-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 12px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.prep-card-routines .school-readiness-prep-icon {
  background: rgba(231, 219, 210, 0.95);
  color: #333a33;
}

.prep-card-independence .school-readiness-prep-icon {
  background: rgba(236, 223, 214, 0.95);
  color: #333a33;
}

.prep-card-reading .school-readiness-prep-icon {
  background: rgba(241, 236, 242, 0.95);
  color: #333a33;
}

.prep-card-social .school-readiness-prep-icon {
  background: rgba(253, 225, 230, 0.95);
  color: #333a33;
}

.school-readiness-prep-card h3 {
  margin: 0 0 10px;
  font-family: "Aladin", cursive;
  font-size: clamp(42px, 3vw, 64px);
  line-height: 1.02;
}

.prep-card-routines h3 {
  color: #9fc4b5;
}

.prep-card-independence h3 {
  color: #ddc9bd;
}

.prep-card-reading h3 {
  color: #ccb7d8;
}

.prep-card-social h3 {
  color: #efc3c8;
}

.school-readiness-prep-card p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.38;
  color: #7c7d82;
}

.school-readiness-benefits {
  padding: 56px 0 88px;
  background:
    linear-gradient(rgba(225, 241, 234, 0.94), rgba(216, 236, 228, 0.94)),
    repeating-linear-gradient(
      90deg,
      rgba(45, 75, 59, 0.02) 0 1px,
      rgba(45, 75, 59, 0) 1px 20px
    );
}

.school-readiness-benefits-wrap {
  width: 100%;
  max-width: none;
  padding-inline: clamp(22px, 4vw, 78px);
}

.school-readiness-benefits-heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.school-readiness-benefits-kicker {
  margin: 0 0 10px;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8fbfc1;
}

.school-readiness-benefits h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.06;
}

.school-readiness-benefits-title {
  color: #b9964e;
}

.school-readiness-benefits-badge {
  position: absolute;
  right: clamp(4px, 5vw, 120px);
  top: -10px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  color: #333a33;
  font-family: "Aladin", cursive;
  font-size: clamp(26px, 2vw, 38px);
  transform: rotate(-8deg);
  box-shadow: 0 10px 20px rgba(66, 106, 98, 0.2);
  isolation: isolate;
}

.school-readiness-benefits-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(158, 200, 191, 0.9);
  -webkit-mask-image: url(../Images/textured-title-fill.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../Images/textured-title-fill.png);
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  z-index: -1;
}

.school-readiness-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
  align-items: start;
}

.school-readiness-benefit-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(80, 83, 93, 0.07);
  padding: clamp(14px, 1.4vw, 20px);
}

.school-readiness-benefit-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #333a33;
  margin-bottom: 10px;
  box-shadow:
    0 8px 14px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.benefit-learning .school-readiness-benefit-icon {
  background: rgba(231, 219, 210, 0.95);
}

.benefit-social .school-readiness-benefit-icon {
  background: rgba(236, 223, 214, 0.95);
}

.benefit-emotional .school-readiness-benefit-icon {
  background: rgba(241, 236, 242, 0.95);
}

.benefit-academic .school-readiness-benefit-icon {
  background: rgba(253, 225, 230, 0.95);
}

.benefit-physical .school-readiness-benefit-icon {
  background: rgba(235, 240, 244, 0.95);
}

.school-readiness-benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Aladin", cursive;
  font-size: clamp(40px, 2.8vw, 58px);
  line-height: 1.04;
}

.benefit-learning h3 {
  color: #9fc4b5;
}

.benefit-social h3 {
  color: #ddc9bd;
}

.benefit-emotional h3 {
  color: #ccb7d8;
}

.benefit-academic h3 {
  color: #efc3c8;
}

.benefit-physical h3 {
  color: #efc3c8;
}

.school-readiness-benefit-card p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.38;
  color: #7c7d82;
}

.school-readiness-benefits-summary {
  margin-top: 30px;
  padding: clamp(20px, 2.2vw, 34px) clamp(18px, 3vw, 42px);
  border-radius: 16px;
  background: #9fc4b5;
  text-align: center;
}

.school-readiness-benefits-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 1.8vw, 35px);
  line-height: 1.4;
}

.school-readiness-benefits-summary p + p {
  margin-top: 16px;
}

.school-readiness-benefits-gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}

.school-readiness-glass-card {
  position: relative;
  margin: 0;
  padding: clamp(8px, 0.9vw, 12px);
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 16px 26px rgba(49, 77, 70, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  overflow: hidden;
}

.school-readiness-glass-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.school-readiness-glass-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 8px 20px rgba(24, 42, 37, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.school-readiness-hero-media {
  margin: 0;
  position: relative;
}

.school-readiness-hero-media::before {
  content: "";
  position: absolute;
  inset: -12% -9%;
  background-image: url(../Images/svg/cwmdu-watercolor-blob-02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.52;
  z-index: -1;
}

.school-readiness-image-stage {
  width: clamp(320px, 44vw, 700px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 46% 54% 49% 51% / 50% 46% 54% 50%;
  background: linear-gradient(
    145deg,
    rgba(204, 234, 225, 0.8),
    rgba(240, 251, 247, 0.9)
  );
  padding: clamp(10px, 1.7vw, 20px);
  box-shadow:
    0 26px 48px rgba(53, 84, 76, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.school-readiness-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.84);
  filter: saturate(0.95) contrast(1.05);
}

@media (max-width: 1080px) {
  .school-readiness-hero {
    padding: 144px 0 80px;
  }

  .school-readiness-hero-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .school-readiness-hero-copy h1,
  .school-readiness-hero-copy p {
    max-width: none;
  }

  .school-readiness-hero-media {
    order: -1;
  }

  .school-readiness-image-stage {
    width: min(92vw, 580px);
  }

  .school-readiness-prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .school-readiness-benefits-badge {
    position: static;
    margin-top: 12px;
    transform: rotate(-4deg);
  }

  .school-readiness-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .school-readiness-benefits-summary {
    margin-top: 24px;
  }

  .school-readiness-benefits-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Location hero circle/blob image style (text styles untouched) */
.location-hero--circle .location-hero-media {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  padding: 0;
  width: clamp(280px, 40vw, 620px);
  margin-inline: auto;
}

.location-hero--circle .location-hero-media::before {
  inset: -10% -7%;
  background-image: url(../Images/svg/cwmdu-watercolor-blob-02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.56;
  z-index: -1;
  mix-blend-mode: normal;
}

.location-hero--circle .location-hero-media::after {
  content: "";
  position: absolute;
  inset: -14% -10%;
  background-image: url(../Images/svg/cwmdu-watercolor-blob.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.26;
  z-index: -2;
  pointer-events: none;
}

.location-hero--circle .location-hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    0 26px 48px rgba(53, 84, 76, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

@media (max-width: 1080px) {
  .location-hero--circle .location-hero-media {
    width: min(86vw, 520px);
  }
}

@media (max-width: 780px) {
  .location-hero--circle .location-hero-media {
    width: min(82vw, 440px);
  }
}

@media (max-width: 640px) {
  .school-readiness-hero {
    padding: 132px 0 64px;
  }

  .school-readiness-hero-copy h1 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .school-readiness-hero-copy p {
    font-size: clamp(18px, 4.9vw, 24px);
  }

  .school-readiness-prep {
    padding: 44px 0 58px;
  }

  .school-readiness-prep h2 {
    margin-bottom: 24px;
    font-size: clamp(34px, 10vw, 54px);
  }

  .school-readiness-prep-title {
    border-radius: 22px;
    padding: 8px 14px 10px;
    gap: 10px;
  }

  .school-readiness-prep-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .school-readiness-prep-card h3 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .school-readiness-prep-card p {
    font-size: clamp(18px, 5vw, 24px);
  }

  .school-readiness-benefits {
    padding: 42px 0 56px;
  }

  .school-readiness-benefits h2 {
    font-size: clamp(34px, 9.2vw, 52px);
  }

  .school-readiness-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .school-readiness-benefit-card h3 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .school-readiness-benefit-card p {
    font-size: clamp(18px, 4.9vw, 23px);
  }

  .school-readiness-benefits-summary {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .school-readiness-benefits-summary p {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .school-readiness-benefits-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .school-readiness-glass-card {
    border-radius: 18px;
  }
}

/* Careers page */
.careers-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(218, 236, 231, 0.9),
      transparent 34%
    ),
    radial-gradient(
      circle at right center,
      rgba(214, 229, 232, 0.9),
      transparent 28%
    ),
    linear-gradient(180deg, #fffdf9 0%, #f7f5f0 100%);
}

.careers-page,
.careers-page input,
.careers-page select,
.careers-page textarea,
.careers-page button {
  font-family: "Quicksand", sans-serif;
}

.careers-shell {
  position: relative;
  overflow: hidden;
}

.careers-shell::before,
.careers-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.careers-shell::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 50px;
  background: rgba(198, 222, 219, 0.65);
  filter: blur(6px);
}

.careers-shell::after {
  width: 230px;
  height: 230px;
  left: -70px;
  top: 220px;
  border: 2px dashed rgba(220, 190, 175, 0.55);
  background: transparent;
}

.careers-main {
  position: relative;
  z-index: 1;
}

.careers-hero {
  padding: 52px 0 34px;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: start;
}

.careers-hero-copy {
  padding: 44px 0 16px;
  max-width: 680px;
}

.careers-eyebrow {
  margin: 0 0 14px;
  color: #b8d9dc;
  font-family: "Aladin", cursive;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.careers-hero h1,
.careers-join-copy h2,
.careers-section-title,
.careers-apply-panel h2 {
  color: #c6a158;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 700;
}

.careers-hero p {
  font-size: 1.45rem;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0 0 18px;
  max-width: 40rem;
}

.careers-hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.careers-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(198, 222, 219, 0.85);
  padding: 12px 18px;
  border-radius: 999px;
  color: #486366;
  font-weight: 700;
}

.careers-hero-points i {
  color: #c7a46e;
}

.careers-hero-side {
  position: relative;
  padding-top: 10px;
}

.careers-hero-side::before {
  content: "";
  position: absolute;
  inset: 30px 20px 120px auto;
  width: 72%;
  background: rgba(197, 223, 220, 0.55);
  border-radius: 45% 45% 0 0;
  z-index: 0;
}

.careers-hero-media {
  position: relative;
  z-index: 1;
  margin: 0 0 -44px;
}

.careers-hero-media img {
  display: block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  margin-left: auto;
  border-radius: 48% 48% 0 0;
  box-shadow: 0 28px 60px rgba(91, 110, 104, 0.18);
}

.careers-apply-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  background: rgba(201, 224, 224, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 36px;
  padding: 30px;
  box-shadow: 0 26px 60px rgba(91, 110, 104, 0.18);
}

.careers-apply-panel h2 {
  font-family: "Aladin", cursive;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(82, 112, 112, 0.18);
}

.careers-form {
  display: grid;
  gap: 14px;
}

.careers-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.careers-form label,
.careers-form legend {
  display: block;
  margin-bottom: 6px;
  color: #294144;
  font-weight: 700;
  font-size: 1rem;
}

.careers-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
  width: 100%;
  border: 1px solid rgba(120, 148, 150, 0.28);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #334346;
}

.careers-form textarea {
  min-height: 132px;
  resize: vertical;
}

.careers-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: #c6a158;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.careers-form button:hover,
.careers-form button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(132, 102, 47, 0.22);
}

.careers-form-note {
  margin: 0;
  font-size: 0.95rem;
  color: #456266;
}

.careers-section {
  padding: 38px 0;
}

.careers-join {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: start;
}

.careers-join-copy h2 {
  color: #a6cbbd;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.1;
}

.careers-join-copy p,
.careers-callout p,
.careers-process-copy p {
  color: #696969;
  font-size: 1.35rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.careers-callout {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(196, 220, 221, 0.8);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(160, 160, 160, 0.08);
}

.careers-callout h3,
.careers-role-card h3,
.careers-benefit-card h3,
.careers-process-step h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #446266;
}

.careers-callout ul,
.careers-role-card ul {
  padding-left: 20px;
  margin: 0;
  color: #5c6466;
  line-height: 1.7;
  font-size: 1.08rem;
}

.careers-benefits-grid,
.careers-role-grid,
.careers-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.careers-benefit-card,
.careers-role-card,
.careers-contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 222, 219, 0.78);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(150, 150, 150, 0.08);
}

.careers-benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: rgba(198, 222, 219, 0.7);
  color: #5b7779;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.careers-benefit-card p,
.careers-role-card p,
.careers-contact-card p {
  margin: 0;
  color: #646464;
  line-height: 1.65;
  font-size: 1.05rem;
}

.careers-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.careers-role-meta span {
  background: rgba(198, 222, 219, 0.65);
  color: #426265;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.careers-role-link,
.careers-contact-card a,
.careers-process-link {
  color: #8f6d34;
  font-weight: 700;
  text-decoration: none;
}

.careers-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  align-items: start;
}

.careers-process-steps {
  display: grid;
  gap: 16px;
}

.careers-process-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 222, 219, 0.78);
  border-radius: 24px;
  padding: 22px;
}

.careers-process-step span {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #c6a158;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.careers-process-step p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1.02rem;
}

.careers-contact-card h3 {
  margin: 0 0 12px;
  color: #466165;
  font-size: 1.25rem;
}

.careers-contact-card p + p {
  margin-top: 12px;
}

.careers-contact-card i {
  margin-right: 8px;
  color: #97b9b1;
}

.careers-values-section {
  padding-top: 20px;
}

.careers-values-section .layout-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 32px;
  padding-right: 32px;
}

.careers-development {
  position: relative;
}

.careers-development::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -12px;
  width: 92px;
  height: 92px;
  border: 5px solid rgba(255, 191, 199, 0.55);
  border-radius: 52% 48% 58% 42% / 48% 52% 42% 58%;
  z-index: 0;
  pointer-events: none;
}

.careers-development-shell {
  position: relative;
  z-index: 1;
  padding: 8px 0 10px;
}

.careers-development .careers-section-title {
  margin-bottom: 22px;
}

.careers-development-intro {
  max-width: 78rem;
  color: #7b7b7b;
  font-size: 1.28rem;
  line-height: 1.58;
  margin: 0 0 14px;
}

.careers-development-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.careers-development-card {
  min-height: 190px;
  padding: 22px 18px;
  background: rgba(246, 236, 232, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(196, 183, 173, 0.12);
}

.careers-development-card h3 {
  margin: 0 0 8px;
  color: #a7c6b8;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 0.98;
  font-weight: 700;
}

.careers-development-card p {
  margin: 0;
  color: #a7c6b8;
  font-size: 1.05rem;
  line-height: 1.18;
  font-weight: 600;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: start;
}

.careers-values-media {
  margin: 0;
}

.careers-values-media-shell {
  position: relative;
  padding: 24px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(205, 214, 225, 0.55),
      transparent 38%
    ),
    radial-gradient(
      circle at 70% 72%,
      rgba(193, 198, 204, 0.42),
      transparent 32%
    );
}

.careers-values-media-shell::before,
.careers-values-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.careers-values-media-shell::before {
  background-image: url(../Images/svg/cwmdu-watercolor-blob-02.svg);
  opacity: 0.5;
  transform: scale(1.18);
}

.careers-values-media-shell::after {
  background-image: url(../Images/svg/cwmdu-watercolor-blob.svg);
  opacity: 0.28;
  transform: scale(1.26);
}

.careers-values-media-shell img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center;
  clip-path: ellipse(44% 46% at 48% 50%);
  box-shadow: 0 24px 50px rgba(109, 109, 109, 0.12);
}

.careers-values-copy .careers-section-title {
  margin-bottom: 18px;
}

.careers-values-intro {
  max-width: 46rem;
  color: #787878;
  font-size: 1.3rem;
  line-height: 1.55;
  margin: 0 0 28px;
}

.careers-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.careers-value-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.careers-value-item-wide {
  grid-column: 1 / -1;
}

.careers-value-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(235, 220, 213, 0.7);
  color: #ffffff;
  font-size: 2rem;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.careers-value-item h3 {
  margin: 0 0 6px;
  color: #ead9d0;
  font-family: "Aladin", cursive;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  font-weight: 400;
}

.careers-value-item p {
  margin: 0;
  color: #777;
  font-size: 1.12rem;
  line-height: 1.55;
}

.careers-value-item > div:last-child {
  min-width: 0;
}

.careers-work-benefits-section {
  padding-top: 24px;
}

.careers-work-benefits-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.careers-work-benefits-intro {
  max-width: 70rem;
  margin: 0;
  color: #727272;
  font-size: 1.22rem;
  line-height: 1.58;
}

.careers-work-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.careers-work-benefit-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 222, 219, 0.78);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(150, 150, 150, 0.08);
}

.careers-work-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(198, 222, 219, 0.72);
  color: #5b7779;
  font-size: 1.45rem;
}

.careers-work-benefit-card h3 {
  margin: 0 0 10px;
  color: #446266;
  font-size: 1.35rem;
}

.careers-work-benefit-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1.04rem;
}

.careers-bottom-spacer {
  height: 30px;
}

.team-site-matrix {
  min-width: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.team-site-matrix-container {
  display: grid;
  gap: 18px;
}

.team-site-matrix-entry {
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(123, 145, 148, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97),
    rgba(249, 250, 248, 0.98)
  );
  box-shadow:
    0 18px 34px rgba(120, 130, 120, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  padding: 0 0 24px;
}

.team-site-matrix-entry img {
  display: block;
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: var(--team-image-position, center top);
  background: #f5efe2;
}

.team-site-matrix-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at top left, rgba(246, 213, 123, 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(147, 201, 210, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(245, 239, 226, 0.98), rgba(236, 231, 220, 0.96));
  color: rgba(76, 96, 104, 0.82);
}

.team-site-matrix-placeholder i {
  font-size: 6.25rem;
}

.team-site-matrix-entry p {
  margin: 0 24px 10px;
}

.team-site-matrix-entry p:last-child {
  margin-bottom: 0;
}

.team-site-matrix-entry p:first-of-type {
  color: #6a8176;
  font-family: "Fraunces", serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-site-matrix-entry p:nth-of-type(2) {
  display: inline-flex;
  margin-top: 2px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 228, 241, 0.92);
  color: #40555f;
  font-family: "Lora", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.team-site-matrix-entry p:nth-of-type(3) {
  color: #4b5f57;
  font-size: 1.08rem;
  line-height: 1.75;
}

.team-site-carousel {
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(28, 36, 42, 0.96), rgba(17, 23, 28, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 34px
    );
  border: 1px solid rgba(111, 124, 140, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(12, 17, 23, 0.18);
}

.team-site-carousel-header {
  margin-bottom: 18px;
  color: #f4efe5;
}

.team-site-carousel-kicker {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249, 207, 124, 0.98);
  color: #2e4851;
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-site-carousel-header h3 {
  margin: 0 0 8px;
  color: #fff7e7;
}

.team-site-carousel-header > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: rgba(244, 239, 229, 0.78);
}

.team-site-carousel-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.team-site-carousel-arrow {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(80, 99, 126, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(8, 13, 20, 0.24);
}

.team-site-carousel-arrow:hover,
.team-site-carousel-arrow:focus-visible {
  background: rgba(113, 133, 162, 0.98);
}

.team-site-carousel-viewport {
  overflow: hidden;
}

.team-site-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 2);
  gap: 22px;
  transition: transform 380ms ease;
  will-change: transform;
}

.team-site-carousel-track .team-site-matrix-entry {
  position: relative;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.98));
  box-shadow:
    0 22px 34px rgba(7, 12, 17, 0.24),
    0 0 0 6px rgba(255, 255, 255, 0.03);
}

.team-site-carousel-track .team-site-matrix-entry::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6d57b, #f2a6a0, #93c9d2);
  opacity: 0.95;
}

.team-site-carousel-track .team-site-matrix-entry img {
  margin-top: 18px;
  height: 290px;
  border-radius: 22px 22px 0 0;
}

.team-site-carousel-track .team-site-matrix-placeholder {
  margin-top: 18px;
  height: 290px;
  border-radius: 22px 22px 0 0;
}

.team-site-carousel-track .team-site-matrix-entry p:first-of-type {
  color: #5f7383;
}

.team-site-carousel-pagination {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
}

.team-site-carousel-pagination::-webkit-scrollbar {
  display: none;
}

.team-site-carousel-dot {
  min-width: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f0de;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.team-site-carousel-dot.is-active {
  background: #f6dc8e;
  border-color: #f6dc8e;
  color: #334650;
  box-shadow: 0 0 18px rgba(246, 220, 142, 0.45);
}

.team-site-matrix-entry-more {
  display: inline-flex;
  align-self: flex-start;
  margin: 8px 24px 0;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6dc8e, #f0b6ae);
  color: #344650;
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(188, 122, 112, 0.18);
}

.team-site-matrix-entry-more:hover,
.team-site-matrix-entry-more:focus-visible {
  transform: translateY(-1px);
}

.team-matrix-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 25, 30, 0.76);
  backdrop-filter: blur(10px);
}

.team-matrix-modal.is-open {
  display: flex;
}

.team-matrix-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  width: min(1160px, 100%);
  max-height: min(88vh, 980px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(20, 29, 35, 0.98), rgba(29, 40, 48, 0.98));
  box-shadow: 0 24px 70px rgba(10, 16, 18, 0.35);
}

.team-matrix-modal-media {
  min-height: 100%;
  background: #efe8da;
}

.team-matrix-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--team-image-position, center top);
}

.team-matrix-modal-body {
  overflow-y: auto;
  padding: 40px 44px 38px;
  color: #f4efe5;
}

.team-matrix-modal-kicker {
  margin: 0 0 12px;
  color: #f6dc8e;
  font-family: "Fraunces", serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-matrix-modal-role {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 174, 166, 0.16);
  color: #ffe9d8;
  font-family: "Lora", serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.team-matrix-modal-name {
  margin: 8px 0 18px;
  color: #fff7e7;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.team-matrix-modal-summary {
  color: rgba(244, 239, 229, 0.9);
  font-size: 1.14rem;
  line-height: 1.8;
}

.team-matrix-modal-summary p {
  margin: 0 0 18px;
}

.team-matrix-modal-close,
.team-matrix-modal-nav {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 23, 25, 0.18);
}

.team-matrix-modal-close {
  top: 18px;
  right: 18px;
  font-size: 2rem;
  line-height: 1;
}

.team-matrix-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  line-height: 1;
}

.team-matrix-modal-prev {
  left: 18px;
}

.team-matrix-modal-next {
  right: 18px;
}

.team-matrix-modal-close:hover,
.team-matrix-modal-close:focus-visible,
.team-matrix-modal-nav:hover,
.team-matrix-modal-nav:focus-visible {
  background: rgba(246, 220, 142, 0.28);
}

.team-site-carousel-mock {
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(28, 36, 42, 0.96), rgba(17, 23, 28, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 34px
    );
  border: 1px solid rgba(111, 124, 140, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(12, 17, 23, 0.18);
}

.team-site-carousel-mock-header {
  margin-bottom: 18px;
  color: #f4efe5;
}

.team-site-carousel-mock-kicker {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249, 207, 124, 0.98);
  color: #2e4851;
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-site-carousel-mock-header h3 {
  margin: 0 0 8px;
  color: #fff7e7;
}

.team-site-carousel-mock-header > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: rgba(244, 239, 229, 0.78);
}

.team-site-carousel-mock-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.team-site-carousel-mock-arrow {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(80, 99, 126, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 12px 20px rgba(8, 13, 20, 0.24);
}

.team-site-carousel-mock-viewport {
  overflow: hidden;
}

.team-site-matrix-container--mock-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 22px;
  overflow-x: auto;
  padding: 10px 4px 16px;
  scroll-snap-type: x mandatory;
}

.team-site-matrix-container--mock-carousel .team-site-matrix-entry {
  position: relative;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.98));
  box-shadow:
    0 22px 34px rgba(7, 12, 17, 0.24),
    0 0 0 6px rgba(255, 255, 255, 0.03);
  scroll-snap-align: start;
}

.team-site-matrix-container--mock-carousel .team-site-matrix-entry::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6d57b, #f2a6a0, #93c9d2);
  opacity: 0.95;
}

.team-site-matrix-container--mock-carousel .team-site-matrix-entry img {
  margin-top: 18px;
  height: 290px;
  border-radius: 22px 22px 0 0;
}

.team-site-matrix-container--mock-carousel .team-site-matrix-entry p:first-of-type {
  color: #5f7383;
}

.team-site-carousel-mock-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.team-site-carousel-mock-dot {
  min-width: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f0de;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
}

.team-site-carousel-mock-dot.is-active {
  background: #f6dc8e;
  border-color: #f6dc8e;
  color: #334650;
  box-shadow: 0 0 18px rgba(246, 220, 142, 0.45);
}

.team-all {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px 72px;
}

.team-all .team-site-matrix {
  margin-top: 0;
}

@media all and (max-width: 1100px) {
  .team-site-carousel-stage {
    grid-template-columns: 1fr;
  }

  .team-site-carousel-arrow {
    display: none;
  }

  .team-site-carousel-track {
    grid-auto-columns: 80%;
  }

  .team-site-matrix-entry img {
    height: 280px;
  }

  .team-site-matrix-placeholder {
    height: 280px;
  }

  .team-matrix-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .team-matrix-modal-media {
    max-height: 360px;
  }

  .team-matrix-modal-body {
    padding: 30px 28px;
  }

  .team-site-carousel-mock-stage {
    grid-template-columns: 1fr;
  }

  .team-site-carousel-mock-arrow {
    display: none;
  }
}

@media all and (max-width: 700px) {
  .team-all {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px 48px;
  }

  .team-site-matrix-entry {
    border-radius: 22px;
    padding-bottom: 20px;
  }

  .team-site-matrix-entry img {
    height: 240px;
    margin-bottom: 16px;
  }

  .team-site-matrix-placeholder {
    height: 240px;
    margin-bottom: 16px;
  }

  .team-site-matrix-entry p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .team-site-matrix-entry p:nth-of-type(3) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .team-site-carousel {
    padding: 16px;
    border-radius: 24px;
  }

  .team-site-carousel-track {
    grid-auto-columns: 88%;
    gap: 16px;
  }

  .team-site-carousel-pagination {
    justify-content: flex-start;
  }

  .team-site-carousel-track .team-site-matrix-entry img {
    height: 240px;
  }

  .team-site-carousel-track .team-site-matrix-placeholder {
    height: 240px;
  }

  .team-site-matrix-entry-more {
    margin-right: 18px;
    margin-left: 18px;
  }

  .team-matrix-modal {
    padding: 16px;
  }

  .team-matrix-modal-dialog {
    border-radius: 24px;
  }

  .team-matrix-modal-close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .team-matrix-modal-nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .team-matrix-modal-prev {
    left: 12px;
  }

  .team-matrix-modal-next {
    right: 12px;
  }

  .team-site-carousel-mock {
    padding: 16px;
    border-radius: 24px;
  }

  .team-site-matrix-container--mock-carousel {
    grid-auto-columns: minmax(240px, 82vw);
    gap: 16px;
  }

  .team-site-matrix-container--mock-carousel .team-site-matrix-entry img {
    height: 240px;
  }
}
