:root {
    --bg: #f4f0e8;
    --surface: #fffaf2;
    --surface-strong: #151515;
    --surface-soft: #efe5d6;
    --text: #1a1815;
    --muted: #655b4f;
    --line: rgba(26, 24, 21, 0.12);
    --copper: #b56629;
    --copper-dark: #7c4214;
    --gold: #ddbb76;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(38, 24, 11, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(221, 187, 118, 0.22), transparent 28%),
        linear-gradient(180deg, #f7f3ec 0%, #efe7dc 100%);
}

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

img {
    max-width: 100%;
}

button {
    font: inherit;
}

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

.topbar {
    background: #111111;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.topbar__inner p {
    margin: 0;
}

.topbar__contact {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 243, 236, 0.72);
    border-bottom: 1px solid rgba(26, 24, 21, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__logo {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand__text strong,
.brand__text small {
    display: block;
}

.brand__text strong {
    font-size: 1.08rem;
}

.brand__text small {
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
}

.nav a {
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--solid {
    color: var(--white);
    background: linear-gradient(145deg, var(--copper), var(--copper-dark));
    box-shadow: 0 18px 32px rgba(181, 102, 41, 0.2);
}

.button--ghost {
    color: var(--text);
    background: rgba(255, 250, 242, 0.75);
    border-color: rgba(26, 24, 21, 0.14);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(26, 24, 21, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.hero {
    padding: 0 0 48px;
}

.slider {
    padding: 0;
}

.slider__shell {
    position: relative;
    width: 100%;
}

.slider__viewport {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.slider__track {
    display: flex;
    transition: transform 0.55s ease;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    min-height: calc(100svh - 74px);
    overflow: hidden;
    background: #111111;
}

.slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.48) 45%, rgba(10, 10, 10, 0.24) 100%),
        linear-gradient(180deg, rgba(181, 102, 41, 0.24), transparent 60%);
}

.slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 74px);
    padding: 52px 0 110px;
    color: var(--white);
}

.slide__copy {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    max-width: 1180px;
}

.slide__content .eyebrow,
.slide__content .eyebrow::before {
    color: rgba(255, 255, 255, 0.86);
}

.slide__content h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.slide__content p {
    max-width: 640px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.8;
}

.slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.slide__ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.slider__nav {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.28);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.28s ease, transform 0.28s ease;
}

.slider__arrow:hover,
.slider__arrow:focus-visible {
    background: rgba(181, 102, 41, 0.82);
    transform: translateY(-2px);
}

.slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.35);
    backdrop-filter: blur(12px);
}

.slider__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.slider__dot.is-active {
    background: var(--gold);
    transform: scale(1.12);
}

.hero__grid {
    display: block;
    min-height: calc(100svh - 74px);
    width: 100%;
}

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 0 38px;
    min-height: calc(100svh - 74px);
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 236, 219, 0.98)),
        linear-gradient(135deg, rgba(181, 102, 41, 0.1), transparent);
    overflow: hidden;
}

.hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    width: min(calc(100% - 48px), 1440px);
    margin: 0 auto;
    text-align: center;
}

.hero__intro,
.hero__details {
    min-width: 0;
}

.hero__intro {
    width: 100%;
    max-width: 1680px;
}

.hero__details {
    max-width: 1360px;
}

.hero__content::before {
    content: "";
    position: absolute;
    inset: auto -100px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 102, 41, 0.18), transparent 70%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--copper-dark);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.contact-band h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.9rem, 2.9vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0.003em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 100%;
    text-wrap: pretty;
    margin-inline: auto;
}

