/*
Theme Name: Pediatric Dental - Child
Version: 587
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/

/* Carousel */
@import url("../mts_schema/style.css");

:root {
  --coral: var();
  --coral: var(--pColor);
  --mint: var();
  --mint: #4cc28d;
  --berry: #b66bd8;
  --cream: #fff8f0;
  --cream-deep: #FBF5E9;
  --ink: #1b2a4e;
  --ink-soft: #4a5780;
  --line: rgba(27, 42, 78, 0.08);
  --shadow-sm: 0 2px 0 rgba(27, 42, 78, 0.06), 0 4px 12px rgba(27, 42, 78, 0.04);
  --shadow-md: 0 4px 0 rgba(27, 42, 78, 0.08),
    0 12px 32px rgba(27, 42, 78, 0.08);
  --shadow-lg: 0 8px 0 rgba(27, 42, 78, 0.1), 0 24px 64px rgba(27, 42, 78, 0.12);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  --r-xl: 56px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 15px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--cream);
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 18px;
  background: var(--coral);
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  top: 11px;
  left: 14px;
}
.brand small {
  display: block;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: 0.2s;
}
.nav-links a:hover {
  background: var(--cream-deep);
  color: var(--ink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  transition: 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 0 #cf4456, 0 8px 24px rgba(255, 90, 110, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #cf4456, 0 12px 28px rgba(255, 90, 110, 0.35);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #cf4456;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-sky {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 4px 0 #3a7fb5, 0 8px 24px rgba(77, 157, 224, 0.3);
}
.btn-sky:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #3a7fb5, 0 12px 28px rgba(77, 157, 224, 0.35);
}
.btn-sun {
  background: var(--sunshine);
  color: var(--ink);
  box-shadow: 0 4px 0 #cfa72d, 0 8px 24px rgba(255, 212, 59, 0.35);
}
.btn-sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #cfa72d, 0 12px 28px rgba(255, 212, 59, 0.4);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
  padding: 9px 14px;
  border-radius: 999px;
}
.nav-phone:hover {
  background: var(--cream-deep);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
}
.hero h2 {
  font-size: clamp(48px, 6.4vw, 70px);
  margin-bottom: 24px;
}
.hero h2 .squiggle {
  color: var(--aColor);
  position: relative;
  display: inline-block;
}
.hero h2 .squiggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14'%3E%3Cpath d='M2 8 Q 17 2, 32 8 T 62 8 T 92 8 T 118 8' stroke='%23FFD43B' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 120px 14px;
}
.hero h2 .yellow {
  color: var(--sunshine);
  -webkit-text-stroke: 2px var(--ink);
}
.hero h2 .mint {
  color: var(--pColor);
}
.hero h2 .sky {
  color: var(--sky);
}
.hero-lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-trust-item strong {
  font-family: "Fredoka", sans-serif;
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
}

/* hero photo + floating shapes */
.hero-stage {
  position: relative;
  aspect-ratio: 0.9 / 0.9;
  width: 100%;
}
.hero-blob {
  position: absolute;
  inset: 0;
  border-radius: 48% 52% 44% 56% / 52% 48% 52% 48%;
  background: var(--pColor);
  z-index: 1;
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%,
  100% {
    border-radius: 48% 52% 44% 56% / 52% 48% 52% 48%;
  }
  33% {
    border-radius: 56% 44% 56% 44% / 48% 60% 40% 52%;
  }
  66% {
    border-radius: 44% 56% 52% 48% / 60% 44% 56% 40%;
  }
}
.hero-photo {
  position: absolute;
  inset: 6%;
  border-radius: 46% 54% 46% 54% / 50% 50% 50% 50%;
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.18) 0 12px,
      rgba(255, 255, 255, 0) 12px 24px
    ),
    linear-gradient(135deg, #6fb4e8, #4d9de0);
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  text-align: center;
  padding: 32px;
  animation: morph 14s ease-in-out infinite reverse;
  overflow: hidden;
}
.hero-photo span {
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
}

