:root {
  --blue: #143fd1;
  --blue-dark: #071b62;
  --navy: #06143f;
  --pink: #ff3b8e;
  --pink-dark: #d81869;
  --yellow: #ffda2f;
  --mint: #42ddb2;
  --sky: #20b9fb;
  --cream: #fffdf7;
  --paper: #f5f7fc;
  --white: #fff;
  --ink: #081438;
  --muted: #67718c;
  --line: #dfe4ef;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(8,20,56,.14);
  --shadow-small: 0 10px 30px rgba(8,20,56,.09);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 500; left: 12px; top: 12px; padding: 11px 15px; color: #fff; background: var(--navy); border-radius: 10px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: none; }

.topline { color: #fff; background: var(--navy); font-size: 12px; font-weight: 800; }
.topline__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline p { margin: 0; }
.topline p span { color: var(--pink); margin-right: 7px; }
.topline a { color: var(--yellow); text-decoration: none; }

.site-header { position: sticky; z-index: 100; top: 0; background: #fff; border-bottom: 1px solid #e5e6eb; }
.nav { min-height: 96px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__logo { width: auto; height: 88px; object-fit: contain; }
.brand__castle { position: relative; display: flex; width: 48px; height: 40px; padding: 0 3px; align-items: end; justify-content: space-between; border: 3px solid var(--ink); border-radius: 9px 9px 12px 12px; background: var(--yellow); box-shadow: 4px 4px 0 var(--pink); }
.brand__castle::after { content: ""; position: absolute; left: 16px; bottom: -3px; width: 11px; height: 16px; border: 3px solid var(--ink); border-bottom: 0; border-radius: 8px 8px 0 0; background: var(--pink); }
.brand__castle i { display: block; width: 9px; height: 27px; border: 3px solid var(--ink); border-bottom: 0; background: var(--yellow); transform: translateY(-9px); }
.brand__castle i:nth-child(2) { height: 33px; }
.brand__words { display: flex; flex-direction: column; line-height: .96; text-transform: uppercase; }
.brand__words strong { font-family: var(--display); font-size: 16px; letter-spacing: -.04em; }
.brand__words small { margin-top: 6px; color: var(--pink-dark); font-family: var(--display); font-size: 11px; letter-spacing: .17em; }
.desktop-nav { display: flex; gap: clamp(20px, 3vw, 40px); align-items: center; margin-left: auto; }
.desktop-nav a { position: relative; padding: 10px 0; font-size: 13px; font-weight: 800; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 3px; background: var(--pink); transition: right .2s; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav .nav__facebook { display: inline-flex; padding: 8px 13px; align-items: center; color: #fff; background: #1877f2; border-radius: 50px; }
.desktop-nav .nav__facebook::after { display: none; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: flex; min-height: 48px; padding: 7px 14px 7px 8px; align-items: center; gap: 10px; color: #fff; background: var(--blue); border-radius: 14px; box-shadow: 0 5px 0 var(--blue-dark); text-decoration: none; }
.nav__phone > span:first-child { display: grid; width: 33px; height: 33px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 10px; }
.nav__phone > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.nav__phone small { color: #c9d5ff; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.nav__phone strong { margin-top: 3px; font-size: 13px; }
.nav__facebook-compact { display: none; width: auto; height: 42px; padding: 0 12px; place-items: center; color: #fff; background: #1877f2; border: 3px solid var(--ink); border-radius: 50px; box-shadow: 3px 3px 0 var(--yellow); font-size: 11px; font-weight: 900; line-height: 1; text-decoration: none; }
.menu-button { display: none; width: 45px; height: 45px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button i { display: block; height: 3px; margin: 5px 0; background: var(--ink); border-radius: 4px; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
.menu-button[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { padding: 8px 20px 20px; background: var(--cream); border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 14px 5px; border-bottom: 1px solid var(--line); font-weight: 800; text-decoration: none; }
.mobile-menu .mobile-menu__facebook { display: flex; align-items: center; color: #1877f2; }

.hero { position: relative; min-height: 700px; padding: 75px 0 120px; color: #fff; background: var(--blue); isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -2; width: 720px; height: 720px; top: -280px; right: -150px; border: 120px solid rgba(32,185,251,.22); border-radius: 50%; }
.hero::after { content: ""; position: absolute; z-index: -2; width: 380px; height: 380px; left: -230px; bottom: -260px; border: 80px solid rgba(255,218,47,.22); border-radius: 50%; }
.hero__dots { position: absolute; inset: 0; z-index: -3; opacity: .26; background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1.5px); background-size: 24px 24px; mask-image: linear-gradient(90deg,#000,transparent 66%); }
.hero__grid { display: grid; grid-template-columns: 1fr .86fr; gap: 70px; align-items: center; }
.hero__copy { min-width: 0; }
.eyebrow { display: flex; margin: 0 0 16px; align-items: center; gap: 10px; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 3px; background: var(--yellow); }
.eyebrow--blue { color: var(--blue); }
.eyebrow--blue > span { background: var(--pink); }
.hero h1, .section-heading h2, .foam h2, .simple h2, .questions h2, .last-call h2 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -.055em; line-height: .96; text-transform: uppercase; }
.hero h1 { font-size: clamp(62px, 6.25vw, 92px); text-shadow: 7px 7px 0 var(--blue-dark); }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero__copy > p:not(.eyebrow) { max-width: 520px; margin: 27px 0 31px; color: #e2e9ff; font-size: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; min-height: 53px; padding: 0 21px; align-items: center; justify-content: center; gap: 14px; border: 2px solid transparent; border-radius: 14px; font-size: 14px; font-weight: 900; text-align: center; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button--yellow { color: var(--ink); background: var(--yellow); box-shadow: 0 7px 0 #d4ab00; }
.button--glass { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); }
.button--glass:hover { background: rgba(255,255,255,.15); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 13px 21px; margin-top: 30px; font-size: 11px; font-weight: 800; }
.hero__proof span { display: flex; align-items: center; gap: 7px; }
.hero__proof b { display: grid; width: 20px; height: 20px; place-items: center; color: var(--ink); background: var(--mint); border-radius: 50%; font-size: 10px; }
.hero__product { position: relative; width: min(100%, 420px); min-width: 0; margin-left: auto; }
.hero__photo { position: relative; overflow: hidden; background: #fff; border: 7px solid #fff; border-radius: 42px 42px 100px 42px; box-shadow: 18px 20px 0 var(--blue-dark), var(--shadow); transform: rotate(1.5deg); }
.hero__photo img { display: block; width: 100%; height: auto; }
.hero__burst { position: absolute; right: -35px; top: -39px; display: flex; width: 145px; height: 145px; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); background: var(--yellow); border: 4px solid var(--ink); border-radius: 50%; box-shadow: 7px 7px 0 var(--ink); font-family: var(--display); line-height: 1; text-transform: uppercase; transform: rotate(8deg); }
.hero__burst strong { color: var(--pink-dark); font-size: 29px; }
.hero__burst span { margin-top: 4px; font-size: 13px; text-align: center; }
.hero__label { position: absolute; left: -32px; bottom: 38px; display: flex; min-width: 235px; padding: 13px 18px; align-items: center; gap: 12px; color: var(--ink); background: #fff; border: 3px solid var(--ink); border-radius: 16px; box-shadow: 6px 6px 0 var(--pink); transform: rotate(-2deg); }
.hero__label strong { color: var(--blue); font-family: var(--display); font-size: 37px; font-weight: 400; line-height: 1; }
.hero__label span { font-size: 10px; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.hero__curve { position: absolute; left: -2%; right: -2%; bottom: -54px; height: 83px; background: var(--cream); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

.quick-call { padding: 24px 0 32px; background: var(--cream); }
.quick-call__inner { display: flex; min-height: 78px; padding: 18px 24px; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-small); }
.quick-call p { display: flex; margin: 0; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; }
.quick-call p span { display: grid; width: 35px; height: 35px; place-items: center; color: var(--pink); background: #fff0f7; border-radius: 50%; }
.quick-call p strong { color: var(--ink); }
.quick-call__inner > div { display: flex; gap: 10px; }
.quick-call__inner > div a { min-height: 42px; padding: 0 14px; display: inline-flex; align-items: center; border-radius: 11px; font-size: 12px; font-weight: 900; text-decoration: none; }
.quick-call__inner > div a:first-child { color: #fff; background: var(--blue); }
.quick-call__inner > div a:last-child { color: var(--blue); border: 1px solid var(--blue); }

.inventory { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr .68fr; gap: 70px; align-items: end; }
.section-heading h2, .foam h2, .simple h2, .service-area h2, .questions h2, .last-call h2 { font-size: clamp(44px, 5.3vw, 72px); }
.section-heading h2 em, .simple h2 em { color: var(--pink); }
.section-heading > p { max-width: 500px; margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 46px 0 30px; }
.filter { min-height: 43px; padding: 0 17px; color: var(--muted); border: 1px solid var(--line); border-radius: 50px; background: #fff; font-size: 12px; font-weight: 900; cursor: pointer; transition: .2s; }
.filter:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.filter.is-active { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 5px 0 var(--blue-dark); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 25px; box-shadow: 0 8px 25px rgba(8,20,56,.06); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-card[hidden] { display: none; }
.product-card__photo { position: relative; height: 260px; overflow: hidden; background: #eef4fb; }
.product-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card__photo img { transform: scale(1.025); }
.pill { position: absolute; left: 15px; top: 15px; padding: 7px 10px; color: var(--ink); border: 2px solid var(--ink); border-radius: 50px; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pill--pink { color: #fff; background: var(--pink); }
.pill--yellow { background: var(--yellow); }
.favorite { position: absolute; right: 15px; top: 15px; padding: 7px 10px; color: var(--blue); border-radius: 50px; background: #fff; box-shadow: 0 4px 15px rgba(8,20,56,.12); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.product-card__body { padding: 22px; }
.product-type { margin: 0 0 5px; color: var(--pink-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--display); font-size: 20px; font-weight: 400; letter-spacing: -.04em; line-height: 1.1; }
.product-card__body > p:not(.product-type) { min-height: 66px; margin: 13px 0 19px; color: var(--muted); font-size: 13px; }
.product-card__action { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-card__action a { font-size: 11px; font-weight: 900; text-decoration: none; }
.product-card__action a:first-child { color: #fff; padding: 9px 10px; background: var(--blue); border-radius: 9px; }
.product-card__action a:last-child { color: var(--blue); text-align: right; }

.lineup-feature { position: relative; padding: 110px 0; overflow: hidden; background: linear-gradient(135deg,#fffdf7 0%,#eef7ff 100%); }
.lineup-feature::before { content: ""; position: absolute; width: 440px; height: 440px; left: -230px; bottom: -250px; border: 80px solid rgba(20,63,209,.08); border-radius: 50%; }
.lineup-feature__grid { position: relative; display: grid; grid-template-columns: .75fr 1fr; gap: 90px; align-items: center; }
.lineup-feature__copy { max-width: 520px; }
.lineup-feature h2 { margin: 0; font-family: var(--display); font-size: clamp(44px,5.3vw,72px); font-weight: 400; letter-spacing: -.055em; line-height: .96; text-transform: uppercase; }
.lineup-feature h2 em { color: var(--pink); font-style: normal; }
.lineup-feature__copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 17px; }
.lineup-feature__actions { display: flex; align-items: center; gap: 22px; }
.lineup-feature__actions > a:last-child { color: var(--blue); font-size: 12px; font-weight: 900; text-decoration: none; }
.lineup-feature__poster { width: min(100%,520px); margin-left: auto; overflow: hidden; background: #fff; border: 6px solid #fff; border-radius: 34px; box-shadow: 18px 20px 0 var(--blue), var(--shadow); transform: rotate(1deg); }
.lineup-feature__poster img { display: block; width: 100%; height: auto; }

.foam { position: relative; padding: 118px 0; color: #fff; background: var(--navy); overflow: hidden; }
.foam::before { content: ""; position: absolute; width: 500px; height: 500px; right: -200px; top: -220px; border: 90px solid rgba(32,185,251,.14); border-radius: 50%; }
.foam__bubbles { position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle, transparent 10px, #fff 11px, transparent 13px); background-size: 63px 63px; mask-image: linear-gradient(90deg,#000,transparent 45%,#000); }
.foam__grid { position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: 90px; align-items: center; }
.foam__visual { position: relative; height: 500px; border: 5px solid #fff; border-radius: 40px; background: #1649d7; box-shadow: 17px 18px 0 var(--pink); overflow: hidden; }
.foam__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3,17,71,.28)); pointer-events: none; }
.foam__visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 91% center; }
.foam h2 em { color: var(--sky); }
.foam__copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0; color: #ccd7f4; font-size: 17px; }
.foam__copy ul { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin: 0; padding: 0; list-style: none; }
.foam__copy li { min-height: 90px; padding: 13px; color: #e5ebff; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(255,255,255,.05); font-size: 11px; font-weight: 800; }
.foam__copy li span { display: grid; width: 22px; height: 22px; margin-bottom: 8px; place-items: center; color: var(--ink); background: var(--mint); border-radius: 50%; }
.foam__prices { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 22px; }
.foam__prices > div { position: relative; display: flex; padding: 17px; align-items: center; justify-content: space-between; color: var(--ink); background: #fff; border: 3px solid #fff; border-radius: 15px; }
.foam__prices > div:last-child { border-color: var(--yellow); }
.foam__prices small { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.foam__prices strong { font-family: var(--display); font-size: 32px; font-weight: 400; }
.foam__prices div > span { position: absolute; left: 13px; top: -12px; padding: 4px 8px; color: var(--ink); background: var(--yellow); border-radius: 50px; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.foam__actions { display: flex; align-items: center; gap: 22px; margin-top: 23px; }
.foam__actions > a:last-child { color: var(--yellow); font-size: 12px; font-weight: 900; text-decoration: none; }

.simple { background: var(--cream); }
.simple__heading { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.simple__heading .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 23px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; min-height: 310px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-small); }
.steps li > span { position: absolute; right: -3px; top: -31px; color: #edf0f7; font-family: var(--display); font-size: 92px; }
.steps li > div { position: relative; display: grid; width: 65px; height: 65px; margin-bottom: 62px; place-items: center; color: #fff; border: 3px solid var(--ink); border-radius: 19px; background: var(--blue); box-shadow: 5px 5px 0 var(--yellow); font-size: 28px; font-weight: 900; transform: rotate(-4deg); }
.steps li:nth-child(2) > div { background: var(--pink); transform: rotate(4deg); }
.steps h3 { margin: 0 0 9px; font-family: var(--display); font-size: 20px; font-weight: 400; letter-spacing: -.04em; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.service-area { position: relative; padding: 105px 0; color: #fff; background: var(--navy); overflow: hidden; }
.service-area::after { content: ""; position: absolute; width: 440px; height: 440px; right: -210px; bottom: -290px; border: 80px solid rgba(255,214,26,.1); border-radius: 50%; }
.service-area__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.service-area h2 { margin: 0; }
.service-area h2 em { color: var(--yellow); }
.service-area__copy > p { margin: 0 0 18px; color: #cfdbff; font-size: 17px; }
.service-area__copy ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 0; padding: 0; list-style: none; }
.service-area__copy li { padding: 9px 12px; color: var(--ink); background: var(--mint); border-radius: 50px; font-size: 11px; font-weight: 900; }

.questions { padding: 115px 0; color: #fff; background: var(--blue); }
.questions__grid { display: grid; grid-template-columns: .7fr 1fr; gap: 90px; align-items: start; }
.questions h2 { margin-bottom: 28px; }
.questions h2 em { color: var(--yellow); }
.accordion details { border-bottom: 1px solid rgba(255,255,255,.22); }
.accordion details:first-child { border-top: 1px solid rgba(255,255,255,.22); }
.accordion summary { display: flex; min-height: 78px; padding: 18px 0; align-items: center; justify-content: space-between; gap: 20px; color: #fff; font-weight: 900; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border: 2px solid var(--yellow); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 2px; background: var(--yellow); }
.accordion summary span::after { transform: rotate(90deg); transition: transform .2s; }
.accordion details[open] summary span::after { transform: none; }
.accordion details p { margin: -3px 45px 24px 0; color: #cfdbff; font-size: 14px; }

.last-call { padding: 80px 0; color: #fff; background: var(--pink); }
.last-call__inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.last-call p { margin: 0 0 7px; color: #ffe1ef; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.last-call h2 em { color: var(--yellow); }
.last-call__inner > div:last-child { display: flex; flex-direction: column; align-items: center; gap: 17px; }
.last-call__inner > div:last-child > a:last-child { color: #fff; font-size: 12px; font-weight: 900; }

.site-footer { padding: 60px 0 25px; color: #cbd4ec; background: var(--navy); }
.footer__grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 60px; }
.brand--footer { color: #fff; }
.footer__grid > div:first-child p { max-width: 300px; margin: 22px 0 0; font-size: 13px; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: start; gap: 10px; font-size: 13px; }
.footer__grid > div > strong { margin-bottom: 7px; color: #fff; }
.footer__grid a { text-decoration: none; }
.footer__grid a:hover { color: var(--yellow); }
.footer__facebook { display: inline-flex; margin-top: 5px; align-items: center; gap: 8px; color: #fff; font-weight: 800; }
.footer__facebook > span { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: #1877f2; border-radius: 50%; font-family: Arial, sans-serif; font-size: 18px; font-weight: 900; }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }
.design-credit { color: rgba(203,212,236,.58); font-size: 8px; letter-spacing: .04em; text-decoration: none; transition: color .2s; }
.design-credit strong { color: rgba(255,255,255,.72); font-weight: 700; }
.design-credit:hover, .design-credit:hover strong { color: var(--yellow); }
.mobile-actions { display: none; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .nav__facebook-compact { display: grid; }
  .menu-button { display: block; }
  .hero__grid { grid-template-columns: 1fr .82fr; gap: 42px; }
  .hero h1 { font-size: clamp(59px,8vw,82px); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .foam__grid { gap: 55px; }
}

@media (max-width: 820px) {
  .section { padding: 85px 0; }
  .hero { padding-top: 60px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__copy .eyebrow, .hero__actions, .hero__proof { justify-content: center; }
  .hero__copy > p:not(.eyebrow) { margin-inline: auto; }
  .hero__product { width: min(500px,86%); margin: 42px auto 0; }
  .quick-call__inner { align-items: start; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .lineup-feature__grid { grid-template-columns: 1fr; gap: 55px; }
  .lineup-feature__copy { max-width: 680px; margin-inline: auto; text-align: center; }
  .lineup-feature__copy .eyebrow, .lineup-feature__actions { justify-content: center; }
  .lineup-feature__poster { width: min(520px,88%); margin-inline: auto; }
  .foam__grid, .questions__grid { grid-template-columns: 1fr; }
  .service-area__grid { grid-template-columns: 1fr; gap: 38px; }
  .foam__visual { width: min(560px,90%); margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 245px; }
  .steps li > div { margin-bottom: 35px; }
  .last-call__inner { grid-template-columns: 1fr; align-items: start; }
  .last-call__inner > div:last-child { align-items: start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 65px; }
  .shell { width: min(calc(100% - 28px),1180px); }
  .topline__inner { min-height: 34px; justify-content: center; }
  .topline p { font-size: 9px; text-align: center; }
  .topline a { display: none; }
  .nav { min-height: 80px; }
  .brand__logo { height: 68px; }
  .brand__castle { width: 39px; height: 34px; }
  .brand__castle i { width: 7px; height: 22px; transform: translateY(-7px); }
  .brand__castle i:nth-child(2) { height: 27px; }
  .brand__castle::after { left: 12px; width: 10px; height: 14px; }
  .brand__words strong { font-size: 13px; }
  .brand__words small { font-size: 9px; }
  .nav__phone { display: none; }
  .hero { min-height: auto; padding: 48px 0 105px; }
  .hero h1 { font-size: clamp(45px,14.2vw,56px); letter-spacing: -.07em; }
  .hero__copy > p:not(.eyebrow) { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
  .hero__proof span { justify-content: center; font-size: 9px; line-height: 1.1; }
  .hero__product { width: 92%; }
  .hero__photo { border-width: 5px; border-radius: 28px 28px 60px 28px; box-shadow: 10px 11px 0 var(--blue-dark); }
  .hero__burst { right: -26px; top: -30px; width: 108px; height: 108px; }
  .hero__burst strong { font-size: 19px; }
  .hero__burst span { font-size: 10px; }
  .hero__label { left: -19px; bottom: 24px; min-width: 195px; }
  .hero__label strong { font-size: 31px; }
  .quick-call { padding-top: 18px; }
  .quick-call__inner { flex-direction: column; }
  .quick-call p { align-items: start; }
  .quick-call__inner > div { width: 100%; }
  .quick-call__inner > div a { flex: 1; justify-content: center; }
  .section { padding: 72px 0; }
  .lineup-feature { padding: 75px 0 88px; }
  .lineup-feature h2 { font-size: 40px; }
  .lineup-feature__copy > p:not(.eyebrow) { font-size: 15px; }
  .lineup-feature__actions { align-items: stretch; flex-direction: column; }
  .lineup-feature__actions > a:last-child { text-align: center; }
  .lineup-feature__poster { width: calc(100% - 18px); border-width: 4px; border-radius: 24px; box-shadow: 11px 12px 0 var(--blue); }
  .section-heading h2, .foam h2, .simple h2, .service-area h2, .questions h2, .last-call h2 { font-size: 40px; }
  .section-heading > p { font-size: 15px; }
  .filters { flex-wrap: nowrap; margin-top: 33px; padding-bottom: 9px; overflow-x: auto; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__photo { height: 250px; }
  .product-card__body > p:not(.product-type) { min-height: auto; }
  .product-card__action { gap: 8px; }
  .product-card__action a:first-child { font-size: 10px; }
  .foam { padding: 76px 0; }
  .foam__grid { gap: 62px; }
  .foam__visual { width: calc(100% - 12px); height: 390px; }
  .foam__copy ul { grid-template-columns: 1fr; }
  .foam__copy li { min-height: auto; display: flex; align-items: center; gap: 10px; }
  .foam__copy li span { margin: 0; }
  .foam__prices { grid-template-columns: 1fr; }
  .foam__actions { align-items: stretch; flex-direction: column; }
  .foam__actions > a:last-child { text-align: center; }
  .service-area { padding: 75px 0; }
  .service-area__copy > p { font-size: 15px; }
  .questions { padding: 75px 0; }
  .questions__grid { gap: 50px; }
  .accordion summary { font-size: 14px; }
  .last-call { padding: 65px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-end; gap: 16px; }
  .footer__bottom .design-credit { max-width: 150px; text-align: right; }
  .mobile-actions { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 64px; padding: 7px 10px calc(7px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -7px 25px rgba(8,20,56,.13); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--blue); border-radius: 11px; font-size: 12px; font-weight: 900; text-decoration: none; }
  .mobile-actions a:last-child { color: #fff; background: var(--blue); }
}

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