:root {
    --ink: #07082e;
    --muted: #626575;
    --soft: #8d8b83;
    --line: #e5e0d6;
    --paper: #fff;
    --wash: #f7f5f0;
    --wash-2: #efebe2;
    --navy: #07082e;
    --red: #c9171f;
    --gold: #9b8757;
    --shadow: 0 18px 48px rgba(7, 8, 46, 0.08);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    min-width: 0;
}
.narrow {
    width: min(1040px, calc(100% - 48px));
    margin-inline: auto;
    min-width: 0;
}
h1,
h2,
h3,
.brand,
.nav-primary a,
.tile-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}
p {
    margin: 0 0 1.15rem;
}
.preview-gate-page {
    min-height: 100vh;
    background:
        linear-gradient(rgb(255 255 255 / 82%), rgb(255 255 255 / 88%)),
        url("/storage/storefront-cache/520x832-cd078124b600b995-cca9b8-32db4fa0e58a472c8a0f29e4107518camv2.jpg") center/cover;
}
.preview-gate {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
}
.preview-card {
    width: min(100%, 560px);
    padding: clamp(28px, 7vw, 58px);
    border: 1px solid var(--line);
    background: rgb(255 255 255 / 94%);
    text-align: center;
    box-shadow: var(--shadow);
}
.preview-card small {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.preview-card h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.05;
    text-transform: uppercase;
}
.preview-card p {
    color: var(--muted);
}
.preview-card form {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}
.preview-card label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: left;
    text-transform: uppercase;
}
.preview-card input {
    width: 100%;
    height: 46px;
    border: 1px solid #c8c1b3;
    padding: 0 12px;
    font: inherit;
}
.password-reveal {
    position: relative;
    display: block;
}
.password-reveal input {
    padding-right: 78px !important;
}
.password-reveal-button {
    position: absolute;
    top: 50%;
    right: 6px;
    min-width: 60px;
    height: 32px;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    background: var(--wash);
    color: var(--ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.password-reveal-button:hover,
.password-reveal-button:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.contact-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1800;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-widget > summary {
    list-style: none;
}

.contact-widget > summary::-webkit-details-marker {
    display: none;
}

.contact-widget-launcher,
.contact-widget-submit,
.contact-widget-close {
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    cursor: pointer;
}

.contact-widget-launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    box-shadow: var(--shadow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-widget-launcher svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-widget-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(390px, calc(100vw - 28px));
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 70px rgb(7 8 46 / 18%);
}

.contact-widget-panel[hidden] {
    display: none;
}

.contact-widget:not([open]) .contact-widget-panel {
    display: none;
}

.contact-widget-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
}

.contact-widget-head small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.contact-widget-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-widget-close {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    padding: 0;
    font-size: 22px;
    line-height: 1;
}

.contact-widget-intro {
    margin: 0;
    padding: 16px 18px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-widget-form {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.contact-widget-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-widget-field input,
.contact-widget-field textarea {
    width: 100%;
    border: 1px solid #c8c1b3;
    padding: 11px 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.contact-widget-field textarea {
    min-height: 118px;
    resize: vertical;
}

.contact-widget-field input:focus,
.contact-widget-field textarea:focus,
.contact-widget-launcher:focus-visible,
.contact-widget-submit:focus-visible,
.contact-widget-close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.contact-widget-field small {
    display: block;
    min-height: 17px;
    margin-top: 4px;
    color: var(--red);
    font-size: 12px;
}

.contact-widget-status {
    min-height: 22px;
    color: var(--muted);
    font-size: 13px;
}

.contact-widget-status[data-type="success"] {
    color: #236345;
}

.contact-widget-status[data-type="error"] {
    color: var(--red);
}

.contact-widget-submit {
    min-height: 44px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-widget-submit:disabled {
    cursor: wait;
    opacity: .65;
}

.contact-widget-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.preview-admin-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--soft);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.top-strip {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.top-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 16px;
    padding: 9px 0;
}
.header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--line);
    z-index: 1000;
}
.utility {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 24px;
    align-items: center;
    padding: 24px 0 12px;
}
.search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #c8c1b3;
    height: 42px;
    padding: 0 14px;
    color: #8a8a8a;
    background: #fff;
    min-width: 0;
}
.search svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    stroke: currentColor;
    fill: none;
}
.search input {
    border: 0;
    outline: 0;
    width: 100%;
    min-width: 0;
    background: transparent;
    font: inherit;
    color: var(--ink);
}
.live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 1200;
    max-height: 460px;
    overflow: auto;
    text-align: left;
}
.live-search-results[hidden] {
    display: none;
}
.live-search-heading {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--soft);
}
.live-search-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.live-search-thumb {
    width: 44px;
    aspect-ratio: 5/8;
    background: var(--wash);
    object-fit: cover;
    border: 1px solid var(--line);
}
.live-search-title {
    display: block;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.live-search-meta {
    display: block;
    font-size: 11px;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.live-search-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--wash);
}
.search-page-form {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}
.search-page-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #c8c1b3;
    padding: 0 15px;
    font: inherit;
}
.search-page-form .live-search-results {
    top: 56px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.brand {
    text-align: center;
    line-height: 0.95;
    font-size: 34px;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}
.brand small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.34em;
    margin-bottom: 4px;
}
.utility-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.icon-link {
    display: grid;
    justify-items: center;
    gap: 4px;
}
.icon-link span:first-child {
    font-size: 22px;
    line-height: 1;
}
.bag-icon {
    width: 25px;
    height: 25px;
    stroke: var(--ink);
    stroke-width: 1.8;
    fill: none;
}
.user-icon {
    width: 25px;
    height: 25px;
    stroke: var(--ink);
    stroke-width: 1.7;
    fill: none;
}
.bag-wrap {
    position: relative;
    display: inline-flex;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    display: inline-flex;
    min-width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}
