:root {
  --d2o-teal: #27afbf;
  --d2o-teal-bright: #37c8d1;
  --d2o-teal-soft: #d9f6f8;
  --d2o-ink: #35383e;
  --d2o-charcoal: #30343a;
  --d2o-mid: #69727d;
  --d2o-line: #dce8ea;
  --d2o-paper: #ffffff;
  --d2o-mist: #f7fbfc;
  --d2o-shadow: 0 22px 45px rgba(53, 56, 62, 0.16);
  --font-display: "Century Gothic", "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --container: 1180px;
  --section: clamp(72px, 8vw, 126px);
  --motion-fast: 180ms cubic-bezier(0.2, 0.7, 0.3, 1);
  --motion-soft: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--d2o-ink);
  background: var(--d2o-paper);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

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

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

a,
button,
input[type="submit"],
.clickable {
  cursor: pointer;
}

a:hover,
a:focus-visible {
  color: var(--d2o-teal);
}

:focus-visible {
  outline: 2px solid var(--d2o-teal);
  outline-offset: 4px;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.consult-strip {
  position: relative;
  z-index: 30;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--d2o-teal);
  color: var(--d2o-ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.consult-strip a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast);
}

.consult-strip a:hover,
.consult-strip a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.site-header {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 25;
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
  color: var(--header-color, #fff);
  background: var(--header-bg, rgba(48, 52, 58, 0.78));
}

.header-left,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
}

.header-actions {
  justify-content: flex-end;
}

.brand-logo {
  width: 160px;
}

.menu-trigger,
.header-phone,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.menu-trigger,
.header-phone {
  transition: color var(--motion-fast), transform var(--motion-fast);
}

.menu-trigger:hover,
.menu-trigger:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--d2o-teal-bright);
  transform: translateY(-1px);
}

.menu-trigger {
  gap: 8px;
  text-transform: uppercase;
}

.menu-trigger::before {
  content: "";
  width: 13px;
  height: 10px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
}

.outline-link {
  border: 1px solid currentColor;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: color var(--motion-fast), background-color var(--motion-fast), transform var(--motion-fast);
}

