/*
 * Excel Dental Dentor design layer.
 * Scoped to the child-theme body class so the existing Kadence content remains reversible.
 */
:root {
  --ed-blue: #0878b7;
  --ed-blue-dark: #035b8c;
  --ed-red: #d94352;
  --ed-navy: #071c2c;
  --ed-navy-soft: #0d2a3d;
  --ed-ink: #102330;
  --ed-muted: #617681;
  --ed-cloud: #eef8fb;
  --ed-mist: #f6fafb;
  --ed-line: #d8e8ed;
  --ed-white: #ffffff;
  --ed-shadow: 0 22px 60px rgba(7, 28, 44, 0.12);
  --ed-shadow-soft: 0 12px 36px rgba(7, 28, 44, 0.09);
  --ed-radius-sm: 14px;
  --ed-radius: 24px;
  --ed-radius-lg: 38px;
  --ed-shell: 1250px;
  --ed-section-space: clamp(76px, 8vw, 124px);
  --ed-ease: cubic-bezier(.2, .7, .2, 1);
}

.ed-dentor-theme,
.ed-dentor-theme button,
.ed-dentor-theme input,
.ed-dentor-theme select,
.ed-dentor-theme textarea {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ed-dentor-theme {
  color: var(--ed-ink);
  background: var(--ed-white);
}

.ed-dentor-theme .site-container,
.ed-dentor-theme .content-area,
.ed-dentor-theme .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.ed-dentor-theme .content-bg,
.ed-dentor-theme .site-main > article {
  background: transparent;
}

.ed-dentor-theme .entry-content-wrap {
  padding: 0;
}

.ed-dentor-theme img {
  max-width: 100%;
}

.ed-dentor-theme h1,
.ed-dentor-theme h2,
.ed-dentor-theme h3,
.ed-dentor-theme h4,
.ed-dentor-theme h5,
.ed-dentor-theme h6 {
  color: var(--ed-navy);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-transform: none;
}

.ed-dentor-theme p,
.ed-dentor-theme li {
  font-size: 16px;
  line-height: 1.75;
}

.ed-dentor-theme a {
  color: inherit;
}

.ed-shell {
  width: min(calc(100% - 40px), var(--ed-shell));
  margin-inline: auto;
}

.ed-section {
  position: relative;
  padding-block: var(--ed-section-space);
}

.ed-section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.ed-section-heading h2,
.ed-about-copy h2,
.ed-routine-copy h2,
.ed-faq-intro h2,
.ed-pillar-copy h1,
.ed-pillar-section h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4.5vw, 62px);
}

.ed-section-heading > p:last-child,
.ed-heading-row > p,
.ed-about-copy > p,
.ed-routine-copy > p,
.ed-faq-intro > p,
.ed-pillar-copy > p {
  color: var(--ed-muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

.ed-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 44px;
  align-items: end;
  max-width: none;
}

.ed-centered {
  margin-inline: auto;
  text-align: center;
}

.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--ed-blue-dark);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.ed-eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--ed-red);
  border-radius: 99px;
  content: "";
}

.ed-eyebrow-light {
  color: rgba(255, 255, 255, .78);
}

.ed-eyebrow-light::before {
  background: #7bc9ed;
}

.ed-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ed-button,
.ed-dentor-theme .ed-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .25s var(--ed-ease), box-shadow .25s var(--ed-ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}

.ed-button svg,
.ed-card-link svg,
.ed-text-link svg,
.ed-contact-card > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .25s var(--ed-ease);
}

.ed-button:hover,
.ed-button:focus-visible {
  transform: translateY(-2px);
}

.ed-button:hover svg,
.ed-button:focus-visible svg,
.ed-card-link:hover svg,
.ed-card-link:focus-visible svg,
.ed-text-link:hover svg,
.ed-text-link:focus-visible svg,
.ed-contact-card:hover > svg,
.ed-contact-card:focus-visible > svg {
  transform: translateX(4px);
}

.ed-button-primary {
  color: var(--ed-white) !important;
  background: var(--ed-blue);
  box-shadow: 0 14px 30px rgba(8, 120, 183, .28);
}

.ed-button-primary:hover,
.ed-button-primary:focus-visible {
  background: #0a87ca;
  box-shadow: 0 18px 38px rgba(8, 120, 183, .35);
}

.ed-button-ghost {
  color: var(--ed-white) !important;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.ed-button-ghost:hover,
.ed-button-ghost:focus-visible {
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.13);
}