.deliver-to {
    display: grid;
    justify-items: center;
    gap: 4px;
}
.deliver-to label {
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1;
}
.deliver-to select {
    height: 27px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font:
        700 11px Arial,
        Helvetica,
        sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 18px 0 3px;
    cursor: pointer;
}
.nav-primary {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 10px 0 14px;
    overflow: visible;
}
.nav-item {
    position: relative;
}
.nav-primary a {
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-primary > a,
.nav-item > a {
    padding-bottom: 14px;
}
.nav-primary a:hover {
    color: var(--gold);
}
.mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, calc(100vw - 48px));
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    z-index: 1001;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
    display: grid;
}
.mega h3 {
    font-size: 15px;
    margin: 0 0 12px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.09em;
}
.mega a {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    padding: 6px 0;
    color: #333846;
    white-space: normal;
}
.mobile-menu {
    display: none;
    border: 0;
}
.mobile-menu summary {
    list-style: none;
    cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker {
    display: none;
}
.mobile-menu > summary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
}
.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
}
.hamburger-icon {
    position: relative;
}
.hamburger-icon:before,
.hamburger-icon:after {
    content: "";
    position: absolute;
    left: 0;
}
.hamburger-icon:before {
    top: -8px;
}
.hamburger-icon:after {
    top: 8px;
}
.mobile-menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.mobile-menu-panel {
    border-top: 1px solid var(--line);
    padding: 8px 0 16px;
}
.mobile-menu-section {
    border-bottom: 1px solid var(--line);
}
.mobile-menu-section > summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mobile-menu-section > summary:after {
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
}
.mobile-menu-section[open] > summary:after {
    content: "-";
}
.mobile-menu-links {
    display: grid;
    gap: 8px;
    padding: 0 0 16px;
}
.mobile-menu-links a {
    display: block;
    padding: 4px 0;
    color: #333846;
    font-size: 15px;
}
.mobile-menu-heading {
    display: block;
    margin: 12px 0 4px;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.mobile-recommendations,
.mobile-catalog-controls,
.mobile-product-count {
    display: none;
}
main {
    background: #fff;
}
.breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 22px 0 10px;
    color: var(--soft);
}
.breadcrumb a {
    color: var(--ink);
}
.breadcrumb span:before,
.breadcrumb a + a:before {
    content: " > ";
    margin: 0 7px;
    color: var(--soft);
}
.page-hero {
    padding: 22px 0 6px;
}
.title-band {
    background: var(--wash);
    text-align: center;
    padding: 17px 18px;
    margin-bottom: 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.title-band h1 {
    font-size: 27px;
    margin: 0;
    text-transform: uppercase;
}
.hero {
    position: relative;
    min-height: 560px;
    background: var(--wash);
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
}
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.35);
    opacity: 0.5;
}
.hero-panel {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 48px));
    padding: 86px 0;
}
.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 6px 0 16px;
    text-transform: none;
}
.hero p {
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.38;
    margin: 0 auto 28px;
    max-width: 920px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 12px;
    cursor: pointer;
}
.button.light {
    background: #fff;
    color: var(--ink);
}
.button.subtle {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}
section {
    padding: 46px 0;
}
.compact-section {
    padding-top: 18px;
}
.section-title {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 860px;
}
.section-title h2,
.section-head h2 {
    font-size: 40px;
    line-height: 1.12;
    margin: 0;
    text-transform: uppercase;
}
.section-title p,
.section-head p {
    max-width: 760px;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.75;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin: 0 0 28px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 16px;
}
.category-card {
    text-align: center;
    display: block;
}
.media,
.catalog-media,
.editorial-tile {
    aspect-ratio: 5/8;
    background: var(--wash);
    overflow: hidden;
    border: 1px solid var(--line);
}
.media img,
.catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: var(--wash);
    border: 1px solid var(--line);
    color: var(--soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.category-card:hover img,
.product-card:hover img {
    transform: scale(1.035);
}
.category-card h3,
.tile-title {
    font-size: 18px;
    text-transform: uppercase;
    margin: 12px 0 0;
}
.category-card p {
    display: none;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px 20px;
}
.product-card {
    text-align: center;
    display: block;
}
.product-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 1.38;
    margin: 12px auto 6px;
    max-width: 92%;
    font-weight: 500;
}
.price {
    font-weight: 700;
    color: var(--ink);
}
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.catalog-controls {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(220px, 280px) minmax(220px, 280px);
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
}
.catalog-controls-wrap .catalog-controls {
    margin: 16px 0 0;
}
.catalog-result-count {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.catalog-sort-control,
.catalog-filter-control {
    position: relative;
    min-width: 0;
    border: 1px solid #d3cec4;
    background: #f7f7f7;
}
.catalog-sort-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
}
.catalog-sort-control label,
.catalog-filter-control summary {
    color: var(--ink);
    font-size: 15px;
}
.catalog-sort-control label {
    white-space: nowrap;
}
.catalog-sort-control select {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 34px 0 8px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
}
.catalog-sort-control:after,
.catalog-filter-control summary:after {
    content: "";
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
    pointer-events: none;
}
.catalog-sort-control:after {
    position: absolute;
    right: 14px;
    top: 15px;
}
.catalog-filter-control summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 14px 0 12px;
    list-style: none;
    cursor: pointer;
}
.catalog-filter-control summary::-webkit-details-marker {
    display: none;
}
.catalog-filter-panel {
    position: absolute;
    right: -1px;
    left: -1px;
    z-index: 20;
    display: grid;
    border: 1px solid #d3cec4;
    border-top: 0;
    background: #fff;
    box-shadow: 0 16px 30px rgb(8 10 50 / 12%);
}
.catalog-filter-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 10px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.catalog-filter-panel a span {
    color: var(--muted);
    font-size: 12px;
}
.catalog-filter-panel a.active,
.catalog-filter-panel a:hover {
    background: var(--wash);
    font-weight: 700;
}
.editorial-band {
    background: var(--wash);
    text-align: center;
    padding: 68px 0;
    border-block: 1px solid var(--line);
}
.editorial-band h2 {
    font-size: 44px;
    margin: 0 0 18px;
    text-transform: none;
}
.editorial-band p {
    font-size: 18px;
    line-height: 1.72;
    max-width: 880px;
    margin: 0 auto 14px;
}
.editorial-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 940px;
    margin: 42px auto 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    background: var(--line);
    border: 1px solid var(--line);
}
.editorial-links a {
    padding: 14px;
    background: #fff;
}
.content-page {
    padding-top: 42px;
}
.content-layout {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    min-width: 0;
}
.content-layout.no-image {
    display: block;
    max-width: 900px;
}
.feature-image {
    margin: 0;
    background: var(--wash);
    border: 1px solid var(--line);
    padding: 10px;
    min-width: 0;
}
.feature-image img {
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
}
.rich-copy {
    font-size: 17px;
    line-height: 1.82;
    max-width: 800px;
    min-width: 0;
    overflow-wrap: anywhere;
}
.rich-copy .lead {
    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1.48;
    color: var(--ink);
    margin-bottom: 26px;
}
.rich-copy p {
    color: #171a2e;
}
.page-gallery-section {
    background: var(--wash);
    border-top: 1px solid var(--line);
}
.editorial-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.story-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.editorial-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(340px, 0.92fr);
    gap: 58px;
    align-items: start;
    min-width: 0;
}
.product-gallery {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
}
.thumbs {
    display: grid;
    gap: 10px;
    align-content: start;
    min-width: 0;
    max-width: 100%;
}
.thumb-button {
    display: block;
    width: 94px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background: var(--wash);
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
}
.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-button.active,
.thumb-button:focus-visible {
    border-color: var(--navy);
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}
.main-product-image {
    background: var(--wash);
    border: 1px solid var(--line);
    min-width: 0;
    max-width: 100%;
}
.main-product-button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}
.main-product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.product-lightbox {
    width: min(1120px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    border: 0;
    background: transparent;
    padding: 0;
}
.product-lightbox::backdrop {
    background: rgba(7, 8, 46, 0.78);
}
.product-lightbox-inner {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(820px, calc(100vh - 32px));
    background: #111225;
    padding: 50px;
}
.product-lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 132px);
    object-fit: contain;
}
.product-lightbox-close,
.product-lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font:
        700 12px Arial,
        Helvetica,
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 14px;
    cursor: pointer;
}
.product-lightbox-close {
    top: 14px;
    right: 14px;
}
.product-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}
.product-lightbox-nav.prev {
    left: 14px;
}
.product-lightbox-nav.next {
    right: 14px;
}
.product-copy {
    position: sticky;
    top: 24px;
    min-width: 0;
    max-width: 100%;
}
.product-copy h1 {
    font-size: 38px;
    line-height: 1.16;
    margin: 0 0 18px;
    overflow-wrap: anywhere;
}
.product-copy .price {
    font-size: 25px;
    margin: 0 0 22px;
}
.product-copy p,
.product-description {
    line-height: 1.78;
    color: #303442;
    overflow-wrap: anywhere;
}
.product-copy form {
    margin-top: 28px;
}
.newsletter {
    background: var(--wash);
    text-align: center;
    padding: 58px 0;
    border-top: 1px solid var(--line);
}
.newsletter h2 {
    font-size: 28px;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.newsletter form {
    display: flex;
    justify-content: center;
}
.newsletter input {
    width: min(460px, 100%);
    height: 48px;
    border: 1px solid #c8c1b3;
    padding: 0 14px;
    font: inherit;
}
.newsletter button {
    height: 48px;
    border: 0;
    background: var(--navy);
    color: #fff;
    padding: 0 44px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer {
    background: var(--navy);
    color: #fff;
    padding: 52px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.footer h3 {
    font-size: 16px;
    margin: 0 0 16px;
    text-transform: uppercase;
}
.footer a,
.footer p {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.85;
}
.flash {
    background: #e8f8ef;
    border: 1px solid #a7e0bd;
    color: #173d28;
    padding: 12px 14px;
    margin: 18px 0;
}
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 38px 0 0;
    max-width: 100%;
    flex-wrap: wrap;
}
.pager-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    padding: 0 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fff;
}
.pager-link.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.pager-link.disabled {
    color: #9a9a9a;
    background: #f7f7f7;
}
.lux-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px;
    box-shadow: 0 10px 34px rgba(7, 8, 46, 0.04);
    overflow-x: auto;
}
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.span-2 {
    grid-column: 1/-1;
}
.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    padding: 13px 14px;
    font: inherit;
    background: #fff;
}
.field textarea {
    min-height: 130px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 16px 14px;
    text-align: left;
}
.table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.total-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 22px;
    font-weight: 800;
    margin: 24px 0;
}
.score {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 800;
    background: #f3efe5;
    color: #815f20;
}
.score.good {
    background: #e7f5ee;
    color: #255c42;
}
.score.bad {
    background: #fdeaea;
    color: #902d2d;
}
.muted {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}
@media (max-width: 1200px) {
    .utility {
        grid-template-columns: 280px 1fr 270px;
    }
    .nav-primary {
        gap: 16px;
    }
    .nav-primary a {
        font-size: 14px;
    }
    .brand {
        font-size: 29px;
    }
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .container,
    .narrow {
        width: min(100% - 32px, 1280px);
    }
    .top-strip .container {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }
    .top-strip span:nth-child(n + 2) {
        display: none;
    }
    .utility {
        grid-template-areas:
            "menu brand actions"
            "search search search";
        grid-template-columns: 44px minmax(0, 1fr) 96px;
        gap: 0 8px;
        padding: 14px 0 0;
    }
    .brand {
        grid-area: brand;
        align-self: center;
        text-align: center;
        font-size: 19px;
        line-height: 0.95;
        letter-spacing: 0.03em;
    }
    .brand small {
        font-size: 8px;
        letter-spacing: 0.32em;
        margin-bottom: 3px;
    }
    .search {
        grid-area: search;
        flex-direction: row-reverse;
        height: 48px;
        margin-top: 12px;
        border: 0;
        border-top: 1px solid var(--line);
        background: #f3f3f3;
        padding: 0 12px;
    }
    .utility-links {
        grid-area: actions;
        align-self: center;
        justify-content: flex-end;
        gap: 15px;
        font-size: 0;
        letter-spacing: 0;
        flex-wrap: nowrap;
    }
    .utility-links .icon-link > span:last-child {
        display: none;
    }
    .deliver-to {
        display: none;
    }
    .nav-primary {
        display: none;
    }
    .mobile-menu {
        grid-area: menu;
        display: block;
        align-self: center;
    }
    .mobile-menu-panel {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1400;
        max-height: calc(100vh - 140px);
        overflow: auto;
        border-top: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow);
        padding: 6px 24px 22px;
    }
    .category-grid,
    .product-grid,
    .editorial-gallery,
    .story-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .content-layout,
    .product-detail,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .content-layout.no-image {
        max-width: none;
    }
    .product-gallery {
        grid-template-columns: 1fr;
    }
    .thumbs {
        display: flex;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
    }
    .thumb-button {
        width: 78px;
    }
    .product-copy {
        position: static;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .container,
    .narrow {
        width: min(100% - 24px, 1280px);
    }
    .search {
        max-width: none;
    }
    .search-page-form {
        grid-template-columns: 1fr;
    }
    .search-page-form .button {
        width: 100%;
    }
    .brand {
        font-size: 19px;
    }
    .brand small {
        font-size: 7px;
    }
    .utility-links {
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    .deliver-to {
        display: none;
    }
    .hero {
        min-height: 430px;
    }
    .hero p {
        font-size: 19px;
    }
    .page-hero {
        padding: 10px 0 0;
    }
    .breadcrumb {
        margin: 4px 0 8px;
        font-size: 10px;
        overflow-wrap: anywhere;
    }
    .title-band {
        padding: 17px 12px;
        margin-bottom: 0;
    }
    .title-band h1 {
        font-size: 23px;
    }
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 12px;
    }
    .category-card,
    .product-card {
        min-width: 0;
    }
    .category-card h3,
    .tile-title {
        font-size: 15px;
        overflow-wrap: anywhere;
    }
    .product-card h3 {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 15px;
        line-height: 1.3;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .catalog-toolbar {
        display: none;
    }
    .mobile-recommendations {
        display: block;
        padding: 18px 0 10px;
    }
    .catalog-section {
        padding-top: 10px;
    }
    .mobile-recommendations h2 {
        margin: 0 0 10px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 18px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0;
    }
    .mobile-recommendation-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .mobile-recommendation-card {
        display: block;
        min-width: 0;
        border: 1px solid var(--line);
        background: #fff;
        text-align: center;
    }
    .mobile-recommendation-card .catalog-media {
        border: 0;
    }
    .mobile-recommendation-card h3 {
        min-height: 48px;
        margin: 12px 10px 8px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 500;
    }
    .mobile-recommendation-card .price {
        margin: 0 0 16px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
    }
    .mobile-catalog-controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 10px;
    }
    .mobile-sort-control,
    .mobile-filter-control {
        position: relative;
        min-width: 0;
        border: 1px solid #d3cec4;
        background: #f7f7f7;
    }
    .mobile-sort-control {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        height: 48px;
        padding: 0 8px;
    }
    .mobile-sort-control label,
    .mobile-filter-control summary {
        color: var(--ink);
        font-size: 15px;
    }
    .mobile-sort-control select {
        width: 100%;
        min-width: 0;
        border: 0;
        background: transparent;
        color: transparent;
        cursor: pointer;
    }
    .mobile-sort-control:after,
    .mobile-filter-control summary:after {
        content: "";
        width: 11px;
        height: 11px;
        border-right: 2px solid var(--ink);
        border-bottom: 2px solid var(--ink);
        transform: rotate(45deg);
    }
    .mobile-sort-control:after {
        position: absolute;
        right: 14px;
        top: 16px;
    }
    .mobile-filter-control summary {
        display: flex;
        height: 48px;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0 14px 0 10px;
        list-style: none;
        cursor: pointer;
    }
    .mobile-filter-control summary::-webkit-details-marker {
        display: none;
    }
    .mobile-filter-panel {
        position: absolute;
        right: -1px;
        left: -1px;
        z-index: 20;
        display: grid;
        border: 1px solid #d3cec4;
        border-top: 0;
        background: #fff;
    }
    .mobile-filter-panel a {
        padding: 12px 10px;
        border-top: 1px solid var(--line);
        font-size: 14px;
    }
    .mobile-filter-panel a.active {
        font-weight: 700;
        background: var(--wash);
    }
    .mobile-product-count {
        display: block;
        margin: 0 0 10px;
        text-align: center;
        font-size: 13px;
        color: var(--muted);
    }
    .catalog-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 12px;
    }
    .catalog-result-count {
        grid-column: 1 / -1;
        order: 3;
        text-align: center;
        letter-spacing: 0;
        text-transform: none;
    }
    .catalog-sort-control,
    .catalog-filter-control {
        background: #f7f7f7;
    }
    .catalog-sort-control {
        min-height: 48px;
        padding: 0 8px;
    }
    .catalog-sort-control label,
    .catalog-filter-control summary {
        font-size: 15px;
    }
    .catalog-sort-control select {
        position: absolute;
        inset: 0;
        height: 100%;
        opacity: 0;
    }
    .editorial-gallery,
    .story-gallery,
    .footer-grid,
    .editorial-links,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .newsletter form {
        display: block;
    }
    .newsletter button,
    .newsletter input {
        width: 100%;
    }
    .section-title h2,
    .section-head h2 {
        font-size: 30px;
    }
    .section-head {
        display: block;
    }
    .content-layout {
        gap: 28px;
    }
    .rich-copy .lead {
        font-size: 21px;
    }
    .lux-panel {
        padding: 20px;
    }
    .product-lightbox-inner {
        padding: 54px 14px;
    }
    .product-lightbox-nav {
        top: auto;
        bottom: 14px;
        transform: none;
    }
    .product-lightbox-nav.prev {
        left: 14px;
    }
    .product-lightbox-nav.next {
        right: 14px;
    }
    .table {
        min-width: 520px;
    }
}
@media (max-width: 420px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-title h2,
    .section-head h2 {
        font-size: 27px;
    }
    .product-copy h1 {
        font-size: 30px;
    }
}
@media (max-width: 700px) {
    .contact-widget {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }
    .contact-widget-launcher {
        margin-left: auto;
        min-height: 46px;
    }
    .contact-widget-panel {
        right: 0;
        bottom: calc(100% + 10px);
        width: 100%;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
.product-option-field {
    margin: 22px 0 0;
}
.search-result-links {
    margin-top: 0;
}
.search-result-links.spaced {
    margin-bottom: 34px;
}

/* Ever Dry compatibility layer using The Weaving Shed visual system */
:root {
    --site-blue: var(--navy);
    --site-blue-deep: var(--navy);
    --site-gold: var(--gold);
    --site-gold-strong: var(--gold);
    --site-ink: var(--ink);
    --site-text: #171a2e;
    --site-muted: var(--muted);
    --site-border: var(--line);
    --site-border-strong: #c8c1b3;
    --site-surface: #fff;
    --site-surface-solid: #fff;
    --site-shadow: var(--shadow);
    --site-radius-xl: 0;
    --site-radius-lg: 0;
    --site-radius-md: 0;
}

.site-shell,
.allpave-shell,
.allpave-service-shell,
.allpave-form-shell {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    min-width: 0;
}

.site-topbar,
.site-offer-strip {
    background: var(--navy);
    color: #fff;
    border: 0;
    font-size: 13px;
    letter-spacing: .02em;
}

.site-topbar-inner,
.site-offer-strip-inner {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.site-topbar-links,
.site-topbar-meta,
.site-topbar-social-wrap,
.site-cta-group,
.allpave-hero-actions,
.allpave-service-actions,
.allpave-service-inline-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.site-topbar a,
.site-topbar span,
.site-offer-item {
    color: #fff;
}

.site-topbar-whatsapp,
.site-topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    font-weight: 700;
    line-height: 1;
}

.site-topbar-whatsapp {
    padding: 6px 10px;
    border: 1px solid rgb(246 194 77 / 28%);
    background: rgb(255 255 255 / 6%);
    color: #f4efe2;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.site-topbar-whatsapp:hover,
.site-topbar-whatsapp:focus-visible {
    border-color: rgb(246 194 77 / 56%);
    background: rgb(246 194 77 / 12%);
    color: #fff4cf;
}

.site-topbar-whatsapp svg {
    color: #f6c24d;
}

.site-topbar svg,
.site-topbar-whatsapp svg,
.site-topbar-social svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex: 0 0 18px;
}

.site-offer-strip {
    border-top: 1px solid rgb(255 255 255 / 14%);
    overflow: hidden;
}

.site-offer-marquee {
    overflow: hidden;
}

.site-offer-track {
    display: flex;
    width: max-content;
    animation: site-offer-scroll var(--site-offer-duration, 22s) linear infinite;
}

.site-offer-lane {
    display: flex;
    gap: 22px;
    padding: 9px 22px 9px 0;
    white-space: nowrap;
}

.site-offer-item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@keyframes site-offer-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.site-header-inner {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px 0 14px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-brand-mark {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border: 1px solid var(--line);
    background: #fff;
    padding: 5px;
}

.site-brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 500;
    letter-spacing: .06em;
    line-height: .98;
    text-transform: uppercase;
}

.site-brand-tagline {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    min-width: 0;
}

.site-nav ul,
.site-footer ul,
.site-mobile-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.site-menu-item {
    position: relative;
}

.site-menu-link {
    display: inline-flex;
    align-items: center;
    padding: 0 0 14px;
    color: var(--ink);
}

.site-menu-link.is-active {
    color: var(--gold);
}

.site-submenu-shell {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1200;
    width: min(288px, calc(100vw - 48px));
    transform: translateX(-50%);
    padding-top: 12px;
}

.site-menu-item:hover .site-submenu-shell,
.site-menu-item:focus-within .site-submenu-shell {
    display: block;
}

.site-submenu-panel {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0;
}

.site-submenu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.site-submenu-link,
.site-mobile-child-link {
    display: block;
    color: #333846;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.site-submenu-link {
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
}

.site-submenu-link:last-child {
    border-bottom: 0;
}

.site-submenu-link:hover,
.site-submenu-link:focus-visible,
.site-submenu-link.is-active {
    background: var(--wash);
    color: var(--navy);
}

.site-mobile-children {
    display: none;
}

.site-nav > ul,
.site-nav .menu,
.site-nav nav > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.site-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-footer a:hover {
    color: var(--gold);
}

.site-btn,
.site-phone-pill,
.allpave-btn,
.allpave-service-btn,
.allpave-form-submit,
.neo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
}

.site-btn-secondary,
.site-phone-pill,
.allpave-btn-secondary,
.allpave-service-btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.site-btn[href*="wa.me"],
.allpave-btn[href*="wa.me"],
.allpave-service-btn[href*="wa.me"] {
    border-color: #25d366;
    background: #25d366;
    color: #06180d;
}

.site-btn[href*="wa.me"]:hover,
.site-btn[href*="wa.me"]:focus-visible,
.allpave-btn[href*="wa.me"]:hover,
.allpave-btn[href*="wa.me"]:focus-visible,
.allpave-service-btn[href*="wa.me"]:hover,
.allpave-service-btn[href*="wa.me"]:focus-visible {
    border-color: #128c7e;
    background: #128c7e;
    color: #fff;
}

.site-burger,
.site-mobile-close {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    min-height: 42px;
    padding: 0 14px;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-mobile-overlay,
.site-mobile-panel {
    display: none;
}

.site-main {
    background: #fff;
}

.allpave-hero,
.allpave-service-hero,
.allpave-form-page {
    position: relative;
    padding: 46px 0;
    background: var(--wash);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.allpave-hero-media,
.everdry-hero-media,
.allpave-service-hero::before {
    position: absolute;
    inset: 0;
    background-image: var(--everdry-hero-image, var(--allpave-service-hero-image));
    background-position: center;
    background-size: cover;
    filter: grayscale(.35);
    opacity: .22;
    content: "";
}

.allpave-hero-overlay {
    display: none;
}

.allpave-hero-grid,
.allpave-service-hero-grid {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 42px;
    align-items: center;
}

.allpave-hero-copy,
.allpave-service-hero-grid > div:first-child {
    min-width: 0;
    text-align: left;
}

.allpave-eyebrow,
.allpave-service-eyebrow,
.allpave-form-eyebrow,
.allpave-google-pill {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.allpave-hero h1,
.allpave-service-hero h1,
.allpave-form-intro h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.allpave-hero p,
.allpave-service-hero p,
.allpave-form-intro p {
    max-width: 760px;
    color: #171a2e;
    font-size: 18px;
    line-height: 1.75;
}

.allpave-panel,
.allpave-quote-panel,
.allpave-form-card,
.allpave-service-card,
.allpave-location-card,
.allpave-faq-item,
.trust-proof-card,
.allpave-trust-card,
.allpave-contact-card,
.allpave-form-stat,
.allpave-service-stat {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 34px rgb(7 8 46 / 4%);
    color: var(--ink);
}

.allpave-panel,
.allpave-quote-panel,
.allpave-form-card {
    padding: clamp(22px, 3vw, 34px);
}

.allpave-form-heading,
.allpave-quote-title,
.allpave-form-card-title,
.allpave-section-title,
.allpave-service-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.12;
    text-transform: uppercase;
}

.allpave-form-heading,
.allpave-quote-title,
.allpave-form-card-title {
    font-size: 28px;
    text-align: center;
}

.allpave-form-copy,
.allpave-quote-copy,
.allpave-section-copy,
.allpave-service-copy,
.help,
.allpave-form-help {
    color: var(--muted);
    line-height: 1.7;
}

.allpave-quote-link-panel {
    align-self: center;
}

.allpave-quote-link-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.allpave-quote-link-actions .allpave-service-btn {
    width: 100%;
}

.allpave-quote-checklist {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.allpave-quote-checklist li {
    position: relative;
    padding: 10px 12px 10px 18px;
    border-left: 3px solid var(--gold);
    background: var(--wash);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.allpave-form-grid,
.allpave-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field.full,
.allpave-form-field-full {
    grid-column: 1 / -1;
}

.neo-label,
.allpave-form-label,
.field label:not(.neo-checkbox-row) {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.neo-input,
.neo-select,
.neo-textarea,
.allpave-form-control,
.field input:not([type="checkbox"]):not([type="file"]),
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #c8c1b3;
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    font: inherit;
    border-radius: 0;
    box-shadow: none;
}

.neo-input:focus,
.neo-select:focus,
.neo-textarea:focus,
.allpave-form-control:focus {
    border-color: var(--navy);
    outline: 2px solid rgb(155 135 87 / 28%);
    outline-offset: 2px;
}

.neo-checkbox-row,
.allpave-form-checkbox-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #c8c1b3;
    background: #fbfaf7;
    color: var(--ink);
    cursor: pointer;
}

.neo-checkbox-row input[type="checkbox"],
.allpave-form-checkbox-row input[type="checkbox"],
input.neo-checkbox[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    place-content: center;
    flex: 0 0 20px;
    width: 20px !important;
    min-width: 20px;
    height: 20px !important;
    min-height: 20px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 1px solid var(--navy) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    color: var(--navy);
}

.neo-checkbox-row input[type="checkbox"]::before,
.allpave-form-checkbox-row input[type="checkbox"]::before,
input.neo-checkbox[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transform-origin: center;
    background: #fff;
    clip-path: polygon(14% 44%, 0 62%, 42% 100%, 100% 18%, 82% 0, 38% 62%);
}

.neo-checkbox-row input[type="checkbox"]:checked,
.allpave-form-checkbox-row input[type="checkbox"]:checked,
input.neo-checkbox[type="checkbox"]:checked {
    background: var(--navy) !important;
}

.neo-checkbox-row input[type="checkbox"]:checked::before,
.allpave-form-checkbox-row input[type="checkbox"]:checked::before,
input.neo-checkbox[type="checkbox"]:checked::before {
    transform: scale(1);
}

.neo-checkbox-row input[type="checkbox"]:focus-visible,
.allpave-form-checkbox-row input[type="checkbox"]:focus-visible,
input.neo-checkbox[type="checkbox"]:focus-visible {
    outline: 2px solid rgb(155 135 87 / 45%);
    outline-offset: 2px;
}

.neo-checkbox-copy,
.allpave-form-checkbox-row span {
    min-width: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.35;
}

.neo-checkbox-copy strong {
    color: var(--ink);
    font-weight: 800;
}

.allpave-file-upload,
.neo-file-upload,
.file-upload {
    border: 1px solid #c8c1b3;
    background: #fbfaf7;
    padding: 14px;
}

.ed-upload {
    display: grid;
    gap: 12px;
}

.ed-upload [hidden] {
    display: none !important;
}

.ed-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ed-upload-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ed-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    flex: 0 0 auto;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.field label.ed-upload-button:not(.neo-checkbox-row),
.ed-upload-button,
.ed-upload-button span {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    visibility: visible !important;
}

.ed-upload-input:focus-visible + .ed-upload-head .ed-upload-button,
.ed-upload-button:hover {
    background: #15143a;
}

.ed-upload-summary {
    min-width: 0;
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.ed-upload-summary strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ed-upload-list {
    display: grid;
    gap: 8px;
}

.ed-upload-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #ded8cc;
    background: #fff;
    padding: 8px;
}

.ed-upload-preview {
    width: 56px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ece8df;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.ed-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ed-upload-item-body {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.ed-upload-item-body strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ed-upload-item-body span {
    color: var(--muted);
    font-size: 12px;
}

.ed-upload-remove {
    border: 1px solid #d8d1c4;
    background: #fff;
    color: var(--ink);
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

.ed-upload-remove:hover {
    border-color: var(--navy);
}

.ed-upload-progress {
    display: grid;
    gap: 7px;
}

.ed-upload-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ed-upload-progress-track {
    height: 10px;
    overflow: hidden;
    border: 1px solid #d8d1c4;
    background: #ebe7de;
}

.ed-upload-progress-track span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width .18s ease;
}

@media (max-width: 640px) {
    .ed-upload-head,
    .ed-upload-item {
        grid-template-columns: 1fr;
    }

    .ed-upload-head {
        display: grid;
    }

    .ed-upload-button,
    .ed-upload-remove {
        width: 100%;
    }

    .ed-upload-item {
        align-items: stretch;
    }

    .ed-upload-preview {
        width: 100%;
        height: 150px;
    }
}

.neo-alert,
.allpave-form-success,
.flash {
    border: 1px solid #a7e0bd;
    background: #e8f8ef;
    color: #173d28;
    padding: 12px 14px;
}

.neo-errors,
.allpave-form-errors {
    border: 1px solid #e2aaaa;
    background: #fdeaea;
    color: #6f1f1f;
    padding: 12px 14px;
}

.allpave-trust-row,
.allpave-contact-strip,
.allpave-form-stat-grid,
.allpave-service-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.allpave-trust-card,
.allpave-contact-card,
.allpave-form-stat,
.allpave-service-stat {
    padding: 16px;
}

.allpave-trust-card strong,
.allpave-contact-card span,
.allpave-form-stat strong,
.allpave-service-stat strong {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}

.allpave-trust-proof {
    padding: 64px 0;
    border-block: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.allpave-trust-proof-dark {
    border: 0;
    background: var(--navy);
    color: #fff;
}

.allpave-trust-proof-header {
    max-width: 940px;
    margin: 0 0 30px;
}

.allpave-trust-proof-eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.allpave-trust-proof-header h2,
.allpave-trust-proof-card h3,
.allpave-trust-proof-cta h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.16;
    text-transform: uppercase;
}

.allpave-trust-proof-header h2 {
    max-width: 760px;
    font-size: 34px;
}

.allpave-trust-proof-header p {
    max-width: 980px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.allpave-trust-proof-dark .allpave-trust-proof-header p,
.allpave-trust-proof-dark .allpave-trust-proof-card p,
.allpave-trust-proof-dark .allpave-trust-proof-list,
.allpave-trust-proof-dark .allpave-trust-proof-list li {
    color: rgb(255 255 255 / 82%);
}

.allpave-trust-proof-steps,
.allpave-trust-proof-grid {
    display: grid;
    gap: 18px;
}

.allpave-trust-proof-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.allpave-trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.allpave-trust-proof-card {
    min-width: 0;
    border: 1px solid var(--line);
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 34px rgb(7 8 46 / 4%);
}

.allpave-trust-proof-dark .allpave-trust-proof-card,
.allpave-trust-proof-dark .allpave-trust-proof-cta {
    border-color: rgb(255 255 255 / 18%);
    background: rgb(255 255 255 / 7%);
    box-shadow: none;
}

.allpave-trust-proof-step-number {
    margin-bottom: 18px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
}

.allpave-trust-proof-card h3,
.allpave-trust-proof-cta h3 {
    color: inherit;
    font-size: 20px;
}

.allpave-trust-proof-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.allpave-trust-proof-list {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    color: var(--muted);
    line-height: 1.55;
    list-style: none;
}

.allpave-trust-proof-list li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.allpave-trust-proof-bullet {
    color: var(--gold);
    font-weight: 700;
}

.allpave-trust-proof-list-positive .allpave-trust-proof-bullet {
    color: var(--green);
}

.allpave-trust-proof-list-warning .allpave-trust-proof-bullet {
    color: var(--amber);
}

.allpave-trust-proof-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-top: 18px;
    border: 1px solid var(--line);
    background: var(--wash);
    padding: 24px;
}

.allpave-trust-proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.allpave-trust-proof-dark .site-btn-primary {
    border-color: #fff;
    background: #fff;
    color: var(--navy);
}

.allpave-trust-proof-dark .site-btn-secondary {
    border-color: rgb(255 255 255 / 35%);
    background: transparent;
    color: #fff;
}

.allpave-section,
.allpave-service-section {
    padding: 46px 0;
    background: #fff;
}

.allpave-section:nth-of-type(even),
.allpave-service-section:nth-of-type(even),
.allpave-service-overview-section {
    background: var(--wash);
    border-block: 1px solid var(--line);
}

.allpave-section-header,
.allpave-service-header {
    max-width: 880px;
    margin: 0 auto 26px;
    text-align: center;
}

.allpave-section-title,
.allpave-service-title {
    font-size: clamp(28px, 3vw, 42px);
}

.allpave-finish-grid,
.allpave-service-grid,
.allpave-location-grid,
.allpave-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    align-items: stretch;
    gap: 22px;
}

.allpave-service-overview-section .allpave-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ed-home-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.allpave-location-card-no-media {
    padding-top: 18px;
}

.allpave-finish-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.allpave-finish-card,
.allpave-service-card,
.allpave-location-card,
.allpave-coverage-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    padding: 0 0 18px;
    text-align: center;
}

.allpave-service-card ul {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.65;
    list-style: none;
}

.allpave-service-card li + li {
    margin-top: 8px;
}

.allpave-finish-card img,
.allpave-card-media img,
.ed-image-media img {
    width: 100%;
    aspect-ratio: 5 / 3.4;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
    filter: none;
}

.ed-brand-feature img {
    object-fit: contain;
    padding: 24px;
    background: #fff;
}

.allpave-finish-card-content,
.allpave-service-card > h2,
.allpave-service-card > h3,
.allpave-location-card > h3,
.allpave-service-card > p,
.allpave-location-card > p,
.allpave-service-rich,
.allpave-service-inline-actions {
    display: block;
    padding-inline: 18px;
}

.allpave-finish-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.allpave-finish-card h3,
.allpave-service-card h2,
.allpave-service-card h3,
.allpave-location-card h3,
.allpave-coverage-card h3 {
    margin: 16px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.allpave-finish-card p,
.allpave-service-card p,
.allpave-location-card p,
.allpave-coverage-card p,
.allpave-service-rich {
    color: var(--muted);
    line-height: 1.7;
}

.allpave-finish-card p,
.allpave-service-card p,
.allpave-location-card p,
.allpave-service-rich {
    margin-bottom: 0;
}

.allpave-location-card > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 10px;
    padding: 9px 14px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.allpave-service-inline-actions,
.allpave-location-card > a {
    margin-top: auto;
}

.ed-location-section {
    background: var(--wash);
    border-top: 1px solid var(--line);
}

.allpave-coverage-card {
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 34px rgb(7 8 46 / 4%);
    text-align: left;
}

.allpave-coverage-card h3 {
    margin-top: 0;
}

.allpave-coverage-card p {
    margin: 0 0 18px;
}

.allpave-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.allpave-location-list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #c8c1b3;
    background: var(--wash);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.allpave-location-list a:hover,
.allpave-location-list a:focus-visible {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.allpave-service-band,
.ed-dark-band,
.site-footer {
    background: var(--navy);
    color: #fff;
}

.allpave-service-section.allpave-service-band,
.allpave-service-section.ed-dark-band {
    background: var(--navy);
    border-color: rgb(255 255 255 / 12%);
}

.allpave-service-band .allpave-service-title,
.allpave-service-band .allpave-service-copy,
.allpave-service-band p,
.allpave-service-band h2,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer .site-brand-name {
    color: #fff;
}

.allpave-service-section.allpave-service-band .allpave-service-copy,
.allpave-service-section.ed-dark-band .allpave-service-copy,
.allpave-service-section.allpave-service-band p,
.allpave-service-section.ed-dark-band p {
    color: rgb(255 255 255 / 82%);
}

.allpave-service-band .allpave-service-stat {
    background: transparent;
    border-color: rgb(255 255 255 / 20%);
    color: #fff;
}

.allpave-faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.allpave-faq-item {
    padding: 0;
}

.allpave-faq-item summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    list-style: none;
    font-weight: 700;
}

.allpave-faq-item summary::-webkit-details-marker {
    display: none;
}

.allpave-faq-item summary::after {
    content: "+";
}

.allpave-faq-item[open] summary::after {
    content: "-";
}

.allpave-faq-answer {
    padding: 0 18px 18px;
    color: var(--muted);
}

.allpave-reviews-header,
.allpave-service-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
}

.allpave-reviews-summary,
.ed-brand-feature {
    border: 1px solid var(--line);
    background: #fff;
    padding: 22px;
}

.allpave-reviews-score {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.1;
}

.site-footer {
    padding: 52px 0;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.site-footer h4 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer-brand p {
    margin: 14px 0 22px;
    max-width: 36ch;
    line-height: 1.65;
}

.site-footer-contact {
    display: grid;
    gap: 6px;
    color: rgb(255 255 255 / 86%);
    line-height: 1.55;
}

.site-footer-contact a {
    display: inline-flex;
    width: fit-content;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgb(255 255 255 / 16%);
    color: #d9d2c0;
    font-size: 13px;
}

.site-whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #1fa855;
    background: #1fa855;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus-visible {
    border-color: #168a47;
    background: #168a47;
    color: #fff;
}

.site-whatsapp-float svg {
    width: 18px;
    height: 18px;
}

.hp,
.allpave-form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .site-header-inner,
    .allpave-hero-grid,
    .allpave-service-hero-grid,
    .allpave-form-shell,
    .allpave-finish-layout,
    .allpave-reviews-header,
    .allpave-service-cta-shell {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .site-cta-group {
        display: none;
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-burger,
    .site-mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-mobile-overlay.is-open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1400;
        background: rgb(7 8 46 / 52%);
    }

    .site-mobile-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1500;
        display: block;
        width: min(88vw, 380px);
        padding: 22px;
        background: #fff;
        border-left: 1px solid var(--line);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .22s ease;
    }

    .site-mobile-panel.is-open {
        transform: translateX(0);
    }

    .site-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 22px;
    }

    .site-mobile-panel nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        font-family: Georgia, "Times New Roman", serif;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .site-mobile-panel .site-menu-list {
        display: grid;
        gap: 0;
    }

    .site-mobile-panel .site-menu-link {
        padding: 12px 0;
    }

    .site-mobile-panel .site-submenu-shell {
        display: none;
    }

    .site-mobile-panel .site-mobile-children {
        display: grid;
        gap: 8px;
        padding: 0 0 12px 14px;
    }

    .site-mobile-panel .site-mobile-child-link {
        border: 0;
        padding: 4px 0;
        color: var(--muted);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
    }

    .site-mobile-actions {
        display: grid;
        gap: 10px;
        margin-top: 22px;
    }

    .allpave-finish-grid,
    .allpave-service-grid,
    .allpave-service-overview-section .allpave-service-grid,
    .allpave-location-grid,
    .allpave-trust-proof-steps,
    .allpave-trust-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .allpave-trust-proof-cta {
        grid-template-columns: 1fr;
    }

    .allpave-trust-proof-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .site-shell,
    .allpave-shell,
    .allpave-service-shell,
    .allpave-form-shell,
    .site-header-inner,
    .site-topbar-inner,
    .site-offer-strip-inner,
    .allpave-hero-grid,
    .allpave-service-hero-grid {
        width: min(100% - 24px, 1280px);
    }

    .site-topbar-inner,
    .site-footer-bottom {
        display: grid;
    }

    .site-topbar-meta,
    .site-topbar-email,
    .site-topbar-social-wrap,
    .site-topbar-service-area {
        display: none;
    }

    .site-brand-mark {
        width: 50px;
        height: 50px;
    }

    .site-brand-name {
        font-size: 19px;
    }

    .site-brand-tagline {
        display: none;
    }

    .allpave-hero,
    .allpave-service-hero,
    .allpave-form-page {
        padding: 30px 0;
    }

    .allpave-hero h1,
    .allpave-service-hero h1,
    .allpave-form-intro h1 {
        font-size: clamp(32px, 11vw, 46px);
    }

    .allpave-hero p,
    .allpave-service-hero p,
    .allpave-form-intro p {
        font-size: 16px;
    }

    .allpave-hero .allpave-quote-link-panel,
    .allpave-service-hero .allpave-quote-link-panel {
        order: 1;
    }

    .allpave-hero-copy,
    .allpave-service-hero-grid > div:first-child {
        order: 2;
    }

    .allpave-form-grid,
    .allpave-form-fields,
    .allpave-trust-row,
    .allpave-trust-proof-steps,
    .allpave-trust-proof-grid,
    .allpave-contact-strip,
    .allpave-form-stat-grid,
    .allpave-service-stats,
    .allpave-finish-grid,
    .allpave-service-grid,
    .allpave-service-overview-section .allpave-service-grid,
    .allpave-location-grid,
    .allpave-coverage-grid,
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .allpave-trust-proof {
        padding: 42px 0;
    }

    .allpave-trust-proof-header h2 {
        font-size: 28px;
    }

    .allpave-trust-proof-header p {
        font-size: 16px;
    }

    .allpave-trust-proof-card,
    .allpave-trust-proof-cta {
        padding: 18px;
    }

    .allpave-trust-proof-actions,
    .allpave-trust-proof-actions .site-btn {
        width: 100%;
    }

    .allpave-finish-card img,
    .allpave-card-media img,
    .ed-image-media img {
        aspect-ratio: 5 / 3.2;
    }

    .site-whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}
