:root {
  --bg: #070707;
  --bg-soft: #0d0d0f;
  --surface: rgba(18, 18, 20, 0.78);
  --surface-solid: #121214;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #b7b7bd;
  --red: #ef233c;
  --red-dark: #b80f27;
  --green: #4ade80;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(239, 35, 60, 0.1), transparent 34rem),
    var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.72));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,35,60,.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: .78;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #c9c9ce;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239,35,60,.3);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  transition: 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
}

/* Hero */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 112px 0 78px;
  background-image:
    linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.8) 43%, rgba(5,5,6,.2) 100%),
    linear-gradient(180deg, rgba(5,5,6,.08), rgba(5,5,6,.84)),
    url("https://images.unsplash.com/photo-1507136566006-cfc505b114fc?auto=format&fit=crop&w=2000&q=90");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(239,35,60,.12), transparent 28rem),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-size: .76rem;
  font-weight: 800;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74,222,128,.11);
}

.eyebrow {
  margin: 0 0 13px;
  color: #ff7587;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  text-wrap: pretty;
}

h1 {
  max-width: 850px;
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: -.07em;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: #d0d0d4;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff314b, #d8112c);
  box-shadow: 0 16px 38px rgba(239,35,60,.28);
}

.button.secondary,
.button.outline {
  border-color: rgba(255,255,255,.17);
  color: #fff;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.button.light {
  color: #141414;
  background: #fff;
}

/* Main guide */

.guide-section {
  position: relative;
  padding: 92px 0 118px;
  background:
    linear-gradient(180deg, rgba(7,7,7,.96), rgba(7,7,7,.99)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=2000&q=82");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.page-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.contents {
  position: sticky;
  top: 106px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(17,17,19,.74);
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  scrollbar-width: thin;
}

.contents-label {
  margin: 0 0 14px;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contents nav {
  display: grid;
  gap: 3px;
}

.contents a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 12px;
  color: #aaaab0;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  transition: 180ms ease;
}

.contents a span {
  color: #ff6175;
  font-size: .66rem;
  letter-spacing: .08em;
}

.contents a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.guide-content {
  min-width: 0;
}

.success-box {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid rgba(74,222,128,.28);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(74,222,128,.11), rgba(255,255,255,.035));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.success-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071209;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(74,222,128,.09);
  font-weight: 900;
}

.success-box strong {
  display: block;
  margin-bottom: 5px;
}

.success-box p {
  margin: 0;
  color: #c7c7cb;
}

.content-section {
  scroll-margin-top: 112px;
  margin-top: 22px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 72%),
    rgba(16,16,18,.8);
  box-shadow: 0 20px 58px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
}

.section-heading {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 25px;
}

.section-heading > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff4058, #c6112b);
  box-shadow: 0 0 0 8px rgba(239,35,60,.08), 0 14px 32px rgba(239,35,60,.24);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.section-heading .eyebrow {
  margin-bottom: 7px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  letter-spacing: -.055em;
}

.content-section > p {
  color: #c6c6ca;
}

.clean-list,
.number-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.number-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 25px;
  color: #dddddf;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(239,35,60,.11);
  transform: translateY(-50%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 175px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: 180ms ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff4058, #c6112b);
  box-shadow: 0 0 0 7px rgba(239,35,60,.08);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -.03em;
}

.step-card p {
  margin: 0;
  color: #aaaab0;
  font-size: .86rem;
}

.number-list {
  counter-reset: list;
  display: grid;
  gap: 10px;
}

.number-list li {
  counter-increment: list;
  padding: 15px 18px 15px 58px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.number-list li::before {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ff6678;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  transform: translateY(-50%);
}

.service-grid,
.info-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.service-card.interior {
  background-image: url("https://images.unsplash.com/photo-1550355291-bbee04a92027?auto=format&fit=crop&w=1200&q=88");
}

.service-card.exterior {
  background-image: url("https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&w=1200&q=88");
}

.service-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,.04), rgba(5,5,6,.94));
}

.service-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8,8,9,.56);
  backdrop-filter: blur(14px);
  font-size: .72rem;
  font-weight: 800;
}

.service-content h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: -.05em;
}

.service-price {
  margin-bottom: 12px;
  color: #ff7587;
  font-size: 1.15rem;
  font-weight: 800;
}

.service-content p {
  margin: 0;
  color: #c8c8cc;
}

.info-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.info-card > span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff6678;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  color: #aaaab0;
  font-size: .87rem;
}

.warning-card {
  padding: 24px;
  border: 1px solid rgba(239,35,60,.32);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239,35,60,.13), rgba(255,255,255,.025));
}

.warning-card strong {
  display: block;
  margin-bottom: 8px;
}

.warning-card p {
  margin: 0;
  color: #c8c8cc;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  background-image:
    linear-gradient(90deg, rgba(5,5,6,.97), rgba(5,5,6,.58), rgba(5,5,6,.2)),
    linear-gradient(180deg, rgba(5,5,6,.08), rgba(5,5,6,.76)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1700&q=88");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -.06em;
}

.contact-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #d0d0d4;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  text-decoration: none;
  transition: 180ms ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239,35,60,.45);
}

.legal-card > span {
  color: #ff6678;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-card strong {
  margin: 30px 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.legal-card em {
  color: #aaaab0;
  font-style: normal;
  font-size: .82rem;
  font-weight: 800;
}

/* Footer */

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .85fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #919197;
  font-size: .87rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links > strong {
  margin-bottom: 13px;
  color: #fff;
  font-size: .82rem;
}

.footer-links a,
.footer-links span {
  margin: 5px 0;
  color: #929298;
  text-decoration: none;
  font-size: .83rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #717177;
  font-size: .74rem;
}

@media (max-width: 1040px) {
  .nav a {
    padding-inline: 11px;
    font-size: .78rem;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .contents {
    position: static;
    max-height: none;
  }

  .contents nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 540px;
    padding: 82px 0 62px;
    background-image:
      linear-gradient(180deg, rgba(5,5,6,.35), rgba(5,5,6,.92) 64%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1507136566006-cfc505b114fc?auto=format&fit=crop&w=1400&q=88");
    background-position: 60% center;
  }

  .steps,
  .service-grid,
  .info-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .brand {
    font-size: .9rem;
  }

  .header-cta {
    min-height: 39px;
    padding-inline: 13px;
    font-size: .76rem;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .guide-section {
    padding: 64px 0 82px;
    background-attachment: scroll;
  }

  .contents {
    padding: 18px;
  }

  .contents nav {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 24px;
    border-radius: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > span {
    width: 48px;
    height: 48px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 420px;
  }

  .contact-card {
    min-height: 520px;
    padding: 28px 24px;
    background-image:
      linear-gradient(180deg, rgba(5,5,6,.16), rgba(5,5,6,.96) 66%),
      url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1100&q=88");
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ------------------------------
   Accessible mobile menu
------------------------------ */

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
  user-select: none;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.09);
}

.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color .2s ease,
    background .2s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(239,35,60,.28);
}

.mobile-menu-panel .mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.05);
}

/* Exact shared navbar responsive behaviour */
@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    padding-inline: 11px;
    font-size: .79rem;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: .94rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: .76rem;
  }
}


/* Final mobile navigation behaviour */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-panel {
    right: 0;
  }
}