.ed-button-dark {
  color: var(--ed-white) !important;
  background: var(--ed-navy);
}

.ed-button-dark:hover,
.ed-button-dark:focus-visible {
  background: var(--ed-blue-dark);
  box-shadow: var(--ed-shadow-soft);
}

.ed-button-light {
  color: var(--ed-navy) !important;
  background: var(--ed-white);
  box-shadow: 0 16px 35px rgba(0,0,0,.16);
}

.ed-button-outline-light {
  color: var(--ed-white) !important;
  border-color: rgba(255,255,255,.34);
  background: transparent;
}

.ed-button-outline-light:hover,
.ed-button-outline-light:focus-visible {
  border-color: var(--ed-white);
  background: rgba(255,255,255,.1);
}

.ed-card-link,
.ed-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ed-blue-dark) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* Kadence header and four-pillar navigation */
.ed-dentor-theme .site-header {
  position: relative;
  z-index: 100;
}

.ed-dentor-theme .site-top-header-wrap .site-header-row-container-inner,
.ed-dentor-theme .site-top-header-wrap {
  background: var(--ed-navy) !important;
}

.ed-dentor-theme .site-main-header-wrap .site-header-row-container-inner,
.ed-dentor-theme .site-main-header-wrap {
  background: rgba(255,255,255,.98) !important;
}

.ed-dentor-theme .site-main-header-wrap {
  border-bottom: 1px solid rgba(7,28,44,.08);
  box-shadow: 0 4px 20px rgba(7,28,44,.03);
}

.ed-dentor-theme .site-header-row-container-inner > .site-container,
.ed-dentor-theme .site-header-row-layout-fullwidth > .site-container {
  width: min(calc(100% - 40px), var(--ed-shell));
  max-width: var(--ed-shell);
  padding-inline: 0;
}

.ed-dentor-theme .site-branding a.brand img,
.ed-dentor-theme .site-branding .custom-logo {
  width: auto;
  max-width: 255px;
  max-height: 64px;
  object-fit: contain;
}

.ed-dentor-theme .main-navigation .primary-menu-container > ul > li > a {
  color: var(--ed-navy) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
}

.ed-dentor-theme .main-navigation .primary-menu-container > ul > li > a:hover,
.ed-dentor-theme .main-navigation .primary-menu-container > ul > li.current-menu-item > a,
.ed-dentor-theme .main-navigation .primary-menu-container > ul > li.current-menu-ancestor > a {
  color: var(--ed-blue-dark) !important;
}

.ed-dentor-theme .main-navigation .primary-menu-container > ul > li.ed-menu-cta > a {
  min-height: 44px;
  margin-left: 8px;
  padding: 11px 18px !important;
  border-radius: 999px;
  color: var(--ed-white) !important;
  background: var(--ed-blue);
  box-shadow: 0 10px 24px rgba(8,120,183,.22);
}

.ed-dentor-theme .main-navigation .primary-menu-container > ul > li.ed-menu-cta > a:hover,
.ed-dentor-theme .main-navigation .primary-menu-container > ul > li.ed-menu-cta.current-menu-item > a {
  color: var(--ed-white) !important;
  background: var(--ed-blue-dark);
}

.ed-dentor-theme .main-navigation ul ul.sub-menu {
  min-width: 255px;
  padding: 12px;
  border: 1px solid var(--ed-line);
  border-radius: 18px;
  background: var(--ed-white);
  box-shadow: var(--ed-shadow);
}

.ed-dentor-theme .main-navigation ul ul.sub-menu::before {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--ed-line);
  border-left: 1px solid var(--ed-line);
  background: var(--ed-white);
  content: "";
  transform: rotate(45deg);
}

.ed-dentor-theme .main-navigation ul ul.sub-menu li {
  position: relative;
  z-index: 1;
}

.ed-dentor-theme .main-navigation ul ul.sub-menu li a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ed-ink) !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.ed-dentor-theme .main-navigation ul ul.sub-menu li a:hover,
.ed-dentor-theme .main-navigation ul ul.sub-menu li.current-menu-item a {
  color: var(--ed-blue-dark) !important;
  background: var(--ed-cloud);
}

.ed-dentor-theme .drawer-inner {
  background: var(--ed-white);
}

.ed-dentor-theme .drawer-content .mobile-navigation ul li a {
  color: var(--ed-navy);
  font-weight: 600;
  text-transform: none;
}

.ed-dentor-theme .drawer-content .mobile-navigation .sub-menu li a {
  color: var(--ed-muted);
  font-size: 14px;
  font-weight: 500;
}