.outline-link:hover,
.outline-link:focus-visible {
  color: var(--d2o-ink);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 40px;
  color: #fff;
  background: rgba(48, 52, 58, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-panel:target {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel__close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-panel nav {
  display: grid;
  gap: 18px;
  text-align: center;
}

.menu-panel nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(480px, 63vw, 720px);
  display: grid;
  place-items: center;
  padding: 160px 24px 80px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-color: #7d8385;
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, rgba(15, 20, 24, 0.48));
}

.hero--water {
  min-height: 445px;
  background-image: linear-gradient(rgba(39, 175, 191, 0.24), rgba(39, 175, 191, 0.24)), url("reference/water-background.jpg");
}

.hero--marble {
  color: var(--d2o-ink);
  background-image: url("reference/marble-404.jpg");
}

.hero--marble::before {
  background: rgba(255, 255, 255, 0.18);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
  text-transform: uppercase;
}

.hero p {
  max-width: 740px;
  margin: 24px auto 0;
  color: inherit;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 18px 38px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}

.btn::after {
  content: "→";
  margin-left: 10px;
}

.btn--teal {
  color: #fff;
  background: var(--d2o-teal-bright);
}

.btn--outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.btn--dark {
  color: #fff;
  background: var(--d2o-mid);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.btn--teal:hover,
.btn--teal:focus-visible {
  color: #fff;
  background: #1fa0af;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--d2o-ink);
  color: #fff;
  background: var(--d2o-ink);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  color: #fff;
  background: var(--d2o-charcoal);
}

.section {
  padding: var(--section) 24px;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.intro {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.intro .eyebrow {
  color: var(--d2o-mid);
}

.section-title {
  margin: 0;
  color: var(--d2o-teal);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.intro p,
.lead {
  color: var(--d2o-ink);
  font-size: 17px;
  line-height: 1.85;
}

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

.service-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #333;
}

.service-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.62);
  transition: transform 450ms ease, filter 250ms ease;
}

.service-tile:hover img,
.service-tile:focus-within img {
  filter: brightness(0.78);
  transform: scale(1.045);
}

.service-tile__label {
  position: absolute;
  inset: auto 30px 30px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.feature-panel img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--d2o-shadow);
}

.copy-card {
  margin-left: -110px;
  padding: clamp(34px, 4vw, 64px);
  background: #fff;
  box-shadow: var(--d2o-shadow);
}

.copy-card h2,
.article-body h2,
.article-body h3 {
  margin: 0 0 20px;
  color: var(--d2o-teal);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.copy-card p {
  margin: 0 0 28px;
}

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

.post-card {
  display: grid;
  background: #fff;
}

.post-card__image {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: var(--d2o-mist);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 450ms ease, filter 220ms ease;
}

.post-card:hover .post-card__image img,
.post-card:focus-within .post-card__image img {
  filter: brightness(0.9);
  transform: scale(1.04);
}

.post-card__body {
  padding: 22px 0 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--d2o-teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 12px 0 10px;
  color: var(--d2o-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.post-card p {
  margin: 0;
  color: var(--d2o-ink);
  font-size: 15px;
  line-height: 1.75;
}

.read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--d2o-teal);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.read-more:hover,
.read-more:focus-visible {
  text-decoration: underline;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 58px;
}

.page-link {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--d2o-line);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-link[aria-current="page"],
.page-link:hover,
.page-link:focus-visible {
  border-color: var(--d2o-teal);
  color: #fff;
  background: var(--d2o-teal);
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 820px);
  margin: 36px auto 0;
  background: rgba(255, 255, 255, 0.92);
}

.search-box label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-box input {
  min-height: 64px;
  border: 1px solid transparent;
  padding: 0 24px;
  color: var(--d2o-ink);
  background: transparent;
  font: 500 18px/1 var(--font-body);
  transition: border-color var(--motion-fast), background-color var(--motion-fast), box-shadow var(--motion-fast);
}

.search-box input:focus {
  border-color: var(--d2o-teal);
  outline: 0;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--d2o-teal);
}

.search-box button {
  min-width: 160px;
  border: 0;
  color: #fff;
  background: var(--d2o-teal);
  font: 700 14px/1 var(--font-body);
  text-transform: uppercase;
  transition: background-color var(--motion-fast), box-shadow var(--motion-fast);
}

.search-box button:hover,
.search-box button:focus-visible {
  background: #1fa0af;
  box-shadow: inset 0 -3px 0 rgba(48, 52, 58, 0.28);
}

.search-status {
  margin: 0 0 36px;
  color: var(--d2o-mid);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.empty-state {
  padding: clamp(52px, 7vw, 90px);
  text-align: center;
  background: var(--d2o-mist) url("reference/marble-404.jpg") center / cover no-repeat;
}

.empty-state h2 {
  margin: 0 0 16px;
  color: var(--d2o-ink);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  text-transform: uppercase;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.article-body {
  font-size: 18px;
}

.article-body > p:first-of-type::first-letter {
  float: left;
  margin: 8px 12px 0 0;
  color: var(--d2o-teal);
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 0.8;
}

.article-body p,
.article-body li {
  color: var(--d2o-ink);
}

.article-body h2 {
  margin-top: 56px;
}

.article-body h3 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 38px);
}

.article-body a {
  color: var(--d2o-teal);
  font-weight: 700;
}

.article-body a:hover,
.article-body a:focus-visible {
  text-decoration: underline;
}

.article-table {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.article-table th,
.article-table td {
  border-bottom: 1px solid var(--d2o-line);
  padding: 18px 0;
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--d2o-teal);
  font-size: 13px;
  text-transform: uppercase;
}

.toc {
  position: sticky;
  top: 24px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--d2o-shadow);
}

.toc h2 {
  margin: 0 0 20px;
  color: var(--d2o-teal);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 14px;
}

.toc a {
  color: var(--d2o-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--d2o-teal);
  text-decoration: underline;
}

.faq {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid var(--d2o-line);
}

.faq details {
  border-bottom: 1px solid var(--d2o-line);
  padding: 20px 0;
}