/* floating sticker shapes */
.float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  color: #fff;
  z-index: 3;
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-12px) rotate(var(--rot, 0deg));
  }
}
.float-1 {
  width: 110px;
  height: 110px;
  background: var(--sunshine);
  color: var(--ink);
  top: -10px;
  right: -20px;
  --rot: -8deg;
  font-size: 14px;
  text-align: center;
  line-height: 1.15;
  padding: 0 12px;
}
.float-2 {
  width: 88px;
  height: 88px;
  background: var(--mint);
  bottom: 60px;
  left: -28px;
  --rot: 12deg;
  animation-delay: -2s;
  font-size: 32px;
}
.float-3 {
  width: 64px;
  height: 64px;
  background: var(--coral);
  top: 36%;
  right: -18px;
  --rot: 15deg;
  animation-delay: -4s;
  font-size: 28px;
}
.float-4 {
  width: 56px;
  height: 56px;
  background: var(--berry);
  bottom: -10px;
  right: 24%;
  --rot: -10deg;
  animation-delay: -3s;
  font-size: 24px;
}

/* background dots */
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(27, 42, 78, 0.08) 1.6px,
    transparent 1.6px
  );
  background-size: 28px 28px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ─── SECTION HEADER ─────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-cream {
  background: var(--cream-deep);
}
.section-mint {
  background: linear-gradient(180deg, #a4c9d3 0%, #446c77 100%);
  color: #fff;
}
.section-mint h2,
.section-mint h3 {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}
.section-mint .eyebrow {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  margin-top: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
}
.section-mint .section-head p {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── SERVICES (flip cards) ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.flip {
  perspective: 1200px;
  height: 460px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.7, -0.2, 0.3, 1.2);
}
.flip.is-flipped .flip-inner {
  transform: rotateY(180deg);
}
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--pColor);
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flip-back {
  transform: rotateY(180deg);
  background: var(--sColor);
  color: var(--cream);
}
.flip-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}
.flip h3 {
  font-size: 22px;
  margin-top: 20px;
}
.flip-front p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 8px;
}
.flip-tap {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.flip-back h3 {
  color: #fff;
}
.flip-back ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flip-back li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: rgba(255, 248, 240, 0.85);
  line-height: 1.4;
}
.flip-back li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aColor);
}
.flip-back .flip-tap {
  color: var(--sunshine);
}