.ed-dentor-theme .drawer-content .mobile-navigation li.ed-menu-cta > .drawer-nav-drop-wrap > a,
.ed-dentor-theme .drawer-content .mobile-navigation li.ed-menu-cta > a {
  margin-top: 14px;
  border-radius: 999px;
  color: var(--ed-white) !important;
  background: var(--ed-blue);
  text-align: center;
}

/* Hero */
.ed-hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  color: var(--ed-white);
  background:
    radial-gradient(circle at 12% 20%, rgba(8,120,183,.34), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(217,67,82,.17), transparent 28%),
    linear-gradient(130deg, #061926 0%, #0a2638 55%, #071c2c 100%);
}

.ed-hero::before {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.ed-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 735px;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
  padding-block: 86px 105px;
}

.ed-hero-copy {
  max-width: 650px;
}

.ed-hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--ed-white);
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: -.055em;
  line-height: .99;
}

.ed-hero-lede {
  max-width: 630px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.7vw, 20px) !important;
  line-height: 1.65 !important;
}

.ed-hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.ed-avatar-stack {
  display: flex;
  padding-left: 10px;
}

.ed-avatar-stack img {
  width: 44px;
  height: 44px;
  margin-left: -10px;
  border: 3px solid var(--ed-navy);
  border-radius: 50%;
  object-fit: cover;
  background: var(--ed-white);
}

.ed-hero-trust p {
  display: grid;
  gap: 1px;
  margin: 0;
  line-height: 1.35 !important;
}

.ed-hero-trust strong {
  color: var(--ed-white);
  font-size: 14px;
}

.ed-hero-trust span {
  color: rgba(255,255,255,.61);
  font-size: 12px;
}

.ed-hero-visual {
  position: relative;
  min-height: 560px;
}

.ed-hero-image-wrap {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 44% 44% 28px 28px;
  background: #0b3146;
  box-shadow: 0 40px 80px rgba(0,0,0,.28);
}

.ed-hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,25,38,.38), transparent 48%);
  content: "";
}

.ed-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.03);
}

.ed-hero-shape {
  position: absolute;
  right: -8%;
  bottom: -19%;
  width: 58%;
  aspect-ratio: 1;
  border: 52px solid rgba(123,201,237,.18);
  border-radius: 50%;
}

.ed-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 17px;
  color: var(--ed-navy);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(15px);
}

.ed-float-card small,
.ed-float-card span {
  display: block;
}

.ed-float-card small {
  margin-bottom: 1px;
  color: var(--ed-muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ed-float-card strong {
  color: var(--ed-navy);
  font-size: 14px;
}

.ed-float-call {
  left: -2%;
  bottom: 16%;
}

.ed-float-history {
  top: 13%;
  right: -5%;
  display: grid;
  max-width: 135px;
  gap: 4px;
  text-align: center;
}

.ed-float-history strong {
  color: var(--ed-blue-dark);
  font-size: 24px;
  line-height: 1;
}

.ed-float-history span {
  color: var(--ed-muted);
  font-size: 10px;
  line-height: 1.3;
}

.ed-icon-badge,
.ed-contact-icon,
.ed-service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--ed-white);
  background: var(--ed-blue);
}

.ed-icon-badge svg,
.ed-contact-icon svg,
.ed-service-icon svg,
.ed-feature-list span svg,
.ed-mobile-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.ed-hero-orb {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.ed-hero-orb-one {
  top: 11%;
  left: -150px;
  width: 340px;
  height: 340px;
}

.ed-hero-orb-two {
  right: 29%;
  bottom: -160px;
  width: 380px;
  height: 380px;
}

/* Contact strip */
.ed-contact-strip {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.ed-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 22px;
  background: var(--ed-white);
  box-shadow: var(--ed-shadow);
}

.ed-contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 112px;
  padding: 24px 27px;
  border-right: 1px solid var(--ed-line);
  color: var(--ed-navy) !important;
  text-decoration: none;
  transition: background-color .25s ease;
}

.ed-contact-card:last-child {
  border-right: 0;
}

.ed-contact-card:hover,
.ed-contact-card:focus-visible {
  background: var(--ed-cloud);
}

.ed-contact-card small,
.ed-contact-card strong {
  display: block;
}

