.serif { font-family: var(--heading-font, 'Cormorant Garamond'), serif; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
}
.tag-blue { background: var(--ocean-pale); color: var(--ocean-2); }
.tag-green { background: var(--sage-pale); color: var(--sage); }
.tag-gold { background: var(--gold-pale); color: var(--gold); }

.btn-ghost {
  font-size: .875rem; font-weight: 600; color: var(--ocean-2);
  padding: .45rem 1rem; border: 1.5px solid var(--ocean-2);
  border-radius: 50px; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { background: var(--ocean-2); color: white; }
.btn-solid {
  font-size: .875rem; font-weight: 600; color: white;
  padding: .45rem 1.25rem; border-radius: 50px; text-decoration: none;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-2) 55%, var(--accent-color, #0857a0) 100%);
  color: #fff;
  transition: all .2s;
}
.btn-solid:hover { filter: brightness(.97); transform: translateY(-1px); }

.strip {
  background: var(--ink); color: rgba(255,255,255,.8);
  padding: .55rem 5vw; font-size: .8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.strip a { color: var(--cta-color, #5a9939); font-weight: 600; text-decoration: none; }
.strip-right { display: flex; align-items: center; gap: 1.5rem; }
.strip-social { gap: .35rem; margin-left: auto; }
.strip-social .soc-btn {
  width: 28px; height: 28px;
  font-size: .6rem;
  border-radius: 50%;
  border-width: 1px;
  line-height: 1;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.strip-social .soc-btn:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}
.strip-social .soc-btn svg,
.soc-btn svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--mist-3);
  padding: 0 5vw; height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 1rem;
  transition: box-shadow .3s;
}
nav.elevated { box-shadow: 0 4px 30px rgba(10,22,40,.1); }

.logo-group { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-image-group { display: flex; align-items: center; }
.header-logo-image { display: block; width: auto; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(145deg, var(--ocean), var(--ocean-2));
  display: grid; place-items: center; color: white; font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .l1 { font-family: var(--heading-font, 'Cormorant Garamond'), serif; font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.logo-text .l2 { font-size: .65rem; color: var(--ink-3); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }

.custom-logo { margin: 0; }
.custom-logo-link { display: flex; align-items: center; text-decoration: none; }
.custom-logo-link img { height: auto; transition: max-height .3s; }

.nav-menu { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu-desktop {
  margin-left: auto;
  margin-right: auto;
  flex: 1 1 auto;
  justify-content: center;
  justify-self: center;
  width: 100%;
}
.nav-menu li { position: relative; }
.nav-menu li.menu-item-has-children {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-menu a { font-size: .875rem; font-weight: 500; color: var(--ink-3); text-decoration: none; transition: color .2s; padding: .5rem 0; display: block; }
.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-menu .current_page_item > a { color: var(--ocean-2); }
.nav-menu .menu-item-has-children > a::after { content: none; }
.nav-submenu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 1.25rem;
}
.nav-submenu-toggle::before {
  content: '';
  width: .45rem;
  height: .45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform .2s ease, color .2s ease;
}
.nav-menu li.open > .nav-submenu-toggle::before {
  transform: translateY(2px) rotate(225deg);
}
.nav-menu .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white, #fff); border: 1px solid var(--mist-3); border-radius: var(--r); padding: .5rem 0; min-width: 200px; box-shadow: 0 8px 24px rgba(10,22,40,.1); z-index: 100; list-style: none; }
.nav-menu .sub-menu li { padding: 0; }
.nav-menu .sub-menu a { padding: .5rem 1.25rem; font-size: .825rem; white-space: nowrap; }
.nav-menu .sub-menu .sub-menu { top: 0; left: 100%; margin-left: 2px; }
.nav-menu li.open > .sub-menu { display: block; }

.nav-actions { display: flex; gap: .75rem; align-items: center; }
.nav-actions-desktop { margin-left: .5rem; flex-shrink: 0; }
.nav-actions-desktop { justify-self: end; }
.nav-actions .btn-solid { display: inline-flex; align-items: center; gap: .5rem; }
.nav-actions .btn-solid .btn-icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  color: #fff;
  flex-shrink: 0;
}
.btn-ghost {
  font-size: .875rem; font-weight: 600; color: var(--ocean-2);
  padding: .45rem 1rem; border: 1.5px solid var(--ocean-2);
  border-radius: 50px; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { background: var(--ocean-2); color: white; }
.btn-solid {
  font-size: .875rem; font-weight: 600; color: white;
  padding: .45rem 1.25rem; border-radius: 50px; text-decoration: none;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-2) 55%, var(--accent-color, #0857a0) 100%);
  color: #fff;
  transition: all .2s;
}
.btn-solid:hover { filter: brightness(.97); transform: translateY(-1px); }

.section { padding: 96px 5vw; }
.section.alt { background: var(--mist); }
h2.display {
  font-family: var(--heading-font, 'Cormorant Garamond'), serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-top: .6rem;
  margin-bottom: 1rem;
}
h2.display em { font-style: italic; color: var(--sage); }
h2.display.light { color: white; }
h2.display.light em { color: var(--cta-color, #5a9939); }
.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-intro { margin: 0 auto; }
.section-intro {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 580px;
  line-height: 1.8;
}
.section-intro.muted-light { color: rgba(255,255,255,.6); }
.section-intro.subtle-light { color: rgba(255,255,255,.5); }
.section-callout {
  text-align: center;
  margin-top: 3rem;
}
.section-callout .section-intro {
  margin: 0 auto 1.5rem;
}
.section-callout .cta-primary,
.section-callout .cta-secondary {
  display: inline-flex;
}
.section-callout .cta-primary + .cta-secondary,
.section-callout .cta-secondary + .cta-secondary {
  margin-left: .75rem;
}
.cta-secondary.secondary-accent {
  border-color: var(--ocean-2);
  color: var(--ocean-2);
}
.cta-secondary.secondary-accent:hover {
  color: var(--ocean-2);
}
.section-callout.panel-soft {
  background: var(--mist);
  border-radius: var(--r2);
  padding: 2.5rem;
}
.section-promo {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--accent-color, #0857a0) 100%);
  text-align: center;
}
.section-promo .tag {
  background: rgba(90,153,57,.12);
  color: #5a9939;
}
.section-promo .display.light {
  max-width: 600px;
  margin: 1rem auto;
}
.section-promo .section-intro {
  color: rgba(255,255,255,.6);
  margin: 0 auto 2rem;
}
.section-promo-actions {
  display: flex;
  gap: .875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.section-404 {
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-404 .display-404 {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 0;
  color: var(--cta-color, #5a9939);
}
.section-404 .section-intro {
  margin: 1rem auto 2rem;
}
.section-404 .cta-primary {
  display: inline-flex;
  color: #fff;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

.cta-primary {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 50px;
  background: var(--cta-color, #5a9939);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
}
.cta-primary:hover { filter: brightness(.92); transform: translateY(-1px); }
.cta-secondary {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: white;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
}
.cta-secondary:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.svc-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ocean-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.svc-link:hover { gap: .55rem; }

.about-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.mosaic-cell {
  background: var(--mist-2);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mosaic-cell.tall { grid-row: span 2; }
.mosaic-fill {
  flex: 1;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.mosaic-fill.ocean { background: linear-gradient(145deg, var(--ocean), var(--ocean-2)); }
.mosaic-fill.sage { background: linear-gradient(145deg, var(--sage), var(--sage-2)); }
.mosaic-fill.mist { background: var(--mist-3); }
.mosaic-foot { padding: 1rem 1.1rem; }
.mosaic-foot h4 { font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.mosaic-foot p { font-size: .78rem; color: var(--ink-3); line-height: 1.55; }
.value-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r);
  background: white;
  border: 1px solid var(--mist-3);
  transition: border-color .25s, box-shadow .25s;
}
.value-row:hover { border-color: var(--mist-3); box-shadow: 0 4px 20px rgba(10,22,40,.07); }
.vr-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.vr-icon.blue { background: var(--ocean-pale); }
.vr-icon.green { background: var(--sage-pale); }
.vr-icon.gold { background: var(--gold-pale); }
.vr-body h4 { font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.vr-body p { font-size: .8rem; color: var(--ink-3); line-height: 1.6; }

.services-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r2);
  overflow: hidden;
}
.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.widget-area { }
.widget { background: white; border: 1px solid var(--mist-3); border-radius: var(--r2); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--ink); }
.widget ul { list-style: none; }
.widget ul li { padding: .4rem 0; border-bottom: 1px solid var(--mist-2); }
.widget ul li a { color: var(--ink-3); text-decoration: none; font-size: .875rem; }
.widget ul li a:hover { color: var(--ocean-2); }

.search-form { display: flex; gap: .5rem; }
.search-form input[type="search"] {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid var(--mist-3);
  border-radius: 50px;
  font-family: inherit;
  font-size: .875rem;
}
.search-form input[type="submit"] {
  padding: .6rem 1.2rem;
  background: var(--ocean-2);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

.pagination,
.posts-navigation { margin-top: 2rem; }
.nav-links { display: flex; gap: .5rem; }
.nav-links a,
.nav-links span {
  padding: .5rem 1rem;
  border: 1px solid var(--mist-3);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--ink-3);
  font-size: .875rem;
}
.nav-links .current { background: var(--ocean-2); color: white; border-color: var(--ocean-2); }
.nav-links a:hover { border-color: var(--ocean-2); color: var(--ocean-2); }

.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}
.skip-link:focus {
  background: var(--ocean-2);
  color: white;
  padding: .5rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  text-decoration: none;
  font-weight: 600;
  font-size: .875rem;
}

.nav-drawer {
  display: none;
}
.nav-backdrop {
  display: none;
}

footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(90,153,57,.14), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(8,87,160,.18), transparent 28%),
    linear-gradient(180deg, #0a2446 0%, #0b3c70 100%);
  color: rgba(255,255,255,.72);
  padding: 44px 5vw 28px;
  overflow: hidden;
}

.footer-shell {
  position: relative;
  z-index: 1;
}
.footer-cta-band {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  padding: 0 0 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 1.25rem;
  align-items: center;
}
.footer-cta-copy h2 {
  font-family: var(--footer-cta-heading-font, 'Cormorant Garamond'), serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.12;
  color: #fff;
  margin: 0;
}
.footer-cta-desc {
  margin-top: .8rem;
  color: rgba(255,255,255,.66);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 62ch;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s, background-color .2s, border-color .2s, color .2s;
}
.footer-cta-btn:hover { transform: translateY(-1px); }
.footer-cta-btn--phone {
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.footer-cta-btn--phone:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
.footer-cta-btn--whatsapp {
  color: #dfffe8;
  border: 1px solid rgba(126,255,160,.24);
  background: rgba(126,255,160,.08);
}
.footer-cta-btn--whatsapp:hover {
  background: rgba(126,255,160,.14);
  border-color: rgba(126,255,160,.34);
  color: #fff;
}
.footer-cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  color: currentColor;
}
.footer-cta-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.footer-top.cols-2 { grid-template-columns: 2fr 1fr; }
.footer-top.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
.footer-top.cols-4 { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
.footer-top .ft-col:empty { display: none; }
.ft-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.ft-brand p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.58); margin-top: .875rem; max-width: 300px; }
.ft-brand-logo {
  display: block;
  max-height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.ft-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--heading-font, 'Cormorant Garamond'), serif; font-size: 1.4rem; font-weight: 600; color: white;
}
.ft-logo span { color: #fff; }
.ft-col h4 { font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 1rem; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin: 0; padding: 0; }
.footer-menu li { margin: 0; padding: 0; border: none; }
.footer-menu li a { color: rgba(255,255,255,.62); font-size: .9rem; text-decoration: none; transition: color .2s, transform .2s; display: inline-block; padding: 0; background: none; border: none; }
.footer-menu li a:hover { color: #fff; transform: translateX(2px); }
.ft-contact { display: flex; flex-direction: column; gap: .65rem; }
.ft-contact > a,
.ft-contact > span { font-size: .85rem; color: rgba(255,255,255,.62); text-decoration: none; display: flex; align-items: center; gap: .55rem; transition: color .2s; }
.ft-contact > a:hover { color: white; }
.ft-contact > a > span,
.ft-contact > span > span:last-child { display: inline-flex; align-items: center; }
.ft-contact-icon { color: #fff; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 16px; }
.ft-contact-icon svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer-social-copy { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.56); margin-bottom: 1rem; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-socials { margin-top: .5rem; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.11);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; text-decoration: none; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
  transition: all .25s;
}
.soc-btn:hover { background: var(--cta-color, #5a9939); color: var(--ink); border-color: transparent; transform: translateY(-2px); }

.soc-btn.soc-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.soc-btn.soc-instagram:hover { background: #E4405F; color: #fff; border-color: #E4405F; }
.soc-btn.soc-linkedin:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.soc-btn.soc-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.soc-btn.soc-youtube:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.soc-btn.soc-twitter:hover { background: #000; color: #fff; border-color: #000; }

.footer-hours {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-hours strong {
  color: white;
  font-size: .96rem;
}
.footer-hours span:last-child {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.38); }

@media (max-width: 960px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

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

.mob-menu-btn { display: none; position: relative; width: 44px; height: 44px; border: 1px solid var(--mist-3); border-radius: 14px; background: white; cursor: pointer; padding: 0; align-items: center; justify-content: center; }
.mob-menu-btn__line {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ocean);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease, top .25s ease, width .25s ease;
}
.mob-menu-btn__line--top { top: 14px; }
.mob-menu-btn__line--mid { top: 21px; width: 12px; }
.mob-menu-btn__line--bottom { top: 28px; }
.mob-menu-btn.is-open .mob-menu-btn__line--top { top: 21px; transform: translateX(-50%) rotate(45deg); }
.mob-menu-btn.is-open .mob-menu-btn__line--mid { opacity: 0; width: 0; }
.mob-menu-btn.is-open .mob-menu-btn__line--bottom { top: 21px; transform: translateX(-50%) rotate(-45deg); }
.drawer-close {
  display: none;
}
.drawer-header {
  display: none;
}

.nav-menu li.mega-menu-parent {
   position: static;
}
.nav-menu li.mega-menu-parent > div.sub-menu.mega-menu-simple {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(1120px, calc(100vw - 64px));
  display: none;
  margin: 0;
  padding: 1.15rem 1.25rem 1.25rem;
  background: rgba(255,255,255,.995);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 1100;
  transform: translateX(-50%);
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.nav-menu li.mega-menu-parent:hover > div.sub-menu.mega-menu-simple,
.nav-menu li.mega-menu-parent:focus-within > div.sub-menu.mega-menu-simple,
.nav-menu li.mega-menu-parent.open > div.sub-menu.mega-menu-simple {
  display: block;
}
.nav-menu li.mega-menu-parent > ul.sub-menu {
  display: none;
}
.nav-menu li.mega-menu-parent .mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem 1.5rem;
  align-items: start;
}
.nav-menu li.mega-menu-parent .mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-width: 0;
}
.nav-menu li.mega-menu-parent .mega-menu-column-heading {
  display: block;
  margin-bottom: .4rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ocean-2);
}
.nav-menu li.mega-menu-parent .mega-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.nav-menu li.mega-menu-parent .mega-menu-links li {
  display: block;
}
.nav-menu li.mega-menu-parent .mega-menu-links a {
  display: block;
  padding: .28rem 0;
  font-size: .92rem;
  white-space: normal;
  line-height: 1.55;
  color: var(--ink);
}
.nav-menu li.mega-menu-parent .mega-menu-links a:hover {
  color: var(--ocean-2);
}

@media (max-width: 768px) {
  .nav-menu li.mega-menu-parent > .sub-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-height: none;
    overflow: visible;
  }
  .nav-menu li.mega-menu-parent > div.sub-menu.mega-menu-simple {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: .5rem 0 .75rem;
  }
  .nav-menu li.mega-menu-parent .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav-drawer .nav-menu li.menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    column-gap: 10px;
  }
  .nav-drawer .nav-menu li.menu-item-has-children > a {
    grid-column: 1;
  }
  .nav-drawer .nav-menu .nav-submenu-toggle {
    grid-column: 2;
    justify-self: end;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.14);
    color: var(--ink);
    border-radius: 4px;
  }
  .nav-drawer .nav-menu .nav-submenu-toggle::before {
    width: .5rem;
    height: .5rem;
    border-right-color: currentColor;
    border-bottom-color: currentColor;
  }
}