/* face colors */
.f-coral {
  background: linear-gradient(160deg, #ffe3e7, #ffd0d7);
}
.f-coral .flip-icon {
  background: var(--coral);
}
.f-sun {
  background: linear-gradient(160deg, #fff4c2, #ffe891);
}
.f-sun .flip-icon {
  background: var(--sunshine);
  color: var(--ink);
}
.f-mint {
}
.f-mint .flip-icon {
  background: var(--mint);
}
.f-sky {
  background: linear-gradient(160deg, #d6eaf8, #b5d8f0);
}
.f-sky .flip-icon {
  background: var(--sky);
}
.f-berry {
  background: linear-gradient(160deg, #ecd6f3, #dfbeec);
}
.f-berry .flip-icon {
  background: var(--berry);
}

/* ─── ABOUT ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.18) 0 12px,
      rgba(255, 255, 255, 0) 12px 24px
    ),
    linear-gradient(135deg, #ffd97a, #ffb04d);
  display: grid;
  place-items: center;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: rgba(27, 42, 78, 0.7);
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-photo span {
  background: rgba(255, 248, 240, 0.6);
  padding: 8px 14px;
  border-radius: 10px;
}
.about-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: var(--aColor);
  border-radius: 50%;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.1;
  padding: 0 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
  z-index: 3;
  animation: bob 5s ease-in-out infinite;
}
.about-badge strong {
  display: block;
  font-size: 32px;
  margin-bottom: 2px;
}
.about-sticker {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--mint);
  color: #fff;
  padding: 14px 18px;
  border-radius: 22px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  transform: rotate(-5deg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-sticker .stk-emoji {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-size: 18px;
}

.about-content h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  margin-top: 16px;
}
.about-content .signature-name {
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
  color: var(--coral);
  margin-top: 18px;
}
.about-content p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 22px;
}
.about-content .btn {
  margin-top: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.about-stat {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.about-stat strong {
  font-size: 32px;
  color: var(--coral);
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
.about-stat span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}
.about-stat:nth-child(2) strong {
  color: var(--sky);
}
.about-stat:nth-child(3) strong {
  color: var(--mint);
}

/* ─── WHY CHOOSE US ────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.why-card .why-num {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--aColor);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.why-card:nth-child(2) .why-icon {
  background: var(--ink-soft);
  color: #fff;
}
.why-card:nth-child(3) .why-icon {
  background: #fff;
  color: var(--mint);
}
.why-card:nth-child(4) .why-icon {
  background: var(--berry);
  color: #fff;
}

/* ─── NEW PATIENT ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: 0.2s;
}
.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sunshine);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 26px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}
.step:nth-child(2) .step-num {
  background: var(--coral);
  color: #fff;
}
.step:nth-child(3) .step-num {
  background: var(--sky);
  color: #fff;
}
.step:nth-child(4) .step-num {
  background: var(--mint);
  color: #fff;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.checklist {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.checklist::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 212, 59, 0.18);
}
.checklist h3 {
  color: #fff;
  font-size: 28px;
  position: relative;
}
.checklist .check-sub {
  font-size: 15px;
  color: rgba(255, 248, 240, 0.7);
  margin-top: 8px;
  position: relative;
}
.checklist ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.checklist li {
  padding-left: 36px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.45;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8 L7 12 L13 4' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.checklist .btn {
  margin-top: 32px;
}

/* ─── GALLERY ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  text-align: center;
  padding: 0px;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.14) 0 10px,
    rgba(255, 255, 255, 0) 10px 20px
  );
  pointer-events: none;
}
.gallery-item span {
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: block;
}
.g-1 {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--coral), #ff8597);
}
.g-2 {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--sky), #7bb8e6);
}
.g-3 {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--mint), #7fdcb0);
}
.g-4 {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--sunshine), #ffe06c);
  color: var(--ink);
}
.g-5 {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--berry), #c98ad9);
}
.g-6 {
  grid-column: span 2;
  background: linear-gradient(135deg, #ff8597, var(--coral));
  grid-row: span 2;
}
.g-7 {
  grid-column: span 2;
  background: linear-gradient(135deg, #7bb8e6, var(--sky));
  grid-row: span 2;
}


.testimonials-wrap {
  position: relative;
  display: flex;
  /* gap: 60px; */
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-display {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-display::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 32px;
  font-family: "Fredoka", sans-serif;
  font-size: 140px;
  line-height: 1;
  color: var(--coral);
  opacity: 0.18;
}
.testimonial-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  position: relative;
  text-wrap: balance;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 22px;
}
.author-name {
  font-weight: 800;
  font-size: 16px;
}
.author-meta {
  font-size: 13px;
  color: var(--ink-soft);
}
.stars {
  color: var(--sunshine);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.tcontrol {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: 0.18s;
}
.tcontrol:hover {
  background: var(--ink);
  color: #fff;
}
.tdots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 42, 78, 0.2);
  border: 0;
  padding: 0;
  transition: 0.2s;
}
.tdot.active {
  background: var(--coral);
  width: 32px;
  border-radius: 5px;
}

/* ─── MAP / LOCATION ──────────────────────────── */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-info {
  padding: 48px;
}
.map-info h2 {
  font-size: 40px;
}
.map-info .info-block {
  margin-top: 28px;
}
.map-info .info-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.map-info .info-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.map-info .info-sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.map-info .btn {
  margin-top: 32px;
}

.map-canvas {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #cce7d7 0%, #d6f0e2 100%);
  overflow: hidden;
}
.map-streets {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      transparent 48%,
      rgba(255, 255, 255, 0.7) 48%,
      rgba(255, 255, 255, 0.7) 52%,
      transparent 52%
    ),
    linear-gradient(
      0deg,
      transparent 28%,
      rgba(255, 255, 255, 0.7) 28%,
      rgba(255, 255, 255, 0.7) 30%,
      transparent 30%
    ),
    linear-gradient(
      0deg,
      transparent 68%,
      rgba(255, 255, 255, 0.7) 68%,
      rgba(255, 255, 255, 0.7) 70%,
      transparent 70%
    ),
    linear-gradient(
      115deg,
      transparent 32%,
      rgba(255, 255, 255, 0.55) 32%,
      rgba(255, 255, 255, 0.55) 34%,
      transparent 34%
    );
}
.map-park {
  position: absolute;
  bottom: 10%;
  left: 6%;
  width: 32%;
  height: 36%;
  background: rgba(93, 211, 158, 0.35);
  border-radius: 50% 30% 60% 40%;
}
.map-water {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 28%;
  height: 26%;
  background: rgba(77, 157, 224, 0.3);
  border-radius: 60% 40% 50% 30%;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -100%);
  z-index: 3;
}
.map-pin-bubble {
  background: var(--coral);
  color: #fff;
  padding: 12px 18px;
  border-radius: 18px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  position: relative;
  white-space: nowrap;
}
.map-pin-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--coral);
}
.map-pin-dot {
  width: 22px;
  height: 22px;
  background: var(--coral);
  border: 4px solid #fff;
  border-radius: 50%;
  margin: 24px auto 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.map-pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.4;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translateX(-50%) scale(4);
    opacity: 0;
  }
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--sColor);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.about-photo img {
    border-radius: 25px;
    height: 100% !important;
    object-fit: cover;
}