.ed-contact-card small {
  margin-bottom: 2px;
  color: var(--ed-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ed-contact-card strong {
  font-size: 15px;
  line-height: 1.3;
}

.ed-contact-card > svg {
  color: var(--ed-blue-dark);
}

/* About */
.ed-about {
  padding-top: calc(var(--ed-section-space) + 16px);
}

.ed-about-grid,
.ed-routine-grid,
.ed-faq-grid,
.ed-pillar-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.ed-about-media {
  position: relative;
  min-height: 580px;
}

.ed-about-main-image {
  position: absolute;
  inset: 0 21% 8% 0;
  overflow: hidden;
  border-radius: 32px 160px 32px 32px;
  box-shadow: var(--ed-shadow);
}

.ed-about-main-image img,
.ed-about-inset img,
.ed-routine-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ed-about-main-image img {
  object-position: center 52%;
}

.ed-about-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 47%;
  overflow: hidden;
  border: 10px solid var(--ed-white);
  border-radius: 22px;
  background: var(--ed-cloud);
  box-shadow: var(--ed-shadow-soft);
}

.ed-years-card {
  position: absolute;
  top: 10%;
  right: 1%;
  display: grid;
  width: 148px;
  min-height: 148px;
  place-content: center;
  padding: 17px;
  border-radius: 50%;
  color: var(--ed-white);
  background: var(--ed-red);
  box-shadow: 0 18px 40px rgba(217,67,82,.28);
  text-align: center;
}

.ed-years-card strong {
  font-size: 29px;
  line-height: 1;
}

.ed-years-card span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ed-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 22px;
  margin: 28px 0 31px;
  padding: 0;
  list-style: none;
}

.ed-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ed-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.ed-check-grid svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ed-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

/* Service cards */
.ed-services {
  background: var(--ed-mist);
}

.ed-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ed-service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 24px;
  background: var(--ed-white);
  box-shadow: 0 12px 30px rgba(7,28,44,.05);
  transition: transform .35s var(--ed-ease), box-shadow .35s var(--ed-ease), border-color .35s ease;
}

.ed-service-card:hover {
  border-color: rgba(8,120,183,.3);
  box-shadow: var(--ed-shadow-soft);
  transform: translateY(-8px);
}

.ed-service-image {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: var(--ed-cloud);
}

.ed-service-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(7,28,44,.16), transparent);
  content: "";
}

.ed-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ed-ease);
}

.ed-service-card:hover .ed-service-image img {
  transform: scale(1.055);
}

.ed-service-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 25px 27px;
}

.ed-service-icon {
  position: absolute;
  top: -24px;
  right: 23px;
  box-shadow: 0 9px 22px rgba(8,120,183,.25);
}

.ed-service-content h3 {
  margin: 4px 0 13px;
  font-size: 22px;
}

.ed-service-content h3 a {
  text-decoration: none;
}

.ed-service-content p {
  flex: 1;
  margin: 0 0 21px;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Stats */
.ed-stats {
  position: relative;
  overflow: hidden;
  padding-block: 60px;
  color: var(--ed-white);
  background: var(--ed-blue-dark);
}

.ed-stats::before {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 26px 26px;
  content: "";
}

.ed-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ed-stat {
  display: grid;
  min-height: 115px;
  place-content: center;
  padding: 14px 30px;
  border-right: 1px solid rgba(255,255,255,.2);
  text-align: center;
}

.ed-stat:last-child {
  border-right: 0;
}

.ed-stat strong {
  color: var(--ed-white);
  font-size: clamp(35px, 4vw, 52px);
  letter-spacing: -.04em;
  line-height: 1;
}

.ed-stat span {
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Routine-care section */
.ed-routine {
  overflow: hidden;
}

.ed-routine-media {
  position: relative;
  min-height: 560px;
}

.ed-routine-media > img {
  position: absolute;
  inset: 0;
  border-radius: 30px 150px 30px 30px;
  box-shadow: var(--ed-shadow);
}

.ed-routine-card {
  position: absolute;
  right: -3%;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--ed-line);
  border-radius: 18px;
  background: var(--ed-white);
  box-shadow: var(--ed-shadow);
}

.ed-routine-card small,
.ed-routine-card strong {
  display: block;
}

.ed-routine-card small {
  color: var(--ed-muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.ed-routine-card strong {
  color: var(--ed-navy);
  font-size: 15px;
}

.ed-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.ed-feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.ed-feature-list > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--ed-blue-dark);
  background: var(--ed-cloud);
}

.ed-feature-list p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ed-feature-list strong {
  color: var(--ed-navy);
  font-size: 16px;
}

/* Before/after comparison */
.ed-comparison-section {
  overflow: hidden;
  background: var(--ed-navy);
}

.ed-comparison-section .ed-section-heading h2 {
  color: var(--ed-white);
}

.ed-comparison-section .ed-section-heading > p:last-child {
  color: rgba(255,255,255,.62);
}

.ed-comparison {
  --ed-comparison: 50%;
  position: relative;
  width: min(100%, 1080px);
  aspect-ratio: 3.3 / 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #122f40;
  box-shadow: 0 38px 80px rgba(0,0,0,.3);
}

.ed-comparison-before,
.ed-comparison-after,
.ed-comparison-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ed-comparison-after {
  width: var(--ed-comparison);
  overflow: hidden;
}

.ed-comparison-after img {
  width: calc(100vw - 40px);
  max-width: 1080px;
}

.ed-comparison-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--ed-comparison);
  width: 3px;
  background: var(--ed-white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ed-comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ed-white);
  border-radius: 50%;
  background: var(--ed-blue);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transform: translate(-50%, -50%);
}