.hero p,
.section-heading p,
.split__content p,
.contact-band p,
.faq-item p,
.service-card p,
.info-card p,
.step-card p,
.footer__text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.hero__details > p {
    max-width: 1460px;
    margin-top: 0;
    font-size: 1.02rem;
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.hero__badges li {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(26, 24, 21, 0.08);
    font-size: 0.95rem;
    font-weight: 700;
}

.stat-card,
.info-card,
.service-card,
.step-card,
.faq-item {
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
}

.step-card__index {
    color: var(--copper-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-card strong,
.info-card h3,
.service-card h3,
.step-card h3,
.faq-item h3,
.footer h3 {
    display: block;
    margin-top: 12px;
    margin-bottom: 0;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.stats {
    padding: 0 0 32px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    padding: 24px;
}

.stat-card strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: 84px 0;
}

.section--split {
    padding-top: 40px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: start;
}

.split--stacked {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.section-heading {
    max-width: 740px;
    margin-bottom: 34px;
}

.section-heading--services {
    max-width: 100%;
}

.section-heading--wide {
    max-width: 1440px;
    margin-bottom: 0;
    text-align: center;
}

.section-heading--wide .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.section-heading--services h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 2.55vw, 2.9rem);
    line-height: 1.08;
}

.section-heading--wide h2 {
    font-size: clamp(1.9rem, 3.1vw, 3.3rem);
    line-height: 1.08;
}

.split__content--wide {
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
}

.split__content--wide p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.95;
}

.split__content--wide p + p {
    margin-top: 18px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section--dark {
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(27, 24, 22, 0.98)),
        linear-gradient(135deg, rgba(181, 102, 41, 0.18), transparent);
}

.section--dark .section-heading p,
.section--dark .info-card p,
.section--dark .info-card a {
    color: rgba(255, 255, 255, 0.72);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card-grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.step-card,
.faq-item {
    padding: 28px;
}

.section--dark .info-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.info-card__line {
    width: 58px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
}

.info-card h3,
.service-card h3,
.step-card h3,
.faq-item h3,
.footer h3 {
    font-size: 1.8rem;
    line-height: 1;
}

.info-card a {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 800;
    color: var(--gold);
}

.service-card {
    background: rgba(255, 255, 255, 0.62);
}

.section--accent {
    background:
        linear-gradient(180deg, rgba(210, 189, 150, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

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

.step-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 250, 242, 0.88);
}

.step-card::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 102, 41, 0.12), transparent 70%);
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(181, 102, 41, 0.12), rgba(255, 255, 255, 0.64)),
        rgba(255, 250, 242, 0.82);
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
}

.section--faq {
    padding-top: 16px;
}

.faq {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
}

.faq__list {
    display: grid;
    gap: 18px;
}

.section--service-map {
    padding-top: 24px;
}

.service-region {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 24px;
    align-items: stretch;
}

.service-region__intro,
.service-map {
    border-radius: 30px;
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
}

.service-region__intro {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 236, 219, 0.96)),
        linear-gradient(135deg, rgba(181, 102, 41, 0.08), transparent);
}

.section-heading--contact {
    max-width: 780px;
    margin-bottom: 18px;
}

.section-heading--contact h2 {
    font-size: clamp(2rem, 3.15vw, 3.45rem);
    line-height: 1.08;
}

.service-region__lead {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.88;
}

.service-region__lead + .service-region__lead {
    margin-top: 14px;
}

.service-region__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.service-region__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.service-region__badges li {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(26, 24, 21, 0.08);
    font-size: 0.94rem;
    font-weight: 700;
}

.service-map {
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(19, 19, 19, 0.96), rgba(34, 28, 22, 0.98)),
        linear-gradient(135deg, rgba(181, 102, 41, 0.2), transparent);
}

.service-map__canvas {
    min-height: 500px;
    padding: 28px;
}

.service-map__canvas--list {
    display: grid;
    align-content: start;
    gap: 18px;
}

.service-map__group {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-map__group h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-map__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-map__chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    font-weight: 700;
}

.service-map__legend {
    padding: 22px 28px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
}

.service-map__legend strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-map__legend p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.72;
}

.price-page .section {
    padding-top: 52px;
}

.price-hero {
    padding-bottom: 28px;
}

.price-hero__inner {
    padding: 38px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 236, 219, 0.96)),
        linear-gradient(135deg, rgba(181, 102, 41, 0.08), transparent);
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
}

.price-hero .section-heading--wide {
    max-width: 1100px;
    margin-bottom: 0;
    text-align: left;
}

.price-hero .section-heading--wide .eyebrow {
    justify-content: flex-start;
}

.price-hero h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.price-hero__lead {
    max-width: 1000px;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.82;
}

.price-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.price-section {
    padding-top: 12px;
}