.footer h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunshine);
  margin-bottom: 18px;
  font-family: "Nunito", sans-serif;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: rgba(255, 248, 240, 0.75);
  transition: 0.18s;
}
.footer ul a:hover {
  color: var(--sunshine);
}
.footer-brand .brand {
  color: #fff;
  font-size: 24px;
}
.footer-brand .brand small {
  color: var(--sunshine);
}
.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 248, 240, 0.7);
  font-size: 15px;
  line-height: 1.55;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: 0.18s;
}
.footer-socials a:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 248, 240, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonials-wrap {
    grid-template-columns: 1fr;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  .g-1,
  .g-5 {
    grid-column: span 2;
  }
  .g-2,
  .g-3,
  .g-4,
  .g-6,
  .g-7 {
    grid-column: span 1;
  }
}


ul#menu-footer-menu {
    display: flex;
    align-items: center;
    margin: 0px;
    pa0: px;
}

li#menu-item-38 {
    display: none;
}

.hero-photo video {
    height: 100% !important;
    object-fit: cover;
    width: 100%;
    position: absolute;
    filter: saturate(1.5);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.flip:nth-child(odd) .flip-front {
    background: var(--aColor);
}

.flip:nth-child(even) .flip-front {
    background: var(--pColor);
}

html h1, html h2, html h4 {
    color: var(--sColor);
}

.flip:nth-child(odd) .flip-front * {
    color: var(--sColor);
}

.flip:nth-child(even) .flip-front * {
    color: #fff;
}

.map-canvas iframe {
    height: 100%;
    display: block;
}

a.rm {
    position: absolute;
    bottom: 18px;
    right: 20px;
    background: var(--aColor);
    border-radius: 50px;
    padding: 9px 18px;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.flip-image img {
    border-radius: 20px;
    height: 200px !important;
    object-fit: cover;
    width: 100%;
}

.flip-image img {
    display: block;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
}

footer#site-footer p, footer#site-footer a {
    font-size: 16px;
}

.gallery-item img {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100% !important;
    object-fit: cover;
    width: 100%;
    z-index: 1;
}

path#nameTopa {
    fill: #fff;
}

.slick-item {
    padding: 40px 100px 80px;
	padding-right: 60px;
}

.testimonials-wrap .testimonials-stack {
    flex: 1 1 calc(100% - 250px);
}

.testimonials-wrap > div {
    width: 200px;
}

.testimonials-stack .slick-dots button {
    background: var(--pColor);
}

.testimonials-stack .slick-dots {
    position: relative;
    bottom: 30px;
}

section#reviews .section-head {
    margin-bottom: 20px;
}