.ed-comparison-handle span::before,
.ed-comparison-handle span::after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.ed-comparison-handle span::before {
  left: 10px;
  border-right: 7px solid var(--ed-white);
}

.ed-comparison-handle span::after {
  right: 10px;
  border-left: 7px solid var(--ed-white);
}

.ed-comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ed-comparison-label {
  position: absolute;
  z-index: 3;
  top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ed-white);
  background: rgba(7,28,44,.68);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ed-before-label { left: 22px; }
.ed-after-label { right: 22px; }

/* Dentists */
.ed-doctors {
  background: var(--ed-mist);
}

.ed-doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.ed-doctor-card {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(230px, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 28px;
  background: var(--ed-white);
  box-shadow: 0 14px 36px rgba(7,28,44,.06);
  transition: transform .35s var(--ed-ease), box-shadow .35s var(--ed-ease);
}

.ed-doctor-card:hover {
  box-shadow: var(--ed-shadow-soft);
  transform: translateY(-5px);
}

.ed-doctor-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--ed-cloud);
}

.ed-doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s var(--ed-ease);
}

.ed-doctor-card:hover .ed-doctor-image img {
  transform: scale(1.035);
}

.ed-doctor-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.ed-doctor-role {
  margin: 0 0 8px;
  color: var(--ed-blue-dark);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.ed-doctor-content h3 {
  margin: 0 0 14px;
  font-size: 27px;
}

.ed-doctor-content > p:not(.ed-doctor-role) {
  margin: 0 0 24px;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* CTA */
.ed-cta-band {
  padding-block: 54px;
  color: var(--ed-white);
  background: linear-gradient(110deg, var(--ed-blue-dark), var(--ed-blue));
}

.ed-cta-inner,
.ed-final-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.ed-cta-inner h2,
.ed-final-grid h2 {
  margin: 0;
  color: var(--ed-white);
  font-size: clamp(32px, 4vw, 51px);
}

/* Posts */
.ed-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ed-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 23px;
  background: var(--ed-white);
  box-shadow: 0 10px 30px rgba(7,28,44,.05);
  transition: transform .3s var(--ed-ease), box-shadow .3s var(--ed-ease);
}

.ed-post-card:hover {
  box-shadow: var(--ed-shadow-soft);
  transform: translateY(-5px);
}

.ed-post-image {
  display: block;
  height: 235px;
  overflow: hidden;
  background: var(--ed-cloud);
}

.ed-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ed-ease);
}

.ed-post-card:hover .ed-post-image img {
  transform: scale(1.045);
}

.ed-post-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.ed-post-date {
  margin: 0 0 9px;
  color: var(--ed-blue-dark);
  font-size: 10px !important;
  font-weight: 700;
  line-height: 1.3 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ed-post-content h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.ed-post-content h3 a {
  color: var(--ed-navy);
  text-decoration: none;
}

.ed-post-content > p:not(.ed-post-date) {
  flex: 1;
  margin: 0 0 20px;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* FAQ */
.ed-faq {
  background: var(--ed-cloud);
}

.ed-faq-grid {
  align-items: start;
}

.ed-faq-intro {
  position: sticky;
  top: 130px;
}

.ed-faq-intro .ed-button {
  margin-top: 16px;
}

.ed-accordion {
  display: grid;
  gap: 13px;
}

.ed-accordion details {
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 18px;
  background: var(--ed-white);
  box-shadow: 0 8px 22px rgba(7,28,44,.04);
}

.ed-accordion summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--ed-navy);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.ed-accordion summary::-webkit-details-marker { display: none; }

.ed-accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ed-cloud);
}

