@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #121212;
  --muted: #5f5b57;
  --red: #d95322;
  --red-deep: #bc4316;
  --border: rgba(0,0,0,0.08);
  --bg-dark: #0a0603;
  --bg-panel: #130c08;
  --bg-light: #f3ece5;
  --text-soft: #d0c2b6;
  --text-soft2: #F9E6D6;
  --text-on-light: #3d322c;
}

* { box-sizing: border-box; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  padding-top: 64px;
  font-family: 'Hind', Arial, sans-serif;
  background: var(--bg-dark);
  color: #f4ede6;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
img { display: block; max-width: 100%; }

.page-shell { min-height: 100vh; }
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.brand-mark,
.brand-name,
.hero-section h1,
.hero-subhead,
.section-title,
.moment-card h3,
.step-heading h3,
.moment-price,
.problem-section blockquote,
.hero-aside-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 56px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: min(48vw, 520px);
  object-fit: contain;
  transition: transform .25s ease, opacity .25s ease;
}
.logo:hover .logo-img { transform: scale(1.03); opacity: .95; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}
.site-nav ul a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color .2s ease, opacity .2s ease;
}
.site-nav ul a:hover {
  color: var(--red);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section-shell,
.hero-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 56px;
  padding-right: 56px;
}

.section-inner,
.hero-section,
.content-section,
.site-footer,
.sub-footer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-shell {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 6.25rem);
  background:
    radial-gradient(circle at top right, rgba(217,83,34,0.12), transparent 28%),
    linear-gradient(180deg, #0b0704 0%, var(--bg-dark) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.header-rule {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(90deg, var(--red) 0%, rgba(217,83,34,0.15) 75%, transparent 100%);
}
.hero-section h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,230,0.72);
}
.hero-subhead {
  margin: 1.15rem 0 0;
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  color: #e35b27;
  font-style: italic;
}
.hero-copy {
  margin: 1.25rem 0 0;
  max-width: 720px;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-soft);
}
.hero-aside {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.hero-aside-card {
  width: 100%;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.aside-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,237,230,0.68);
}
.hero-aside-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.03;
  font-weight: 500;
}
.hero-aside-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-shell {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
.section-shell--panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-shell--dark {
  background: rgba(255,255,255,0.02);
}
.section-shell--light {
  background: linear-gradient(180deg, #f3ece5 0%, #efe5dc 100%);
  color: var(--text-on-light);
  border-top: 1px solid rgba(18,18,18,0.05);
  border-bottom: 1px solid rgba(18,18,18,0.05);
}
.section-shell--contact {
  background: linear-gradient(180deg, #0d0704 0%, #120b07 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section-shell--footer {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.section-title--dark .title-muted { color: #8c7d73; }
.title-accent {
  display: inline-block;
  margin-right: 0.35rem;
  color: #e35b27;
}
.title-muted {
  display: inline-block;
  color: #6d625a;
}

.moments-grid,
.steps-grid,
.deliverables-grid {
  display: grid;
  gap: 2rem;
}
.moments-grid,
.steps-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.moment-card {
  min-height: 100%;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #e35b27;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.moment-card h3,
.step-heading h3 {
  margin: 0 0 0.9rem;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
}
.moment-card p,
.step-card p,
.problem-section p,
.supporting-copy,
.deliverable-item p,
.contact-copy,
.site-footer,
.site-footer p,
.footer-links,
.footer-links span,
.footer-links a,
.form-note,
.form-field label,
.form-field input,
.form-field textarea {
  font-family: 'Hind', Arial, sans-serif;
}
.moment-card p,
.step-card p,
.problem-section p,
.supporting-copy,
.deliverable-item p,
.contact-copy {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-soft);
}
.contact-copy2 {
   margin-top: 25px;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-left: 0px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-soft2);
}
.moment-meta { margin-top: 1.25rem; }
.moment-price {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 500;
  color: #e35b27;
}
.moment-points {
  margin-top: 0.75rem;
  color: #8a7b6f;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 600;
}

.problem-section blockquote {
  margin: 0;
  padding: 0.75rem 1.25rem;
  border-left: 4px solid #e35b27;
  border-right: 4px solid #e35b27;
  font-size: clamp(1.5rem, 4.8vw, 3rem);
  line-height: 1.2;
  font-style: italic;
  font-weight: 500;
  color: #f4ede6;
}
.problem-section strong { color: #f4ede6; }

.step-card {
  padding: 1.5rem;
  border: 1px solid rgba(18,18,18,0.08);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(48,33,20,0.08);
}
.step-topline {
  width: 100%;
  height: 4px;
  margin-bottom: 1.25rem;
  background: #e35b27;
}
.step-heading {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.step-number {
  font-size: 1.75rem;
  font-weight: 500;
  color: #e35b27;
}
.step-card p,
.supporting-copy--dark {
  color: var(--text-on-light);
}

.deliverables-grid { gap: 1rem 3rem; }
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.deliverable-dot {
  width: 0.625rem;
  height: 0.625rem;
  margin-top: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e35b27;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,230,0.7);
}
.contact-copy {
  max-width: 420px;
}
.contact-form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.35rem;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f4ede6;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.04);
  color: #f4ede6;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244,237,230,0.45);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(217,83,34,0.8);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(217,83,34,0.12);
}
.form-field textarea {
  min-height: 180px;
  resize: vertical;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.form-btn {
  appearance: none;
  border: 0;
  border-radius: 0.9rem;
  background: var(--red);
  color: #fff;
  padding: 0.95rem 1.4rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  background: var(--red-deep);
}
.form-note {
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #a9998b;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #e35b27;
}

.form-success p {
  font-size: 1rem;
  color: #d0c2b6;
}

/* footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.site-footer p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: #e35b27;
}

@media (min-width: 768px) {
  .moments-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.sub-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}

.sub-footer p {
  margin: 0;
}

@media (min-width: 768px) {
  .sub-footer {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .hero-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    padding: 0 24px;
  }
  .section-shell,
  .hero-shell {
    padding-left: 24px;
    padding-right: 24px;
  }
  .logo-img {
    max-height: 34px;
    max-width: min(56vw, 360px);
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }
  .site-nav ul {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 24px 1rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 14px 24px rgba(0,0,0,0.08);
  }
  .site-nav ul.is-open {
    display: flex;
  }
  .site-nav ul li {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .site-nav ul li:first-child { border-top: 0; }
  .site-nav ul li a {
    display: block;
    width: 100%;
    padding: 0.95rem 0;
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 0 16px;
  }
  .section-shell,
  .hero-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .logo-img {
    max-height: 28px;
    max-width: 62vw;
  }
  html {
    scroll-padding-top: 78px;
  }
}

.footer-modal-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.footer-modal-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(10, 6, 3, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(84vh, 900px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #120b07 0%, #0d0704 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.24s ease;
}

.policy-modal.is-open .policy-modal__dialog {
  transform: translateY(0) scale(1);
}

.policy-modal__content {
  max-height: min(84vh, 900px);
  overflow: auto;
  padding: 2.25rem 2rem 2rem;
  color: #f4ede6;
}

.policy-modal__content h2,
.policy-modal__content h3,
.policy-modal__content h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

.policy-modal__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.policy-modal__content h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #f4ede6;
}

.policy-modal__content h4 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #e35b27;
}

.policy-modal__content p,
.policy-modal__content li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #d0c2b6;
}

.policy-modal__content p + p,
.policy-modal__content p + ol,
.policy-modal__content ol + p,
.policy-modal__content h4 + p,
.policy-modal__content h3 + p {
  margin-top: 0.75rem;
}

.policy-modal__content ol {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
}

.policy-modal__content li + li {
  margin-top: 0.45rem;
}

.policy-modal__eyebrow,
.policy-modal__updated {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,237,230,0.6);
}

.policy-modal__updated {
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
}

.policy-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #f4ede6;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.policy-modal__close:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .policy-modal {
    padding: 16px;
  }

  .policy-modal__content {
    padding: 1.4rem 1.15rem 1.25rem;
  }

  .policy-modal__close {
    top: 0.65rem;
    right: 0.65rem;
  }
}


/* Pro nav dropdown */
.site-nav ul {
  overflow: visible;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.1rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--red);
  outline: none;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  min-width: 280px;
  max-width: min(360px, calc(100vw - 32px));
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 200;
}

.nav-dropdown.align-right .nav-submenu {
  left: auto;
  right: 0;
}

.nav-submenu li {
  width: 100%;
}

.site-nav .nav-submenu a {
  display: block;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  color: var(--ink);
  line-height: 1.3;
}

.site-nav .nav-submenu a:hover,
.site-nav .nav-submenu a:focus-visible {
  background: rgba(217,83,34,0.08);
  color: var(--red);
  text-decoration: none;
  outline: none;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    max-width: none;
    margin: 0 0 0.8rem;
    padding: 0.35rem 0 0.15rem 0.9rem;
    border: 0;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.align-right .nav-submenu {
    left: auto;
    right: auto;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: block;
  }

  .site-nav .nav-submenu a {
    padding: 0.7rem 0;
    border-radius: 0;
  }

  .site-nav .nav-submenu a:hover,
  .site-nav .nav-submenu a:focus-visible {
    background: transparent;
  }
}