@media (max-width: 880px) {
	.nav-cta .nav-phone,.nav-cta .btn {
		display: none;
	}

	html a#pull {
		color: #000 !important;
		font-size: 29px;
		margin: 0px !important;
		background: transparent !important;
	}

	html a#pull:after {
		position: relative;
		left: 0px;
		top: 0px;
	}

	.slick-item {
		padding: 20px;
	}

	
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
#site-header {
    z-index: 999;
}
:root {
	--mm-bg:        #FFF8F0;
	--mm-bg-deep:   #FFEFD9;
	--mm-ink:       #1B2A4E;
	--mm-ink-soft:  #4A5780;
	--mm-accent:    #FF5A6E;
	--mm-accent-d:  #cf4456;
	--mm-line:      rgba(27, 42, 78, 0.08);
	--mm-z:         9999;
	--mm-width:     min(360px, 88vw);
	--mm-ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Toggle (hamburger) — visible on small screens only */
.mm-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--mm-ink);
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	z-index: calc(var(--mm-z) - 1);
}
.mm-toggle span {
	position: absolute;
	left: 10px;
	right: 10px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.25s var(--mm-ease), opacity 0.2s;
}
.mm-toggle span:nth-child(1) { top: 14px; }
.mm-toggle span:nth-child(2) { top: 21px; }
.mm-toggle span:nth-child(3) { top: 28px; }

/* Open state — animate hamburger into X */
body.mm-open .mm-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mm-open .mm-toggle span:nth-child(2) { opacity: 0; }
body.mm-open .mm-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay backdrop */
.mm-overlay {
	position: fixed;
	inset: 0;
	background: rgba(27, 42, 78, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s var(--mm-ease);
	z-index: var(--mm-z);
}
body.mm-open .mm-overlay {
	opacity: 1;
	pointer-events: auto;
}

/* Panel */
.mm-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--mm-width);
	background: var(--mm-bg);
	color: var(--mm-ink);
	z-index: calc(var(--mm-z) + 1);
	transform: translateX(100%);
	transition: transform 0.35s var(--mm-ease);
	display: flex;
	flex-direction: column;
	box-shadow: -20px 0 60px rgba(27, 42, 78, 0.18);
	font-family: "Nunito", system-ui, sans-serif;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
body.mm-open .mm-panel { transform: translateX(0); }

/* Head row: brand + close */
.mm-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid var(--mm-line);
	gap: 12px;
}
.mm-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}
.mm-brand img { max-height: 40px; width: auto; display: block; }
.mm-brand-text {
	font-family: "Fredoka", system-ui, sans-serif;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -0.01em;
	color: var(--mm-ink);
}
.mm-close {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: var(--mm-bg-deep);
	color: var(--mm-ink);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.18s, transform 0.18s;
}
.mm-close:hover { background: var(--mm-accent); color: #fff; transform: rotate(90deg); }

/* Nav */
.mm-nav { padding: 12px 14px; flex: 1; }
.mm-nav .mm-menu,
.mm-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.mm-nav li { display: block; }
.mm-nav a {
	display: block;
	padding: 13px 14px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	color: var(--mm-ink);
	text-decoration: none;
	transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.mm-nav a:hover,
.mm-nav .current-menu-item > a,
.mm-nav .current_page_item > a {
	background: var(--mm-bg-deep);
	color: var(--mm-accent);
	padding-left: 20px;
}
.mm-nav .sub-menu,
.mm-nav ul ul {
	margin: 2px 0 6px 12px;
	padding-left: 10px;
	border-left: 2px solid var(--mm-line);
}
.mm-nav .sub-menu a,
.mm-nav ul ul a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--mm-ink-soft);
	padding: 9px 14px;
}

/* CTA block */
.mm-cta {
	padding: 18px 22px 26px;
	border-top: 1px solid var(--mm-line);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mm-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 16px;
	color: var(--mm-ink);
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--mm-bg-deep);
}
.mm-phone:hover { background: var(--mm-ink); color: #fff; }
.mm-book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--mm-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 4px 0 var(--mm-accent-d);
	transition: transform 0.18s, box-shadow 0.18s;
}
.mm-book:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--mm-accent-d); }
.mm-book:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--mm-accent-d); }

/* Lock background scroll when open */
body.mm-open { overflow: hidden; }