.ed-accordion summary span::before,
.ed-accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 99px;
  background: var(--ed-blue-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.ed-accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ed-accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ed-accordion details > div {
  padding: 0 24px 22px;
}

.ed-accordion details p {
  margin: 0;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Final appointment */
.ed-final-appointment {
  position: relative;
  overflow: hidden;
  padding-block: 86px;
  color: var(--ed-white);
  background:
    linear-gradient(90deg, rgba(7,28,44,.95), rgba(7,28,44,.83)),
    var(--ed-dentor-final-bg, none) center 42% / cover no-repeat;
}

.ed-final-appointment::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 60px solid rgba(123,201,237,.13);
  border-radius: 50%;
  content: "";
}

.ed-final-grid {
  position: relative;
  z-index: 2;
}

.ed-final-grid > div:first-child {
  max-width: 700px;
}

.ed-final-grid p:not(.ed-eyebrow) {
  margin: 18px 0 0;
  color: rgba(255,255,255,.69);
}

.ed-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: flex-end;
}

.ed-mobile-actions {
  display: none;
}

/* Four-pillar service page template */
.ed-pillar-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 125px);
  color: var(--ed-white);
  background: var(--ed-navy);
}

.ed-pillar-hero::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 31px 31px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.ed-pillar-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
}

.ed-pillar-copy h1 {
  margin: 0 0 22px;
  color: var(--ed-white);
  font-size: clamp(48px, 6.2vw, 80px);
  line-height: 1;
}

.ed-pillar-copy > p {
  max-width: 700px;
  color: rgba(255,255,255,.7);
}

.ed-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 23px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 600;
}

.ed-breadcrumbs a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.ed-breadcrumbs span[aria-hidden] {
  opacity: .45;
}

.ed-pillar-hero-media {
  position: relative;
  min-height: 410px;
}

.ed-pillar-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px 140px 30px 30px;
  object-fit: cover;
  box-shadow: 0 34px 70px rgba(0,0,0,.3);
}

.ed-pillar-icon-float {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 9px solid var(--ed-navy);
  border-radius: 50%;
  color: var(--ed-white);
  background: var(--ed-blue);
  box-shadow: 0 15px 36px rgba(8,120,183,.3);
}

.ed-pillar-icon-float svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.ed-pillar-tabs {
  position: relative;
  z-index: 4;
  margin-top: -31px;
}

.ed-pillar-tabs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--ed-line);
  border-radius: 18px;
  background: var(--ed-white);
  box-shadow: var(--ed-shadow);
}

.ed-pillar-tabs a {
  flex: 1 1 160px;
  padding: 12px 16px;
  border-radius: 11px;
  color: var(--ed-ink);
  background: var(--ed-mist);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.ed-pillar-tabs a:hover,
.ed-pillar-tabs a:focus-visible {
  color: var(--ed-white);
  background: var(--ed-blue);
}

.ed-procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ed-procedure-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ed-line);
  border-radius: 21px;
  background: var(--ed-white);
  box-shadow: 0 10px 28px rgba(7,28,44,.05);
  transition: transform .3s var(--ed-ease), box-shadow .3s var(--ed-ease), border-color .3s ease;
}

.ed-procedure-card:hover {
  border-color: rgba(8,120,183,.3);
  box-shadow: var(--ed-shadow-soft);
  transform: translateY(-5px);
}

.ed-procedure-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 13px;
  color: var(--ed-blue-dark);
  background: var(--ed-cloud);
  font-size: 12px;
  font-weight: 700;
}

.ed-procedure-card h3 {
  margin: 0 0 11px;
  font-size: 21px;
}

.ed-procedure-card p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--ed-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ed-pillar-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .55fr);
  gap: 58px;
  align-items: start;
}

.ed-pillar-rich-copy > section {
  scroll-margin-top: 135px;
  margin-bottom: 50px;
}

.ed-pillar-rich-copy > section:last-child {
  margin-bottom: 0;
}

.ed-pillar-rich-copy h2 {
  margin: 0 0 17px;
  font-size: clamp(30px, 3.2vw, 43px);
}

.ed-pillar-rich-copy p {
  color: var(--ed-muted);
}

.ed-pillar-aside {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 18px;
}

.ed-aside-card {
  padding: 26px;
  border: 1px solid var(--ed-line);
  border-radius: 20px;
  background: var(--ed-white);
  box-shadow: 0 10px 28px rgba(7,28,44,.06);
}