.price-card {
    margin-bottom: 22px;
    border-radius: 26px;
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.price-card__header {
    padding: 24px 26px 18px;
    border-bottom: 1px solid rgba(26, 24, 21, 0.08);
    background: linear-gradient(135deg, rgba(181, 102, 41, 0.08), rgba(255, 255, 255, 0.44));
}

.price-card__header h2,
.price-notes h2,
.price-article h3 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.price-table {
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.price-table thead th {
    padding: 16px 18px;
    background: rgba(17, 17, 17, 0.94);
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-table tbody th,
.price-table tbody td {
    padding: 15px 18px;
    border-top: 1px solid rgba(26, 24, 21, 0.08);
    font-size: 0.98rem;
}

.price-table tbody th {
    width: 34%;
    color: var(--text);
    text-align: left;
    font-weight: 800;
}

.price-table tbody td {
    color: var(--muted);
    font-weight: 700;
}

.price-table tbody tr:nth-child(even) {
    background: rgba(181, 102, 41, 0.03);
}

.price-notes,
.price-article__inner {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(26, 24, 21, 0.08);
    box-shadow: var(--shadow);
}

.price-notes {
    margin-top: 10px;
}

.price-notes ul,
.price-article__list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.price-notes li,
.price-article__list li {
    line-height: 1.84;
    color: var(--muted);
}

.price-article {
    padding-top: 14px;
    padding-bottom: 84px;
}

.price-article__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.price-article__inner .section-heading--wide {
    text-align: left;
    margin-bottom: 20px;
}

.price-article__inner .section-heading--wide .eyebrow {
    justify-content: flex-start;
}

.price-article__inner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.price-article__inner p + p,
.price-article__inner h3 {
    margin-top: 16px;
}

.footer {
    color: rgba(255, 255, 255, 0.82);
    background: #111111;
    padding: 64px 0 24px;
}

.brand--footer .brand__text small,
.footer__text {
    color: rgba(255, 255, 255, 0.62);
}

.brand--footer .brand__logo {
    width: 72px;
    height: 72px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
    padding-bottom: 28px;
}

.footer__links {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.footer__links li + li {
    margin-top: 12px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .nav,
    .header__cta {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    .header__inner {
        position: relative;
    }

    .nav.is-open {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 250, 242, 0.98);
        border: 1px solid rgba(26, 24, 21, 0.08);
        box-shadow: var(--shadow);
    }

    .nav.is-open a {
        padding: 14px 10px;
    }

    .hero__grid,
    .split,
    .contact-band,
    .faq,
    .service-region {
        grid-template-columns: 1fr;
    }

    .hero__grid,
    .hero__content {
        min-height: auto;
    }

    .slide,
    .slide__content {
        min-height: calc(100svh - 74px);
    }

    .card-grid,
    .card-grid--products,
    .steps,
    .stats__grid,
    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-hero__inner,
    .price-notes,
    .price-article__inner {
        padding: 24px;
    }

    .price-table table {
        min-width: 680px;
    }
}

@media (max-width: 720px) {
    .topbar__inner,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .price-table table {
        min-width: 620px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero__content {
        min-height: calc(100svh - 122px);
        justify-content: center;
        padding: 28px 0 24px;
    }

    .hero__copy {
        width: min(calc(100% - 24px), 1180px);
    }

    .hero__details > p {
        max-width: none;
    }

    .hero__copy {
        text-align: left;
        align-items: flex-start;
    }

    .hero h1 {
        margin-inline: 0;
        max-width: 12ch;
    }

    .eyebrow {
        justify-content: flex-start;
    }

    .hero__actions,
    .hero__badges {
        justify-content: flex-start;
    }

    .slider {
        padding-top: 0;
    }

    .slider__viewport {
        border-radius: 0;
    }

    .slide,
    .slide__content {
        min-height: calc(100svh - 74px);
    }

    .slide__content {
        padding: 28px 0 96px;
    }

    .slide__copy {
        width: min(calc(100% - 24px), var(--container));
    }

    .slide__content h2 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

    .slider__nav {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .slider__dots {
        gap: 8px;
        padding: 10px 14px;
    }

    .hero__content,
    .contact-band,
    .info-card,
    .service-card,
    .step-card,
    .faq-item,
    .service-region__intro {
        padding: 24px;
    }

    .service-map__canvas {
        min-height: 420px;
        padding: 20px;
    }

    .hero h1 {
        max-width: 11ch;
    }

    .card-grid,
    .card-grid--products,
    .steps,
    .stats__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .section-heading h2,
    .contact-band h2 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
    }

    .brand__text small {
        font-size: 0.8rem;
    }

    .brand__logo {
        width: 56px;
        height: 56px;
    }
}