/* Breakpoint — show toggle, panel only on mobile/tablet */
@media (max-width: 980px) {
	.mm-toggle { display: inline-block; }
}
@media (min-width: 981px) {
	.mm-panel,
	.mm-overlay { display: none; }
}
/* ─── DYNAMIC LOGO / OPTION-DRIVEN BITS ──────────── */
.brand img,
.mm-brand img {
	max-height: 105px;
	width: auto;
	display: block;
}
.footer-brand .brand img {
	max-height: 120px;
	filter: brightness(0) invert(1);
}
.brand-name {
	font-family: "Fredoka", sans-serif;
	font-weight: 600;
	font-size: 22px;
}
.map-info .hours-list {
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.map-info .hours-list li {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
}
.map-info .hours-list li + li {
	color: var(--ink-soft);
}
.reviews-score {
	font-family: "Fredoka", sans-serif;
	font-size: 80px;
	line-height: 0.9;
	color: var(--coral);
}
.reviews-score-text {
	margin-top: 12px;
	font-size: 16px;
	color: var(--ink-soft);
	max-width: 280px;
}
.reviews-score-text strong {
	color: var(--ink);
}

/* ─── PRIMARY NAV: SUB-MENUS (desktop) ───────────── */
.nav-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links > ul,
.nav-links .ms-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}
.nav-links li {
	position: relative;
}
.nav-links a {
	display: block;
	text-decoration: none;
	white-space: nowrap;
}
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
	background: var(--cream-deep);
	color: var(--ink);
}

/* caret on items that have children */
.nav-links .menu-item-has-children > a::after,
.nav-links .page_item_has_children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s;
	right: 0px;
	top: 17px;
}
.nav-links li:hover > a::after,
.nav-links li:focus-within > a::after {
	transform: translateY(1px) rotate(-135deg);
}

/* the dropdown itself */
.nav-links .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 60;
	display: block;
	min-width: 232px;
	padding: 8px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
/* bridge the gap so the pointer can travel into the panel */
.nav-links .sub-menu::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-links .sub-menu li {
	display: block;
	width: 100%;
}
.nav-links .sub-menu a {
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	white-space: normal;
}
.nav-links .sub-menu a:hover {
	background: var(--cream-deep);
	color: var(--ink);
}
/* third level flies out to the side */
.nav-links .sub-menu .sub-menu {
	top: -9px;
	left: calc(100% + 6px);
	transform: translateX(-6px);
}
.nav-links .sub-menu li:hover > .sub-menu,
.nav-links .sub-menu li:focus-within > .sub-menu {
	transform: translateX(0);
}
.nav-links .sub-menu .menu-item-has-children > a::after {
	float: right;
	margin-top: 5px;
	transform: rotate(-45deg);
}
.nav-links .sub-menu li:hover > a::after,
.nav-links .sub-menu li:focus-within > a::after {
	transform: rotate(45deg);
}
.nav-links .sub-menu .sub-menu::before {
	top: 0;
	bottom: 0;
	left: -8px;
	right: auto;
	width: 8px;
	height: auto;
}
/* keep the last items on screen */
.nav-links > ul > li:last-child > .sub-menu,
.nav-links > ul > li:nth-last-child(2) > .sub-menu {
	left: auto;
	right: 0;
}
.nav-links > ul > li:last-child .sub-menu .sub-menu,
.nav-links > ul > li:nth-last-child(2) .sub-menu .sub-menu {
	left: auto;
	right: calc(100% + 6px);
}

.mm-nav li {
	position: relative;
}
.mm-nav .menu-item-has-children > a,
.mm-nav .page_item_has_children > a {
	padding-right: 52px;
}
.mm-sub-toggle {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--mm-ink-soft);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.18s, color 0.18s;
}
.mm-sub-toggle::before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s;
}
.mm-sub-toggle:hover {
	background: var(--mm-bg-deep);
	color: var(--mm-accent);
}
.mm-nav li.is-open > .mm-sub-toggle::before {
	transform: translateY(2px) rotate(-135deg);
}
.mm-nav li.is-open > .mm-sub-toggle {
	color: var(--mm-accent);
}
.mm-nav .sub-menu,
.mm-nav ul ul {
	display: none;
}
.mm-nav li.is-open > .sub-menu,
.mm-nav li.is-open > ul {
	display: flex;
}


.flip-face * {
    COLOR: #FFF !important;
}

footer#site-footer * {
    color: #fff !important;
}