.ed-aside-card h3 {
  margin: 0 0 16px;
  font-size: 19px;
}

.ed-aside-links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ed-aside-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ed-line);
  color: var(--ed-ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ed-aside-links li:last-child a {
  border-bottom: 0;
}

.ed-aside-links a::after {
  color: var(--ed-blue);
  content: "→";
}

.ed-aside-appointment {
  color: var(--ed-white);
  background: linear-gradient(145deg, var(--ed-blue-dark), var(--ed-blue));
}

.ed-aside-appointment h3,
.ed-aside-appointment p {
  color: var(--ed-white);
}

.ed-aside-appointment p {
  opacity: .76;
  font-size: 13px;
  line-height: 1.6;
}

.ed-aside-appointment .ed-button {
  width: 100%;
  margin-top: 8px;
}

/* Existing site footer, lightly harmonized */
.ed-dentor-theme .site-footer-wrap,
.ed-dentor-theme .site-footer-row-container-inner {
  background: var(--ed-navy) !important;
}

.ed-dentor-theme .site-footer-wrap,
.ed-dentor-theme .site-footer-wrap p,
.ed-dentor-theme .site-footer-wrap li,
.ed-dentor-theme .site-footer-wrap a {
  color: rgba(255,255,255,.76);
}

.ed-dentor-theme .site-footer-wrap h2,
.ed-dentor-theme .site-footer-wrap h3,
.ed-dentor-theme .site-footer-wrap h4,
.ed-dentor-theme .site-footer-wrap h5 {
  color: var(--ed-white);
}

/* Reveal animations. Elements remain visible without JavaScript. */
.js .ed-dentor-theme [data-reveal] {
  opacity: 0;
  transition: opacity .72s var(--ed-ease), transform .72s var(--ed-ease);
}

.js .ed-dentor-theme [data-reveal="up"] { transform: translate3d(0, 30px, 0); }
.js .ed-dentor-theme [data-reveal="left"] { transform: translate3d(34px, 0, 0); }
.js .ed-dentor-theme [data-reveal="right"] { transform: translate3d(-34px, 0, 0); }
.js .ed-dentor-theme [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 1180px) {
  .ed-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-service-image { height: 280px; }
  .ed-doctor-card { grid-template-columns: minmax(190px, .78fr) minmax(0, 1.22fr); }
  .ed-dentor-theme .main-navigation .primary-menu-container > ul > li > a { font-size: 12px; }
  .ed-dentor-theme .main-navigation .primary-menu-container > ul > li.ed-menu-cta > a { padding-inline: 14px !important; }
}

@media (max-width: 1024px) {
  :root { --ed-section-space: clamp(68px, 8vw, 96px); }
  .ed-hero { min-height: auto; }
  .ed-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 76px 115px;
  }
  .ed-hero-copy { max-width: 760px; }
  .ed-hero-visual { width: min(100%, 650px); min-height: 610px; margin-inline: auto; }
  .ed-hero-image-wrap { inset: 0 7%; }
  .ed-float-call { left: 0; }
  .ed-float-history { right: 0; }
  .ed-about-grid,
  .ed-routine-grid,
  .ed-faq-grid,
  .ed-pillar-intro-grid { gap: 55px; }
  .ed-about-media { min-height: 510px; }
  .ed-doctor-grid { grid-template-columns: 1fr; }
  .ed-doctor-card { min-height: 420px; }
  .ed-pillar-hero-grid { grid-template-columns: 1fr; }
  .ed-pillar-hero-media { width: min(100%, 650px); min-height: 420px; }
  .ed-procedure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-pillar-detail-grid { grid-template-columns: minmax(0, 1fr) 290px; gap: 38px; }
}