.faq summary {
  color: var(--d2o-ink);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.short-rule {
  width: 120px;
  height: 2px;
  margin: 42px 0 28px;
  background: var(--d2o-ink);
}

.site-footer {
  padding: 74px 24px 38px;
  color: #fff;
  background: var(--d2o-charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.95fr;
  gap: clamp(34px, 7vw, 100px);
}

.footer-logo {
  width: 154px;
  margin-bottom: 26px;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer a {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast), transform var(--motion-fast), background-color var(--motion-fast), border-color var(--motion-fast);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--d2o-teal-bright);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  width: max-content;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--d2o-teal-bright);
  color: #fff;
  background: var(--d2o-teal);
  text-decoration: none;
  transform: translateY(-2px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 64px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.section--mist {
  background: var(--d2o-mist);
}

.split-water {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0 48%, rgba(255,255,255,0) 48%),
    url("reference/water-background.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .header-left {
    order: 2;
    justify-content: flex-end;
  }

  .brand {
    order: 1;
  }

  .header-phone,
  .header-actions {
    display: none;
  }

  .brand-logo {
    width: 132px;
  }

  .hero {
    min-height: 580px;
    padding-top: 146px;
  }

  .feature-panel,
  .single-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copy-card {
    margin: -70px 22px 0;
  }

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

  .toc {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  .consult-strip {
    min-height: 28px;
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
  }

  .site-header {
    top: 28px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 118px;
  }

  .menu-trigger {
    font-size: 13px;
  }

  .hero {
    min-height: 560px;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .section {
    padding-inline: 18px;
  }

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

  .service-tile {
    min-height: 310px;
  }

  .feature-panel img {
    min-height: 390px;
  }

  .copy-card {
    margin: -48px 0 0;
    padding: 30px 24px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .search-box button {
    min-height: 56px;
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 58px;
  }

  .article-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .footer-bottom {
    justify-items: start;
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body.elementor-page,
body.elementor-page main {
  color: var(--d2o-ink);
  font-family: var(--font-body);
}

.elementor-location-header,
.elementor-location-footer,
.elementor-location-archive,
.elementor-location-single {
  font-family: var(--font-body);
}

.d2o-consult-strip,
.d2o-consult-strip > .elementor-container,
.d2o-consult-strip .elementor-column,
.d2o-consult-strip .elementor-widget-wrap {
  height: 30px;
  min-height: 30px;
}

.d2o-consult-strip {
  position: relative;
  z-index: 30;
  background: var(--d2o-teal);
}

.d2o-consult-strip .elementor-widget-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.d2o-consult-strip .elementor-widget-button,
.d2o-consult-strip .elementor-button-wrapper {
  display: flex;
  width: auto;
  height: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.d2o-consult-strip .elementor-button {
  display: inline-flex !important;
  width: auto;
  height: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--d2o-ink);
  background: transparent;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast);
}

.d2o-consult-strip .elementor-button:hover,
.d2o-consult-strip .elementor-button:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.site-header.elementor-section {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 25;
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 86px;
  grid-template-columns: none !important;
  padding: 0 !important;
  color: var(--header-color, #fff);
  background: var(--header-bg, rgba(48, 52, 58, 0.78));
}

.site-header > .elementor-container {
  display: grid !important;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: none !important;
  padding: 0 clamp(24px, 5vw, 64px);
  box-sizing: border-box;
}

.site-header > .elementor-container > .elementor-column {
  width: auto !important;
  min-height: 86px;
  display: flex;
  align-items: center;
}

.site-header .elementor-widget-wrap {
  width: 100%;
  align-items: center;
  padding: 0 !important;
}

.site-header .elementor-widget {
  margin: 0;
  width: auto;
}

.site-header .header-left,
.site-header > .elementor-container > .elementor-column:nth-child(1) {
  justify-self: start;
}

.site-header .brand,
.site-header > .elementor-container > .elementor-column:nth-child(2) {
  justify-self: center;
}

.site-header .header-actions,
.site-header > .elementor-container > .elementor-column:nth-child(3) {
  justify-self: end;
}

.site-header .header-left > .elementor-widget-wrap,
.site-header .header-actions > .elementor-widget-wrap,
.site-header > .elementor-container > .elementor-column:nth-child(1) > .elementor-widget-wrap,
.site-header > .elementor-container > .elementor-column:nth-child(3) > .elementor-widget-wrap {
  display: flex !important;
  gap: clamp(16px, 2vw, 34px);
  flex-wrap: nowrap;
}

.site-header .brand > .elementor-widget-wrap,
.site-header > .elementor-container > .elementor-column:nth-child(2) > .elementor-widget-wrap {
  display: flex !important;
  justify-content: center;
}

.site-header .d2o-logo-widget {
  width: auto;
}

.site-header .d2o-menu-panel-widget {
  display: contents;
}

.site-header .elementor-widget-image img,
.site-header .custom-logo {
  width: 160px;
  max-width: 160px;
}

.d2o-menu-trigger .elementor-button,
.d2o-header-phone .elementor-button,
.d2o-outline-link .elementor-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.d2o-menu-trigger .elementor-button,
.d2o-header-phone .elementor-button {
  border: 0;
  padding: 0;
  transition: color var(--motion-fast), transform var(--motion-fast);
}

.d2o-menu-trigger .elementor-button::before {
  content: "";
  width: 13px;
  height: 10px;
  margin-right: 8px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
}

.d2o-menu-trigger .elementor-button:hover,
.d2o-menu-trigger .elementor-button:focus-visible,
.d2o-header-phone .elementor-button:hover,
.d2o-header-phone .elementor-button:focus-visible {
  color: var(--d2o-teal-bright);
  transform: translateY(-1px);
}

.d2o-outline-link .elementor-button {
  border: 1px solid currentColor;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: color var(--motion-fast), background-color var(--motion-fast), transform var(--motion-fast);
}

.d2o-outline-link .elementor-button:hover,
.d2o-outline-link .elementor-button:focus-visible {
  color: var(--d2o-ink);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.d2o-hero.elementor-section {
  min-height: clamp(480px, 63vw, 720px);
  display: grid;
  place-items: center;
  padding: 160px 24px 80px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-color: #7d8385;
  background-image: var(--d2o-hero-exterior);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.d2o-hero.elementor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 24, 0.48);
}

.d2o-hero > .elementor-container,
.d2o-hero .elementor-column,
.d2o-hero .elementor-widget-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.d2o-hero .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important;
}

.d2o-hero--water.elementor-section {
  min-height: 445px;
  background-image: linear-gradient(rgba(39, 175, 191, 0.24), rgba(39, 175, 191, 0.24)), var(--d2o-water-image);
}

.d2o-hero--marble.elementor-section {
  color: var(--d2o-ink);
  background-image: var(--d2o-marble-image);
}

.d2o-hero--marble.elementor-section::before {
  background: rgba(255, 255, 255, 0.18);
}

.d2o-single-hero.elementor-section {
  background-image: linear-gradient(rgba(25,29,34,.56), rgba(25,29,34,.56)), var(--d2o-services-hero);
}

.d2o-eyebrow .elementor-heading-title,
.d2o-hero .elementor-widget-heading:first-child .elementor-heading-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.d2o-hero .d2o-eyebrow .elementor-heading-title,
.d2o-hero .elementor-widget-heading:first-child .elementor-heading-title {
  max-width: 740px;
  margin: 24px auto 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.d2o-hero-title .elementor-heading-title,
.d2o-hero .elementor-widget-heading:nth-child(2) .elementor-heading-title,
.d2o-hero .elementor-widget-theme-post-title .elementor-heading-title,
.d2o-hero .elementor-widget-d2o-post-title .elementor-heading-title {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.d2o-hero .elementor-widget-text-editor {
  max-width: 740px;
  margin: 24px auto 0;
  color: inherit;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.d2o-hero .d2o-button {
  margin-top: 34px;
}

.d2o-button .elementor-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 18px 38px;
  color: #fff;
  background: var(--d2o-teal-bright);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}

.d2o-button .elementor-button::after {
  content: "→";
  margin-left: 10px;
}

.d2o-button .elementor-button:hover,
.d2o-button .elementor-button:focus-visible {
  color: #fff;
  background: #1fa0af;
  transform: translateY(-3px);
}

.d2o-button--dark .elementor-button {
  background: var(--d2o-mid);
}

.d2o-button--dark .elementor-button:hover,
.d2o-button--dark .elementor-button:focus-visible {
  background: var(--d2o-charcoal);
}

.d2o-button--outline .elementor-button {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.d2o-button--outline .elementor-button:hover,
.d2o-button--outline .elementor-button:focus-visible {
  border-color: var(--d2o-ink);
  color: #fff;
  background: var(--d2o-ink);
}

.d2o-section.elementor-section {
  padding: var(--section) 24px;
}

.d2o-section .elementor-container,
.d2o-section .container {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
}

.d2o-section .elementor-widget-wrap {
  padding: 0 !important;
}

.d2o-section--mist.elementor-section {
  background: var(--d2o-mist);
}

.d2o-section-head .elementor-heading-title {
  color: var(--d2o-teal);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.d2o-section-copy {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.d2o-search-section .elementor-search-form {
  display: block;
  width: min(100%, 820px);
  margin: 36px auto 0;
  background: transparent;
}

.d2o-search-section .elementor-search-form__container {
  display: grid !important;
  width: 100%;
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.d2o-search-section .elementor-search-form__input {
  width: 100%;
  min-height: 64px;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  padding: 0 24px !important;
  color: var(--d2o-ink) !important;
  background: transparent !important;
  font: 500 18px/1 var(--font-body) !important;
}

.d2o-search-section .elementor-search-form__submit {
  width: 160px !important;
  min-width: 160px !important;
  min-height: 64px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: var(--d2o-teal) !important;
  font: 700 14px/1 var(--font-body) !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background-color var(--motion-fast), box-shadow var(--motion-fast);
}

.d2o-search-section .elementor-search-form__submit svg,
.d2o-search-section .elementor-search-form__submit i {
  display: none !important;
}

.d2o-search-section .elementor-search-form__submit:hover,
.d2o-search-section .elementor-search-form__submit:focus-visible {
  background: #1fa0af;
  box-shadow: inset 0 -3px 0 rgba(48, 52, 58, 0.28);
}

.d2o-article-content .elementor-widget-theme-post-content {
  width: min(100%, 780px);
}

.d2o-article-content .elementor-widget-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.d2o-article-content .elementor-widget-theme-post-content,
.d2o-article-content .elementor-widget-d2o-article-aside {
  margin: 0;
}

.d2o-article-content .elementor-widget-theme-post-content .elementor-widget-container {
  font-size: 18px;
}

.d2o-article-content .elementor-widget-theme-post-content h2,
.d2o-article-content .elementor-widget-theme-post-content h3 {
  margin: 56px 0 20px;
  color: var(--d2o-teal);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.d2o-article-content .elementor-widget-theme-post-content h3 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 38px);
}

.d2o-footer.elementor-section {
  color: #fff;
  background: var(--d2o-charcoal) !important;
  background-image: none !important;
}

.d2o-footer-main.elementor-section {
  padding: 74px 24px 0 !important;
}

.d2o-footer-lower.elementor-section {
  padding: 64px 24px 38px !important;
}

.d2o-footer.elementor-section::before,
.d2o-footer.elementor-section::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.d2o-footer-main > .elementor-container {
  display: grid !important;
  width: min(100%, var(--container));
  max-width: var(--container);
  grid-template-columns: 1.1fr 0.8fr 0.95fr;
  column-gap: clamp(34px, 7vw, 100px);
  row-gap: 0;
}

.d2o-footer-main > .elementor-container > .elementor-column {
  width: auto !important;
}

.d2o-footer-main .elementor-widget-wrap {
  display: flex !important;
  flex-direction: column;
  align-items: start;
  padding: 0 !important;
}

.d2o-footer-lower > .elementor-container {
  width: min(100%, var(--container));
  max-width: var(--container);
}

.d2o-footer-lower .elementor-widget-wrap {
  display: block !important;
  padding: 0 !important;
}

.d2o-footer .elementor-widget {
  margin: 0;
}

.d2o-footer .d2o-footer-logo {
  margin-bottom: 26px;
}

.d2o-footer .d2o-footer-desc {
  margin-top: 0;
}

.d2o-footer .d2o-footer-bottom {
  margin-top: 0;
  text-align: center;
}

.d2o-footer .elementor-heading-title,
.d2o-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.d2o-footer p,
.d2o-footer a,
.d2o-footer .elementor-widget-text-editor {
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.d2o-footer a {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast), transform var(--motion-fast), background-color var(--motion-fast), border-color var(--motion-fast);
}

.d2o-footer a:hover,
.d2o-footer a:focus-visible {
  color: var(--d2o-teal-bright);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.d2o-footer .elementor-widget-image img {
  width: 154px;
}

.d2o-footer-links a {
  display: block;
  width: max-content;
  font-weight: 700;
  text-transform: uppercase;
}

.d2o-footer-links a:hover,
.d2o-footer-links a:focus-visible {
  transform: translateX(4px);
}

.elementor-widget-d2o-social-icons {
  margin-top: 20px !important;
}

.d2o-single-meta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  color: #fff;
}

.d2o-single-meta span + span::before {
  content: "·";
  margin-right: 14px;
  color: currentColor;
}

.elementor-widget-d2o-feature-panel,
.elementor-widget-d2o-service-grid,
.elementor-widget-d2o-archive-grid,
.elementor-widget-d2o-search-results,
.elementor-widget-d2o-related-posts {
  width: 100%;
}

body .d2o-post-card {
  border: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
}

body .d2o-post-card .post-card__image {
  border: 0 !important;
  box-shadow: none !important;
}

body .d2o-post-card .post-card__body {
  padding: 22px 0 0 !important;
  border: 0 !important;
  color: var(--d2o-ink) !important;
  background: #fff !important;
}

body .d2o-post-card .meta,
body .d2o-post-card .meta span {
  margin: 0 !important;
  color: var(--d2o-teal) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

body .d2o-post-card h3,
body .d2o-post-card h3 a {
  display: block !important;
  margin: 12px 0 10px !important;
  color: var(--d2o-ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

body .d2o-post-card p {
  margin: 0 !important;
  color: var(--d2o-ink) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}

body .d2o-post-card .read-more {
  margin-top: 18px !important;
  color: var(--d2o-teal) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.search .site-header .d2o-header-search,
body.search-results .site-header .d2o-header-search {
  display: none !important;
  width: 0 !important;
}

@media (max-width: 980px) {
  .site-header > .elementor-container {
    grid-template-columns: 1fr auto;
  }

  .site-header .brand,
  .site-header > .elementor-container > .elementor-column:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header .header-left,
  .site-header > .elementor-container > .elementor-column:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header .header-actions,
  .site-header > .elementor-container > .elementor-column:nth-child(3),
  .site-header .d2o-header-phone {
    display: none;
  }

  .site-header .header-left > .elementor-widget-wrap,
  .site-header > .elementor-container > .elementor-column:nth-child(1) > .elementor-widget-wrap {
    justify-content: flex-end;
  }

  .d2o-article-content > .elementor-container,
  .d2o-article-content .elementor-widget-wrap,
  .d2o-footer-main > .elementor-container {
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 34px;
  }

  .d2o-article-content > .elementor-container {
    width: min(100%, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .d2o-article-content > .elementor-container > .elementor-column,
  .d2o-article-content .elementor-widget,
  .d2o-article-content .elementor-widget-container,
  .d2o-article-content .elementor-widget-theme-post-content,
  .d2o-article-content .elementor-widget-d2o-article-aside,
  .d2o-article-content .article-body,
  .d2o-article-content .toc {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .d2o-article-content .article-body > *,
  .d2o-article-content .toc > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .d2o-article-content .article-table {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
  }

  .d2o-footer-main > .elementor-container > .elementor-column {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .d2o-consult-strip .elementor-button {
    font-size: 12px;
    text-align: center;
  }

  .site-header.elementor-section {
    top: 28px;
    min-height: 76px;
    padding: 0 20px;
  }

  .site-header .elementor-widget-image img {
    width: 118px;
  }

  .d2o-hero.elementor-section {
    min-height: 560px;
    padding-inline: 18px;
  }

  .d2o-hero.elementor-section > .elementor-container {
    width: min(100%, calc(100vw - 36px)) !important;
    max-width: calc(100vw - 36px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .d2o-hero-title .elementor-heading-title,
  .d2o-hero .elementor-widget-heading:nth-child(2) .elementor-heading-title,
  .d2o-hero .elementor-widget-theme-post-title .elementor-heading-title,
  .d2o-hero .elementor-widget-d2o-post-title .elementor-heading-title {
    font-size: clamp(42px, 13vw, 64px);
  }

  .d2o-search-section .elementor-search-form {
    width: 100%;
  }

  .d2o-search-section .elementor-search-form__container {
    grid-template-columns: 1fr;
  }

  .d2o-search-section .elementor-search-form__submit {
    width: 100% !important;
  }

  .d2o-footer-lower .d2o-footer-bottom {
    text-align: left;
  }

  .d2o-footer-lower .legal-links {
    justify-content: flex-start;
  }
}