@media (max-width: 820px) {
  .ed-heading-row,
  .ed-about-grid,
  .ed-routine-grid,
  .ed-faq-grid,
  .ed-pillar-intro-grid,
  .ed-pillar-detail-grid {
    grid-template-columns: 1fr;
  }
  .ed-heading-row { gap: 10px; }
  .ed-heading-row > p { max-width: 680px; }
  .ed-contact-grid { grid-template-columns: 1fr; }
  .ed-contact-card { min-height: 94px; border-right: 0; border-bottom: 1px solid var(--ed-line); }
  .ed-contact-card:last-child { border-bottom: 0; }
  .ed-contact-strip { margin-top: -38px; }
  .ed-about-media { order: 2; }
  .ed-about-copy { order: 1; }
  .ed-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-stat:nth-child(2) { border-right: 0; }
  .ed-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .ed-routine-media { min-height: 480px; }
  .ed-comparison { aspect-ratio: 2 / 1; }
  .ed-post-grid { grid-template-columns: 1fr; }
  .ed-post-card { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); }
  .ed-post-image { height: 100%; min-height: 270px; }
  .ed-faq-intro,
  .ed-pillar-aside { position: static; }
  .ed-cta-inner,
  .ed-final-grid { align-items: flex-start; flex-direction: column; }
  .ed-final-actions { justify-content: flex-start; }
  .ed-pillar-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .ed-shell { width: min(calc(100% - 28px), var(--ed-shell)); }
  .ed-dentor-theme .site-header-row-container-inner > .site-container,
  .ed-dentor-theme .site-header-row-layout-fullwidth > .site-container { width: min(calc(100% - 28px), var(--ed-shell)); }
  .ed-dentor-theme .site-branding a.brand img,
  .ed-dentor-theme .site-branding .custom-logo { max-width: 205px; max-height: 50px; }
  .ed-hero-grid { padding-block: 58px 100px; }
  .ed-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .ed-hero-lede { font-size: 16px !important; }
  .ed-button-row { align-items: stretch; flex-direction: column; }
  .ed-button-row .ed-button { width: 100%; }
  .ed-hero-trust { align-items: flex-start; }
  .ed-hero-visual { min-height: 470px; }
  .ed-hero-image-wrap { inset: 0; border-radius: 32% 32% 22px 22px; }
  .ed-float-call { left: 8px; bottom: 13px; }
  .ed-float-history { top: 18px; right: 8px; }
  .ed-float-card { padding: 12px 13px; }
  .ed-contact-card { padding: 20px; }
  .ed-section-heading h2,
  .ed-about-copy h2,
  .ed-routine-copy h2,
  .ed-faq-intro h2,
  .ed-pillar-section h2 { font-size: clamp(33px, 10vw, 46px); }
  .ed-about-media { min-height: 430px; }
  .ed-about-main-image { inset: 0 13% 8% 0; border-radius: 24px 100px 24px 24px; }
  .ed-about-inset { width: 44%; height: 42%; border-width: 7px; }
  .ed-years-card { top: 6%; width: 115px; min-height: 115px; }
  .ed-years-card strong { font-size: 24px; }
  .ed-check-grid { grid-template-columns: 1fr; }
  .ed-service-grid { grid-template-columns: 1fr; }
  .ed-service-image { height: 260px; }
  .ed-routine-media { min-height: 390px; }
  .ed-routine-media > img { border-radius: 24px 90px 24px 24px; }
  .ed-routine-card { right: 8px; bottom: 8px; }
  .ed-comparison { aspect-ratio: 1.55 / 1; border-radius: 20px; }
  .ed-comparison-after img { width: calc(100vw - 28px); }
  .ed-comparison-label { top: 12px; }
  .ed-before-label { left: 12px; }
  .ed-after-label { right: 12px; }
  .ed-doctor-card { min-height: 0; grid-template-columns: 1fr; }
  .ed-doctor-image { min-height: 390px; }
  .ed-doctor-content { padding: 28px 24px; }
  .ed-post-card { display: flex; }
  .ed-post-image { height: 230px; min-height: 0; }
  .ed-cta-inner h2,
  .ed-final-grid h2 { font-size: 35px; }
  .ed-final-actions { width: 100%; flex-direction: column; }
  .ed-final-actions .ed-button { width: 100%; }
  .ed-mobile-actions {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 16px;
    background: var(--ed-navy);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
  }
  .ed-mobile-actions a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ed-white) !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }
  .ed-mobile-actions a + a { border-left: 1px solid rgba(255,255,255,.19); background: var(--ed-blue); }
  .ed-pillar-hero { padding-block: 62px 90px; }
  .ed-pillar-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .ed-pillar-hero-media { min-height: 350px; }
  .ed-pillar-hero-media img { border-radius: 25px 90px 25px 25px; }
  .ed-pillar-icon-float { right: -5px; width: 74px; height: 74px; border-width: 7px; }
  .ed-procedure-grid { grid-template-columns: 1fr; }
  .ed-pillar-aside { grid-template-columns: 1fr; }
  .ed-pillar-tabs-inner { flex-direction: column; }
  .ed-pillar-tabs a { flex-basis: auto; }
  .ed-dentor-theme .site-footer-wrap { padding-bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .ed-dentor-theme [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
