:root {
    --color-ink: #1c1a17;
    --color-muted: #736d64;
    --color-line: #e8e1d7;
    --color-soft: #f7f4ef;
    --color-paper: #fffdf9;
    --color-clay: #9b6b43;
    --color-moss: #596554;
    --color-charcoal: #24211d;
    --shadow-soft: 0 24px 70px rgba(28, 26, 23, 0.12);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-paper);
    color: var(--color-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
    background: rgba(255, 253, 249, 0.94);
    border-color: var(--color-line);
    box-shadow: 0 14px 40px rgba(28, 26, 23, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 78px;
    min-height: 0;
    padding-block: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    justify-self: center;
    width: 150px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    line-height: 0;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo {
    width: auto;
    height: 120px;
    max-height: 120px;
    max-width: 190px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
    object-fit: contain;
}

.site-header:not(.is-scrolled):not(.nav-active) .brand,
.site-header:not(.is-scrolled):not(.nav-active) .nav-toggle {
    color: #fff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    display: grid;
    align-content: start;
    width: min(390px, 100vw);
    height: 100svh;
    padding: 92px 34px 34px;
    overflow-y: auto;
    background: rgba(255, 253, 249, 0.98);
    color: var(--color-ink);
    gap: 0;
    box-shadow: 24px 0 70px rgba(28, 26, 23, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity 0.25s ease, transform 0.3s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 1.08rem;
    font-weight: 600;
}

.main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.main-nav a {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
}

.main-nav a:not(.nav-cta)::after {
    display: none;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta,
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
    padding: 0 20px;
    border: 0;
    background: var(--color-clay);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.nav-cta-button {
    min-height: 42px;
}

.header-consult {
    justify-self: end;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
}

.header-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-socials i {
    color: currentColor;
    font-size: 22px;
    line-height: 1;
}

.site-header.is-scrolled .header-socials a,
.site-header.nav-active .header-socials a {
    border-color: rgba(155, 107, 67, 0.28);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-ink);
}

.header-socials a:hover {
    border-color: rgba(240, 201, 159, 0.72);
    background: rgba(155, 107, 67, 0.22);
    transform: translateY(-2px);
}

.site-header.is-scrolled .header-socials a:hover,
.site-header.nav-active .header-socials a:hover {
    border-color: rgba(155, 107, 67, 0.42);
    background: #fbf6ee;
    color: var(--color-clay);
}

.drawer-socials {
    display: none;
    gap: 10px;
    padding-top: 22px;
}

.drawer-socials a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    color: var(--color-clay);
    font-size: 0.82rem;
    font-weight: 800;
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    position: relative;
    z-index: 75;
    display: grid;
    place-items: center;
    justify-self: start;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-close {
    position: absolute;
    top: 26px;
    right: 26px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    cursor: pointer;
}

.nav-close::before,
.nav-close::after {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.nav-close::before {
    transform: rotate(45deg);
}

.nav-close::after {
    transform: rotate(-45deg);
}

.nav-menu-title {
    margin: 0 0 16px;
    color: var(--color-clay);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: 118px 0 96px;
    color: #fff;
}

.about-page-hero {
    position: relative;
    display: grid;
    min-height: 72svh;
    align-items: end;
    overflow: hidden;
    padding: 160px 0 92px;
    color: #fff;
}

.contact-page-hero {
    position: relative;
    display: grid;
    min-height: 68svh;
    align-items: end;
    overflow: hidden;
    padding: 150px 0 86px;
    color: #fff;
}

.hero-media,
.hero-overlay,
.about-page-media,
.contact-page-media {
    position: absolute;
    inset: 0;
}

.hero-media {
    background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=82") center/cover;
    transform: scale(1.04);
}

.about-page-media {
    background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=82") center/cover;
    transform: scale(1.03);
}

.contact-page-media {
    background: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=82") center/cover;
    transform: scale(1.03);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(16, 14, 12, 0.76), rgba(16, 14, 12, 0.36) 54%, rgba(16, 14, 12, 0.48));
}

.hero .hero-overlay {
    background: linear-gradient(90deg, rgba(16, 14, 12, 0.72), rgba(16, 14, 12, 0.32) 55%, rgba(16, 14, 12, 0.42));
}

.commercial-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
    align-items: end;
    padding-top: 34px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 690px;
    padding-top: 0;
}

.about-page-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--color-clay);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f0c99f;
}

.about-page-hero .eyebrow {
    color: #f0c99f;
}

.contact-page-hero .eyebrow {
    color: #f0c99f;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 8vw, 7.7rem);
    font-weight: 500;
}

.hero h1 {
    max-width: 790px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 5.8vw, 5.35rem);
}

.about-page-hero h1 {
    max-width: 940px;
    margin-bottom: 18px;
}

.contact-page-hero h1 {
    max-width: 940px;
    margin-bottom: 18px;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin-top: 28px;
}

.hero-quick-links a {
    display: grid;
    min-height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-quick-links a:hover {
    border-color: rgba(240, 201, 159, 0.64);
    background: rgba(155, 107, 67, 0.24);
    transform: translateY(-2px);
}

.btn {
    padding: 0 26px;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
}

.btn-primary {
    background: var(--color-clay);
    color: #fff;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.56);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-promo {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.13);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.hero-promo span,
.payment-card span,
.product-card span,
.benefit-card span {
    color: var(--color-clay);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-promo span {
    color: #f0c99f;
}

.hero-promo strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.08;
}

.hero-promo p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    min-height: 36px;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.benefits-band {
    padding: 56px 0 34px;
    margin-top: 0;
}

.benefits-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.benefit-card {
    min-height: 188px;
    padding: 26px;
    border-right: 1px solid var(--color-line);
}

.benefit-card:last-child {
    border-right: 0;
}

.benefit-card h3 {
    margin: 34px 0 10px;
    font-size: 1.08rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

.catalog-section {
    padding-top: 82px;
}

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

.visual-category-card {
    position: relative;
    display: grid;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-charcoal);
    box-shadow: 0 18px 50px rgba(28, 26, 23, 0.12);
}

.visual-category-card img,
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.visual-category-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
    content: "";
}

.visual-category-card > div {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    display: grid;
    gap: 16px;
    color: #fff;
}

.visual-category-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    font-weight: 500;
}

.visual-category-card:hover img {
    opacity: 0.9;
    transform: scale(1.06);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-btn {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.mini-btn-light {
    background: rgba(155, 107, 67, 0.82);
    border-color: rgba(155, 107, 67, 0.92);
}

.payment-section {
    background: var(--color-soft);
}

.payment-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 54px;
    align-items: start;
}

.payment-layout .section-heading {
    position: sticky;
    top: 128px;
    margin-bottom: 0;
}

.payment-layout .section-heading p:last-child {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.payment-card {
    display: grid;
    min-height: 148px;
    align-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 42px rgba(28, 26, 23, 0.06);
}

.payment-card span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(155, 107, 67, 0.28);
    border-radius: 50%;
}

.payment-card strong {
    font-size: 1.08rem;
}

.payment-card-featured {
    grid-column: span 2;
    background: var(--color-charcoal);
    color: #fff;
}

.payment-card-featured span {
    color: #f0c99f;
    border-color: rgba(240, 201, 159, 0.4);
}

.featured-products {
    background: var(--color-paper);
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 42px rgba(28, 26, 23, 0.06);
}

.product-card img {
    height: 260px;
}

.product-card > div {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.product-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.product-card .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.92rem;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 54px;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 4px;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: #fff;
    animation: scrollCue 1.7s ease-in-out infinite;
}

.section {
    padding: 112px 0;
}

.section-heading {
    display: grid;
    max-width: 780px;
    margin-bottom: 48px;
    gap: 4px;
}

.section-heading h2,
.split-copy h2,
.cta-inner h2 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
}

.category-card {
    min-height: 245px;
    padding: 34px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: var(--color-paper);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
}

.card-number,
.benefit span {
    color: var(--color-clay);
    font-size: 0.78rem;
    font-weight: 800;
}

.category-card h3,
.benefit h3 {
    margin: 30px 0 12px;
    font-size: 1.25rem;
}

.category-card p,
.benefit p,
.split-copy p,
.site-footer p,
.site-footer li {
    color: var(--color-muted);
}

.ambience-section,
.brands-section {
    background: var(--color-soft);
}

.ambience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.ambience-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-charcoal);
    box-shadow: 0 18px 50px rgba(28, 26, 23, 0.1);
}

.ambience-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.ambience-card.wide {
    grid-column: span 2;
}

.ambience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.ambience-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
    content: "";
}

.ambience-card div {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    color: #fff;
}

.ambience-card span {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ambience-card h3 {
    margin: 8px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
}

.ambience-card:hover img {
    opacity: 0.94;
    transform: scale(1.06);
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.split-copy {
    position: sticky;
    top: 130px;
}

.split-copy p:last-child {
    margin-top: 24px;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit {
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
}

.about-section {
    background:
        linear-gradient(180deg, rgba(247, 244, 239, 0.82), rgba(255, 253, 249, 0.96) 34%),
        var(--color-paper);
}

.about-hero {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: center;
    margin-bottom: 34px;
}

.about-hero > *,
.about-page-content {
    min-width: 0;
}

.about-hero-copy h2,
.about-story-heading h3,
.commitment-banner h3 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    font-weight: 500;
}

.about-hero-copy p:last-child {
    color: var(--color-muted);
    font-size: 1.08rem;
}

.about-hero-media {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-charcoal);
    box-shadow: var(--shadow-soft);
}

.about-hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 26, 23, 0.02), rgba(28, 26, 23, 0.28));
    content: "";
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 28px 0 88px;
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
}

.about-text-card {
    min-height: 245px;
    padding: 32px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 253, 249, 0.72);
}

.about-text-card p,
.about-story-copy p,
.mv-card p,
.commitment-banner p {
    color: var(--color-muted);
}

.about-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
    padding: 74px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.about-story-copy {
    display: grid;
    gap: 18px;
    font-size: 1.06rem;
}

.about-story-copy p {
    margin-bottom: 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 72px 0;
}

.mv-card {
    display: grid;
    align-content: center;
    min-height: 245px;
    padding: 32px 34px;
    border-radius: var(--radius);
    background: var(--color-charcoal);
    color: #fff;
    box-shadow: 0 24px 70px rgba(28, 26, 23, 0.16);
}

.mv-card:nth-child(2) {
    background: #44372c;
}

.mv-card span,
.value-card span {
    color: #f0c99f;
    font-size: 0.78rem;
    font-weight: 800;
}

.mv-card h3 {
    margin: 34px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.76);
}

.values-block {
    margin-bottom: 72px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.value-card {
    display: grid;
    min-height: 112px;
    align-content: center;
    gap: 12px;
    padding: 20px 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.value-card span {
    color: var(--color-clay);
}

.value-card p {
    margin-bottom: 0;
    color: var(--color-ink);
    font-weight: 700;
    line-height: 1.28;
}

.commitment-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: end;
    padding: 46px;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(28, 26, 23, 0.9), rgba(28, 26, 23, 0.72)),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=80") center/cover;
    color: #fff;
}

.commitment-banner .eyebrow {
    color: #f0c99f;
}

.commitment-banner h3 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.commitment-banner p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.commitment-banner strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.08;
}

.contact-section {
    background:
        linear-gradient(180deg, rgba(247, 244, 239, 0.88), rgba(255, 253, 249, 0.96) 42%),
        var(--color-paper);
}

.contact-section .section-heading h2 {
    max-width: 820px;
    overflow-wrap: break-word;
}

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

.contact-card {
    display: grid;
    min-height: 245px;
    align-content: start;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.86);
    box-shadow: 0 18px 52px rgba(28, 26, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.contact-card-featured {
    background: var(--color-charcoal);
    color: #fff;
}

.contact-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(155, 107, 67, 0.32);
    border-radius: 50%;
    color: var(--color-clay);
    font-size: 0.74rem;
    font-weight: 800;
}

.contact-icon::before {
    font-size: 1.05rem;
    line-height: 1;
}

.contact-icon-map::before {
    content: "\2316";
}

.contact-icon-phone::before {
    content: "\260E";
}

.contact-icon-chat::before {
    content: "\2709";
}

.contact-icon-admin::before {
    content: "\0024";
}

.contact-icon-provider::before {
    content: "\25C7";
}

.contact-icon-time::before {
    content: "\25F4";
}

.contact-card-featured .contact-icon {
    border-color: rgba(240, 201, 159, 0.4);
    color: #f0c99f;
}

.contact-card h3 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

.contact-card-featured p,
.contact-card-featured li {
    color: rgba(255, 255, 255, 0.78);
}

.contact-card a {
    color: var(--color-clay);
    font-weight: 800;
}

.contact-card-featured a {
    color: #f0c99f;
}

.contact-card ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.map-placeholder {
    display: grid;
    min-height: 320px;
    margin-top: 44px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(28, 26, 23, 0.72), rgba(89, 101, 84, 0.56)),
        url("https://images.unsplash.com/photo-1600566752734-2a0b9f0f302e?auto=format&fit=crop&w=1400&q=80") center/cover;
    color: #fff;
    text-align: center;
}

.map-placeholder .eyebrow {
    color: #f0c99f;
}

.map-placeholder h3 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
}

.sales-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sales-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.sales-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 22, 19, 0.68);
    backdrop-filter: blur(10px);
}

.sales-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 34px;
    border: 1px solid rgba(232, 225, 215, 0.9);
    border-radius: var(--radius);
    background: var(--color-paper);
    box-shadow: 0 34px 90px rgba(28, 26, 23, 0.28);
}

.sales-modal-panel .eyebrow {
    margin-bottom: 12px;
}

.sales-modal-panel h2 {
    margin-bottom: 12px;
    padding-right: 44px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
}

.sales-modal-panel > p:not(.eyebrow) {
    margin-bottom: 24px;
    color: var(--color-muted);
}

.sales-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    cursor: pointer;
}

.sales-modal-close::before,
.sales-modal-close::after {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.sales-modal-close::before {
    transform: rotate(45deg);
}

.sales-modal-close::after {
    transform: rotate(-45deg);
}

.sales-options {
    display: grid;
    gap: 12px;
}

.sales-options a {
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sales-options a:hover {
    border-color: rgba(155, 107, 67, 0.42);
    background: #fbf6ee;
    transform: translateY(-2px);
}

.sales-options span {
    color: var(--color-clay);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sales-options strong {
    color: var(--color-ink);
    font-size: 1.05rem;
}

.brands-section {
    padding: 64px 0;
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 24px;
    border: 1px solid var(--color-line);
    background: rgba(255, 253, 249, 0.64);
}

.brand-strip span {
    display: grid;
    min-height: 112px;
    place-items: center;
    border-right: 1px solid var(--color-line);
    color: #7b756c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.brand-strip span:last-child {
    border-right: 0;
}

.cta-section {
    padding: 112px 0;
    background: linear-gradient(rgba(28, 26, 23, 0.72), rgba(28, 26, 23, 0.72)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    text-align: center;
}

.cta-inner {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.cta-inner .eyebrow {
    margin-bottom: 0;
    color: #f0c99f;
}

.site-footer {
    padding: 70px 0 28px;
    background: #181613;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 52px;
}

.footer-brand {
    margin-bottom: 22px;
}

.site-footer .footer-brand {
    align-self: auto;
    justify-self: start;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-brand .brand-logo {
    height: 86px;
    max-width: 210px;
    filter: none;
}

.site-footer h3 {
    margin-bottom: 18px;
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    color: #d8cab8;
}

.footer-bottom {
    padding-top: 34px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes scrollCue {
    0%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(16px);
    }
}

@media (max-width: 1180px) {
    .nav-toggle {
        position: fixed;
        top: 13px;
        right: 14px;
        z-index: 60;
        display: block;
    }

    .site-header:not(.is-scrolled):not(.nav-active) .nav-toggle {
        color: #fff;
    }

    .main-nav {
        position: fixed;
        inset: 0 0 auto;
        display: grid;
        width: 100%;
        max-height: 100svh;
        overflow-y: auto;
        padding: 98px 24px 34px;
        background: rgba(255, 253, 249, 0.98);
        color: var(--color-ink);
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-line);
        font-size: 1.12rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 18px;
        padding: 0 24px;
        border-bottom: 0;
        font-size: 1rem;
    }
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 84px;
    }

    .brand {
        flex-basis: 128px;
    }

    .brand-logo {
        height: 74px;
        max-width: 126px;
    }

    .nav-toggle {
        position: fixed;
        top: 13px;
        right: 14px;
        z-index: 60;
        display: block;
    }

    .site-header:not(.is-scrolled):not(.nav-active) .nav-toggle {
        color: #fff;
    }

    .main-nav {
        position: fixed;
        inset: 0 0 auto;
        display: grid;
        width: 100%;
        padding: 98px 24px 34px;
        background: rgba(255, 253, 249, 0.98);
        color: var(--color-ink);
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 17px 0;
        border-bottom: 1px solid var(--color-line);
        font-size: 1.25rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 18px;
        padding: 0 24px;
        border-bottom: 0;
        font-size: 1rem;
    }

    .category-grid,
    .split-layout,
    .about-hero,
    .about-story,
    .commitment-banner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-media {
        min-height: 430px;
    }

    .about-intro-grid,
    .contact-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        gap: 26px;
        padding: 58px 0;
    }

    .mission-vision-grid {
        gap: 18px;
    }

    .mv-card {
        min-height: 220px;
    }

    .commitment-banner {
        align-items: start;
    }

    .ambience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-copy {
        position: static;
    }

    .brand-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-strip span:nth-child(3n) {
        border-right: 0;
    }

    .commercial-hero-grid,
    .payment-layout {
        grid-template-columns: 1fr;
    }

    .commercial-hero-grid {
        align-items: center;
        gap: 26px;
    }

    .hero-promo {
        max-width: 560px;
    }

    .benefits-strip,
    .visual-category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(2n) {
        border-right: 0;
    }

    .benefit-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-line);
    }

    .payment-layout .section-heading {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 28px);
    }

    .header-inner {
        min-height: 78px;
    }

    .brand {
        flex-basis: 118px;
    }

    .brand-logo {
        height: 66px;
        max-width: 116px;
    }

    .footer-brand .brand-logo {
        height: 106px;
        max-width: 266px;
    }

    .site-footer .footer-brand {
        justify-self: center;
        margin: 0 auto 24px;
    }

    .hero {
        min-height: auto;
        padding: 126px 0 96px;
    }

    .about-page-hero {
        min-height: 68svh;
        padding: 126px 0 64px;
    }

    .contact-page-hero {
        min-height: 64svh;
        padding: 126px 0 64px;
    }

    .about-page-hero h1 {
        max-width: 10ch;
        font-size: clamp(2.45rem, 10.5vw, 3rem);
        line-height: 1;
    }

    .about-page-content {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .about-page-content .hero-copy {
        width: min(100%, 330px);
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .contact-page-hero h1 {
        font-size: clamp(2.8rem, 12vw, 3.35rem);
        line-height: 1;
    }

    .contact-section .section-heading h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .hero-content {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        padding-top: 0;
    }

    h1 {
        font-size: clamp(2.9rem, 13vw, 3.45rem);
        line-height: 0.98;
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10vw, 2.95rem);
        line-height: 1;
    }

    .hero-copy {
        max-width: 33ch;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-promo {
        width: 100%;
        padding: 22px;
    }

    .hero-promo strong {
        font-size: 1.45rem;
    }

    .hero-quick-links {
        grid-template-columns: 1fr;
        gap: 7px;
        max-width: 100%;
        margin-top: 16px;
    }

    .hero-quick-links a {
        min-height: 42px;
    }

    .section,
    .cta-section {
        padding: 76px 0;
    }

    .category-grid {
        border-left: 0;
    }

    .category-card {
        min-height: auto;
        padding: 28px 24px;
        border-left: 1px solid var(--color-line);
    }

    .about-intro-grid,
    .ambience-grid,
    .benefits-grid,
    .benefits-strip,
    .contact-grid,
    .mission-vision-grid,
    .values-grid,
    .brand-strip,
    .visual-category-grid,
    .payment-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .benefits-band {
        padding-bottom: 0;
        margin-top: 0;
    }

    .benefits-strip {
        border-radius: 0;
    }

    .benefit-card,
    .benefit-card:nth-child(2n) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .benefit-card:last-child {
        border-bottom: 0;
    }

    .benefit-card h3 {
        margin-top: 22px;
    }

    .visual-category-card {
        min-height: 285px;
    }

    .payment-card-featured {
        grid-column: auto;
    }

    .product-card img {
        height: 235px;
    }

    .about-hero {
        gap: 28px;
        margin-bottom: 24px;
    }

    .about-hero-copy p:last-child {
        max-width: 34ch;
        font-size: 1rem;
    }

    .about-hero-media {
        min-height: 330px;
    }

    .about-intro-grid {
        margin: 22px 0 64px;
        border-left: 0;
    }

    .about-text-card {
        min-height: auto;
        padding: 26px 24px;
        border-left: 1px solid var(--color-line);
    }

    .about-story {
        padding: 48px 0;
    }

    .mission-vision-grid {
        margin: 52px 0;
    }

    .mv-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .mv-card h3 {
        margin-top: 26px;
    }

    .values-block {
        margin-bottom: 52px;
    }

    .value-card {
        min-height: auto;
        padding: 18px 20px;
    }

    .contact-card {
        min-height: auto;
        padding: 24px;
    }

    .sales-modal {
        padding: 14px;
    }

    .sales-modal-panel {
        padding: 28px 22px 22px;
    }

    .sales-modal-close {
        top: 16px;
        right: 16px;
    }

    .sales-options a {
        padding: 16px;
    }

    .contact-card h3 {
        font-size: 1.45rem;
    }

    .map-placeholder {
        min-height: 250px;
        margin-top: 28px;
    }

    .commitment-banner {
        padding: 34px 24px;
    }

    .ambience-grid {
        grid-auto-rows: 310px;
    }

    .ambience-card.large,
    .ambience-card.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .brand-strip span,
    .brand-strip span:nth-child(3n) {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .brand-strip span:last-child {
        border-bottom: 0;
    }
}

.site-header .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.site-header .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    justify-self: start;
}

.site-header .brand {
    justify-self: center;
}

.site-header .header-consult {
    width: auto;
    min-width: 118px;
    margin-top: 0;
    justify-self: end;
}

.site-header .header-actions {
    justify-self: end;
}

.site-header .main-nav {
    position: fixed;
    inset: 0 auto 0 0;
    display: grid;
    width: min(390px, 100vw);
    max-height: none;
    height: 100svh;
    padding: 92px 34px 34px;
    overflow-y: auto;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}

.site-header .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.site-header .main-nav a {
    padding: 15px 0;
    font-size: 1.08rem;
}

@media (max-width: 640px) {
    .site-header .header-inner {
        height: 74px;
        min-height: 74px;
    }

    .site-header .brand {
        width: 118px;
        flex-basis: auto;
    }

    .site-header .brand-logo {
        height: 70px;
        max-width: 118px;
    }

    .site-header .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .site-header .header-consult {
        min-width: auto;
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.86rem;
    }

    .site-header .main-nav {
        width: min(340px, 92vw);
        padding: 86px 24px 28px;
    }

    .site-header .main-nav a {
        padding: 13px 0;
        font-size: 1rem;
    }
}

.site-header .header-inner {
    height: 84px;
    padding-inline: 26px;
}

.site-header .nav-toggle {
    width: 52px;
    height: 52px;
}

.site-header .nav-toggle span {
    width: 20px;
}

.site-header .brand {
    align-self: center;
    width: 74px;
    height: 84px;
    padding: 2px 6px;
    border-radius: 0 0 9px 9px;
    overflow: hidden;
}

.site-header .brand-logo {
    width: auto;
    height: 80px;
    max-height: 80px;
    max-width: 62px;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: center;
}

.site-header .header-consult {
    align-self: center;
}

.site-header .header-actions {
    align-self: center;
}

.hero {
    padding-bottom: 132px;
}

.benefits-band {
    padding-top: 92px;
}

@media (max-width: 640px) {
    .site-header .header-inner {
        height: 76px;
        min-height: 76px;
        padding-inline: 14px;
    }

    .site-header .nav-toggle {
        width: 46px;
        height: 46px;
    }

    .site-header .brand {
        width: 66px;
        height: 76px;
        padding: 2px 5px;
        overflow: hidden;
    }

    .site-header .brand-logo {
        width: auto;
        height: 72px;
        max-height: 72px;
        max-width: 56px;
        object-fit: contain;
        transform: scale(1.6);
        transform-origin: center;
    }

    .site-header .header-consult {
        min-height: 40px;
        padding-inline: 12px;
    }

    .site-header .header-socials {
        display: none;
    }

    .site-header .drawer-socials {
        display: flex;
        flex-wrap: wrap;
    }

    .hero {
        padding-bottom: 108px;
    }

    .benefits-band {
        padding-top: 76px;
    }
}

.site-header .main-nav {
    width: min(460px, 100vw);
    padding: 38px 38px 42px;
    background:
        linear-gradient(160deg, rgba(255, 253, 249, 0.98), rgba(247, 244, 239, 0.96)),
        var(--color-paper);
    box-shadow: 34px 0 90px rgba(28, 26, 23, 0.22);
    transform: translateX(calc(-100% - 12px));
    transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .main-nav.is-open {
    transform: translateX(0);
}

.nav-panel-heading {
    display: grid;
    gap: 8px;
    padding: 34px 58px 28px 0;
    border-bottom: 1px solid var(--color-line);
}

.nav-panel-heading strong {
    max-width: 280px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
}

.nav-menu-title,
.nav-section-title {
    margin: 0;
    color: var(--color-clay);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-section {
    display: grid;
    gap: 4px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-line);
}

.nav-section:last-child {
    border-bottom: 0;
}

.site-header .main-nav .nav-section a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 0;
    color: var(--color-ink);
    font-size: clamp(1.18rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.15;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-header .main-nav .nav-section a::after {
    display: block;
    width: 18px;
    height: 1px;
    margin-left: 18px;
    background: currentColor;
    content: "";
    opacity: 0.22;
    transform: scaleX(0.6);
    transform-origin: right;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-header .main-nav .nav-section a:hover {
    color: var(--color-clay);
    transform: translateX(6px);
}

.site-header .main-nav .nav-section a:hover::after {
    opacity: 0.7;
    transform: scaleX(1);
}

.site-header .main-nav .nav-section-socials {
    padding-bottom: 0;
}

.site-header .drawer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
}

.site-header .main-nav .drawer-socials a {
    min-height: 40px;
    padding: 0 14px;
    border-color: rgba(155, 107, 67, 0.22);
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-clay);
    font-size: 0.84rem;
}

.site-header .drawer-socials i {
    margin-right: 8px;
    font-size: 1rem;
}

.nav-close {
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.78);
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

@media (max-width: 640px) {
    .site-header .main-nav {
        width: min(360px, 94vw);
        padding: 28px 24px 30px;
    }

    .nav-panel-heading {
        padding: 46px 54px 24px 0;
    }

    .nav-panel-heading strong {
        font-size: 2rem;
    }

    .nav-section {
        padding: 22px 0;
    }

    .site-header .main-nav .nav-section a {
        min-height: 39px;
        font-size: 1.08rem;
    }

    .nav-close {
        top: 22px;
        right: 20px;
    }
}

.nav-toggle i {
    font-size: 1.15rem;
    line-height: 1;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    border: 0;
    background: rgba(28, 26, 23, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.36s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.site-header.nav-active .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.site-header.nav-active .nav-toggle {
    opacity: 0;
    pointer-events: none;
}

.nav-close::before,
.nav-close::after {
    display: none;
}

.nav-close i {
    font-size: 1.28rem;
    line-height: 1;
}

.site-header .main-nav {
    z-index: 70;
    width: min(420px, 100vw);
    padding: 24px 38px 34px;
    background:
        linear-gradient(145deg, rgba(255, 253, 249, 0.99), rgba(247, 244, 239, 0.97)),
        var(--color-paper);
    border-right: 1px solid rgba(155, 107, 67, 0.16);
    box-shadow: 30px 0 90px rgba(28, 26, 23, 0.24);
    transform: translateX(-104%);
    transition: opacity 0.32s ease, transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .main-nav.is-open {
    transform: translateX(0);
}

.nav-panel-heading {
    justify-items: center;
    padding: 8px 36px 12px;
    text-align: center;
}

.nav-menu-logo {
    width: min(196px, 72%);
    height: auto;
    max-height: 132px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(28, 26, 23, 0.14));
}

.nav-accordion > summary,
.nav-primary-link > a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    color: var(--color-clay);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.nav-accordion > summary::-webkit-details-marker,
.nav-product-item > summary::-webkit-details-marker {
    display: none;
}

.nav-accordion > summary::after {
    color: rgba(155, 107, 67, 0.76);
    content: "+";
    font-family: Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.nav-accordion[open] > summary::after {
    transform: rotate(45deg);
}

.nav-accordion-content {
    display: grid;
    gap: 2px;
    padding: 5px 0 8px;
}

.nav-product-item {
    border-top: 1px solid rgba(155, 107, 67, 0.1);
}

.nav-product-item:first-child {
    border-top: 0;
}

.nav-product-item > summary {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    color: #29241f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    cursor: pointer;
    list-style: none;
}

.nav-product-item > summary::after {
    color: var(--color-muted);
    content: "\203A";
    font-family: Arial, sans-serif;
    transition: transform 0.2s ease;
}

.nav-product-item[open] > summary::after {
    transform: rotate(90deg);
}

.site-header .main-nav .nav-product-item > a {
    min-height: 32px;
    padding-left: 14px;
    color: var(--color-muted);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-placeholder-list {
    color: var(--color-muted);
    font-size: 0.94rem;
}

.nav-placeholder-list span {
    padding: 7px 0;
}

.site-header .main-nav .nav-primary-link {
    padding-block: 10px;
}

.site-header .main-nav .nav-primary-link > a {
    min-height: 42px;
    font-family: inherit;
    font-size: 0.76rem;
}

#mision,
#vision,
#valores {
    scroll-margin-top: 110px;
}

.site-header .main-nav .nav-section {
    padding: 20px 0;
}

.site-header .main-nav .nav-section.nav-primary-link {
    padding-block: 10px;
}

.site-header .main-nav .nav-section.nav-primary-link > a {
    color: var(--color-clay);
}

.nav-section-title {
    color: var(--color-clay);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.site-header .main-nav .nav-section a {
    min-height: 39px;
    color: #29241f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.14rem, 2.3vw, 1.38rem);
    font-weight: 500;
}

.site-header .main-nav .nav-section a:hover {
    color: #c58a52;
}

.site-header .drawer-socials a {
    display: grid;
    grid-template-columns: 24px 1fr 18px;
    gap: 12px;
    min-height: 54px;
    align-items: center;
    justify-content: initial;
    width: 100%;
    padding: 0 16px;
    border: 1px solid rgba(155, 107, 67, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.66);
    color: var(--color-ink);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
}

.site-header .main-nav .drawer-socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
}

.site-header .main-nav .drawer-socials a:hover {
    border-color: rgba(197, 138, 82, 0.42);
    color: #c58a52;
    transform: translateY(-2px);
}

.site-header .main-nav .drawer-socials a::after {
    display: none;
}

.site-header .main-nav .drawer-socials i {
    margin: 0;
    color: var(--color-clay);
    font-size: 1.18rem;
    line-height: 1;
}

.site-header .main-nav .drawer-socials i:last-child {
    justify-self: end;
    color: rgba(115, 109, 100, 0.72);
    font-size: 0.82rem;
}

.site-header .main-nav .drawer-socials span {
    min-width: 0;
}

.commercial-hero {
    height: 100vh;
    height: 100svh;
    min-height: 680px;
    max-height: 760px;
    padding: 0;
}

.commercial-hero .commercial-hero-grid {
    align-items: center;
    gap: 34px;
    padding-top: 0;
}

.commercial-hero h1 {
    max-width: 13ch;
    margin-bottom: 10px;
    font-size: clamp(2.65rem, 4.6vw, 4.35rem);
    line-height: 1;
}

.commercial-hero .hero-copy {
    max-width: 520px;
    margin-bottom: 18px;
    line-height: 1.42;
}

.commercial-hero .hero-quick-links {
    gap: 8px;
    max-width: 520px;
    margin-top: 18px;
}

.commercial-hero .hero-quick-links a {
    min-height: 58px;
    padding: 10px 14px;
    font-size: 0.82rem;
}

.commercial-hero + .benefits-band {
    padding-top: 56px;
}

.hero-slider-media {
    position: absolute;
    inset: 0;
    background: var(--color-charcoal);
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.8s ease, transform 6s ease;
}

.hero-slide-bg.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider .hero-overlay {
    background:
        linear-gradient(90deg, rgba(16, 14, 12, 0.76), rgba(16, 14, 12, 0.34) 56%, rgba(16, 14, 12, 0.5)),
        linear-gradient(180deg, rgba(16, 14, 12, 0.08), rgba(16, 14, 12, 0.38));
}

.hero-slider-grid {
    position: relative;
    grid-template-columns: minmax(0, 760px);
    align-content: stretch;
    height: 100%;
}

.hero-slider-content {
    position: absolute;
    top: 108px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 360px;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    opacity: 0;
    overflow: visible;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide-content:not(.hero-slide-pisos) {
    max-width: 700px;
}

.hero-slide-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-slide-pisos {
    display: grid;
    grid-template-columns: minmax(0, 39%) minmax(0, 61%);
    gap: clamp(22px, 3vw, 42px);
    align-items: start;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-slide-pisos .hero-slide-copy {
    max-width: 480px;
    min-width: 0;
    padding-top: 8px;
}

.hero-slide-pisos h1 {
    max-width: 480px;
    font-size: clamp(2.35rem, 3.8vw, 3.65rem);
}

.hero-slide-pisos .hero-copy {
    max-width: 440px;
}

.commercial-hero .hero-slide-pisos .hero-pisos-title {
    margin-bottom: 14px;
    font-size: 1.82rem;
    line-height: 1.1;
}

.commercial-hero .hero-slide-pisos .hero-pisos-description {
    margin-bottom: 18px;
    font-size: clamp(0.83rem, 1.58vw, 1.07rem);
    line-height: 1.42;
}

.commercial-hero .hero-slide-pegamentos .hero-pisos-title {
    max-width: 12ch;
}

.commercial-hero .hero-slide-pegamentos .hero-pisos-description {
    font-size: clamp(0.76rem, 1.15vw, 0.94rem);
    line-height: 1.36;
}

.hero-slide-info {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-slide-content.hero-slide-info {
    max-width: 100%;
}

.hero-slide-info .hero-slide-copy {
    max-width: 500px;
    padding-top: 8px;
}

.hero-slide-info h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 4vw, 3.85rem);
}

.hero-slide-info .hero-copy {
    max-width: 470px;
}

.hero-info-panel,
.hero-payment-cards {
    width: min(100%, 560px);
    min-height: 300px;
    align-self: start;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.13);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-info-panel {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(24px, 4vw, 40px);
}

.hero-info-panel span {
    color: #f0c99f;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-info-panel strong {
    max-width: 12ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.04;
}

.hero-info-panel p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.hero-info-panel-soft {
    background:
        linear-gradient(145deg, rgba(255, 253, 249, 0.15), rgba(155, 107, 67, 0.18)),
        rgba(255, 253, 249, 0.08);
}

.hero-payment-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.hero-payment-cards div {
    display: grid;
    min-height: 126px;
    place-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.12);
    color: #fff;
    text-align: center;
}

.hero-payment-cards i {
    color: #f0c99f;
    font-size: 1.7rem;
}

.hero-payment-cards span {
    font-size: 0.86rem;
    font-weight: 900;
}

.hero-pisos-collage {
    display: grid;
    grid-template-columns: minmax(0, 7.4fr) minmax(108px, 2.6fr);
    gap: 10px;
    width: 112%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    align-self: start;
}

.hero-pisos-collage figure {
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-gallery-thumb {
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.hero-gallery-thumb figure {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-gallery-thumb:hover figure,
.hero-gallery-thumb:focus-visible figure {
    border-color: rgba(240, 201, 159, 0.76);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
    transform: translateY(-2px);
}

.hero-gallery-thumb.is-active figure {
    border-color: #f0c99f;
    box-shadow:
        0 0 0 2px rgba(240, 201, 159, 0.28),
        0 20px 54px rgba(0, 0, 0, 0.34);
}

.hero-pisos-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.45s ease, filter 0.45s ease;
}

.hero-pisos-collage figure:hover img,
.hero-gallery-thumb:focus-visible img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.045);
}

.hero-pisos-stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    min-height: 0;
}

.hero-slide-porcelanatos .hero-pisos-stack,
.hero-slide-azulejos .hero-pisos-stack {
    grid-template-rows: repeat(4, 1fr);
}

.hero-gallery-placeholder {
    display: grid;
    min-width: 0;
    min-height: 0;
    place-items: center;
    gap: 4px;
    padding: 10px 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.12);
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-gallery-placeholder span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(240, 201, 159, 0.5);
    border-radius: 50%;
    color: #f0c99f;
    font-size: 1.1rem;
    line-height: 1;
}

.hero-gallery-placeholder small {
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-gallery-placeholder-hover small {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-gallery-placeholder-hover:hover small,
.hero-gallery-placeholder-hover:focus-within small {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content.is-active {
    z-index: 20;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-slider .hero-actions {
    position: relative;
    z-index: 30;
    min-height: 46px;
    pointer-events: auto;
}

.hero-slider-controls {
    position: absolute;
    bottom: 86px;
    left: 50%;
    z-index: 3;
    display: inline-grid;
    grid-template-columns: 44px auto 44px;
    gap: 14px;
    align-items: center;
    width: fit-content;
    margin-top: 0;
    transform: translateX(-50%);
}

.hero-slider-arrow,
.hero-slider-dots button {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 253, 249, 0.11);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-slider-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
}

.hero-slider-arrow:hover,
.hero-slider-dots button:hover {
    border-color: rgba(240, 201, 159, 0.66);
    background: rgba(155, 107, 67, 0.24);
}

.hero-slider-arrow:hover {
    transform: translateY(-2px);
}

.hero-slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
}

.hero-slider-dots button.is-active {
    width: 28px;
    border-color: rgba(240, 201, 159, 0.78);
    background: #f0c99f;
}

@media (max-width: 980px) {
    .commercial-hero {
        height: 100vh;
        height: 100svh;
        min-height: 640px;
        max-height: 720px;
    }

    .hero-slider-content {
        top: 102px;
        height: 330px;
    }

    .hero-slide-pisos {
        grid-template-columns: minmax(0, 40%) minmax(0, 60%);
        gap: 18px;
    }

    .hero-slide-info {
        grid-template-columns: minmax(0, 43%) minmax(0, 57%);
        gap: 20px;
    }

    .hero-info-panel,
    .hero-payment-cards {
        min-height: 270px;
    }

    .hero-pisos-collage {
        height: 100%;
        width: 106%;
        grid-template-columns: minmax(0, 7.2fr) minmax(78px, 2.8fr);
        gap: 8px;
    }

    .hero-pisos-stack {
        gap: 8px;
    }

    .hero-slider-controls {
        bottom: 82px;
    }
}

@media (max-width: 640px) {
    .site-header .main-nav {
        width: 100vw;
        padding: 20px 26px 30px;
    }

    .nav-panel-heading {
        padding: 8px 32px 12px;
    }

    .nav-menu-logo {
        width: min(178px, 76%);
    }

    .site-header .main-nav .nav-section {
        padding: 18px 0;
    }

    .commercial-hero {
        height: 100vh;
        height: 100svh;
        min-height: 620px;
        max-height: 740px;
        padding: 0;
    }

    .commercial-hero .commercial-hero-grid {
        gap: 18px;
        padding-top: 0;
    }

    .commercial-hero h1 {
        max-width: 12ch;
        margin-bottom: 8px;
        font-size: clamp(1.95rem, 8vw, 2.55rem);
        line-height: 1;
    }

    .commercial-hero .hero-copy {
        max-width: 31ch;
        margin-bottom: 16px;
        font-size: 0.94rem;
        line-height: 1.4;
    }

    .commercial-hero .hero-quick-links {
        display: grid;
        grid-auto-columns: minmax(132px, 1fr);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 8px;
        max-width: 100%;
        margin-top: 14px;
        padding-bottom: 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .commercial-hero .hero-quick-links a {
        min-height: 46px;
        padding: 8px 12px;
        scroll-snap-align: start;
    }

    .hero-slider-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-content {
        top: 96px;
        height: 310px;
    }

    .hero-slide-content {
        width: 100%;
    }

    .hero-slide-content:not(.hero-slide-pisos) {
        max-width: 100%;
    }

    .hero-slide-pisos {
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow: visible;
    }

    .hero-slide-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow: visible;
    }

    .hero-slide-info .hero-slide-copy {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-info-panel,
    .hero-payment-cards {
        width: 100%;
        min-height: 170px;
        order: -1;
    }

    .hero-info-panel {
        padding: 20px;
    }

    .hero-info-panel strong {
        max-width: 14ch;
        font-size: 1.45rem;
    }

    .hero-info-panel p {
        font-size: 0.9rem;
        line-height: 1.42;
    }

    .hero-payment-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }

    .hero-payment-cards div {
        min-height: 72px;
        gap: 6px;
    }

    .hero-payment-cards i {
        font-size: 1.25rem;
    }

    .hero-payment-cards span {
        font-size: 0.72rem;
    }

    .hero-slide-pisos .hero-slide-copy {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-slide-pegamentos {
        gap: 10px;
    }

    .hero-slide-pegamentos .hero-pisos-collage {
        height: min(260px, calc(100svh - 390px));
        min-height: 205px;
    }

    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-title {
        max-width: 14ch;
        margin-bottom: 8px;
        font-size: 1.35rem;
    }

    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-description {
        max-width: 42ch;
        margin-bottom: 9px;
        font-size: 0.64rem;
        line-height: 1.28;
    }

    .hero-slide-pegamentos .hero-pisos-description br + br {
        display: block;
        content: "";
        margin-top: 5px;
    }

    .hero-slide-pegamentos .hero-actions .btn {
        max-width: 230px;
        min-height: 38px;
        padding-block: 8px;
        font-size: 0.82rem;
    }

    .hero-pisos-collage {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 82px;
        gap: 10px;
        width: 100%;
        height: min(300px, calc(100svh - 330px));
        min-height: 238px;
        order: -1;
    }

    .hero-pisos-main {
        min-height: 0;
    }

    .hero-pisos-stack {
        display: grid;
        grid-auto-columns: 82px;
        grid-auto-flow: column;
        grid-template-rows: 82px;
        gap: 8px;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .hero-gallery-thumb {
        width: 82px;
        height: 82px;
        scroll-snap-align: start;
    }

    .hero-gallery-placeholder {
        width: 82px;
        height: 82px;
        padding: 8px 5px;
        scroll-snap-align: start;
    }

    .hero-gallery-thumb figure {
        height: 82px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    }

    .hero-slider .hero-overlay {
        background:
            linear-gradient(90deg, rgba(16, 14, 12, 0.78), rgba(16, 14, 12, 0.48)),
            linear-gradient(180deg, rgba(16, 14, 12, 0.12), rgba(16, 14, 12, 0.42));
    }

    .hero-slider-controls {
        bottom: 86px;
        grid-template-columns: 40px auto 40px;
        gap: 12px;
        margin-top: 0;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 28px);
    }

    .site-header .header-inner {
        grid-template-columns: 1fr auto 1fr;
        height: 72px;
        min-height: 72px;
        padding-inline: 12px;
    }

    .site-header .nav-toggle {
        width: 42px;
        height: 42px;
        justify-self: start;
    }

    .site-header .brand {
        justify-self: center;
        width: 62px;
        height: 72px;
        padding: 2px 5px;
    }

    .site-header .brand-logo {
        height: 68px;
        max-height: 68px;
        max-width: 54px;
        transform: scale(1.55);
    }

    .site-header .header-actions {
        justify-self: end;
        gap: 0;
    }

    .site-header .header-socials {
        display: none;
    }

    .site-header .header-consult {
        min-width: auto;
        min-height: 38px;
        padding-inline: 11px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .site-header .main-nav {
        width: 100vw;
        padding: 18px 24px 28px;
    }

    .nav-close {
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

    .nav-panel-heading {
        padding: 28px 32px 12px;
    }

    .nav-menu-logo {
        width: min(170px, 76%);
    }

    .site-header .main-nav .nav-section {
        padding: 17px 0;
    }

    .site-header .main-nav .nav-section a {
        min-height: 38px;
        font-size: 1rem;
    }

    .site-header .main-nav .drawer-socials {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .site-header .main-nav .drawer-socials a {
        min-height: 50px;
    }

    .commercial-hero {
        height: 88vh;
        height: 88svh;
        min-height: 680px;
        max-height: 760px;
    }

    .hero-slider-content {
        top: 88px;
        height: calc(100% - 178px);
    }

    .hero-slide-content {
        justify-content: flex-start;
    }

    .commercial-hero h1,
    .hero-slide-pisos h1 {
        max-width: 12.5ch;
        margin-bottom: 6px;
        font-size: clamp(1.78rem, 7.2vw, 2.28rem);
        line-height: 1;
    }

    .commercial-hero .hero-copy {
        max-width: 31ch;
        margin-bottom: 12px;
        font-size: 0.9rem;
        line-height: 1.36;
    }

    .commercial-hero .hero-slide-pisos .hero-pisos-description {
        margin-bottom: 12px;
        font-size: 0.71rem;
        line-height: 1.4;
    }

    .hero-slider .hero-actions {
        min-height: 42px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 42px;
        padding-inline: 18px;
        font-size: 0.92rem;
    }

    .hero-slide-pisos {
        align-items: center;
        text-align: center;
    }

    .hero-slide-pisos .hero-slide-copy {
        align-items: center;
        width: min(100%, 330px);
        margin-inline: auto;
        text-align: center;
    }

    .hero-slide-pisos h1,
    .hero-slide-pisos .hero-copy {
        margin-inline: auto;
        text-align: center;
    }

    .hero-slide-pisos .hero-actions {
        justify-content: center;
        width: 100%;
        margin-top: 2px;
    }

    .hero-slide-pisos .hero-actions .btn {
        width: auto;
        min-width: 132px;
        max-width: 180px;
        padding-inline: 22px;
    }

    .hero-pisos-collage {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 84px;
        gap: 10px;
        width: 100%;
        height: min(320px, calc(100svh - 326px));
        min-height: 250px;
        order: -1;
    }

    .hero-pisos-main {
        min-height: 0;
    }

    .hero-pisos-stack {
        display: grid;
        grid-auto-columns: 84px;
        grid-auto-flow: column;
        grid-template-rows: 84px;
        gap: 8px;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .hero-gallery-thumb {
        width: 84px;
        height: 84px;
        scroll-snap-align: start;
    }

    .hero-gallery-placeholder {
        width: 84px;
        height: 84px;
        padding: 8px 5px;
        scroll-snap-align: start;
    }

    .hero-gallery-thumb figure {
        height: 84px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    }

    .hero-slider-controls {
        bottom: 44px;
        grid-template-columns: 38px auto 38px;
        gap: 10px;
    }

    .hero-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-slider-dots {
        gap: 7px;
    }

    .scroll-cue {
        bottom: 14px;
        width: 30px;
        height: 44px;
    }

    .section,
    .cta-section,
    .catalog-section,
    .payment-section,
    .featured-products,
    .ambience-section,
    .contact-section,
    .about-section {
        padding: 66px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .contact-section .section-heading h2,
    .about-hero-copy h2 {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.08;
    }

    .benefits-band {
        padding-top: 42px;
    }

    .visual-category-card {
        min-height: 250px;
    }

    .payment-card,
    .contact-card,
    .about-text-card,
    .value-card {
        min-height: auto;
        padding: 22px;
    }

    .product-card img {
        height: 220px;
    }

    .ambience-grid {
        grid-auto-rows: 260px;
    }

    .about-hero-media {
        min-height: 280px;
    }
}

@media (max-width: 390px) {
    .site-header .header-consult {
        padding-inline: 9px;
        font-size: 0.78rem;
    }

    .commercial-hero {
        min-height: 660px;
    }

    .hero-slider-content {
        top: 84px;
        height: calc(100% - 168px);
    }

    .commercial-hero h1,
    .hero-slide-pisos h1 {
        font-size: clamp(1.65rem, 7.4vw, 2.05rem);
    }

    .commercial-hero .hero-copy {
        font-size: 0.9rem;
    }

    .hero-pisos-collage {
        grid-template-rows: minmax(0, 1fr) 76px;
        height: min(270px, calc(100svh - 326px));
        min-height: 220px;
    }

    .hero-pisos-stack {
        grid-auto-columns: 76px;
        grid-template-rows: 76px;
    }

    .hero-gallery-thumb,
    .hero-gallery-thumb figure,
    .hero-gallery-placeholder {
        width: 76px;
        height: 76px;
    }

    .hero-gallery-placeholder small {
        font-size: 0.62rem;
    }
}

@media (max-width: 640px) {
    *,
    *::before,
    *::after {
        max-width: 100%;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

    .site-header .header-inner {
        grid-template-columns: minmax(44px, 1fr) auto minmax(92px, 1fr);
        column-gap: 8px;
    }

    .site-header .nav-toggle {
        align-self: center;
    }

    .site-header .brand {
        align-self: center;
    }

    .site-header .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
    }

    .site-header .header-socials {
        display: none;
    }

    .site-header .header-consult {
        width: auto;
        flex: 0 0 auto;
        min-height: 38px;
        max-width: 82px;
        padding-inline: 10px;
        font-size: 0.78rem;
    }

    .site-header .main-nav {
        max-height: 100svh;
        padding: 16px 22px 24px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-panel-heading {
        padding: 24px 30px 10px;
    }

    .nav-menu-logo {
        width: min(158px, 72%);
    }

    .site-header .main-nav .nav-section {
        padding: 14px 0;
    }

    .site-header .main-nav .nav-section a {
        min-height: 38px;
        padding-block: 8px;
    }

    .site-header .main-nav .drawer-socials a {
        min-height: 48px;
    }

    .commercial-hero {
        min-height: 660px;
        max-height: 740px;
    }

    .hero-slider-content {
        top: 84px;
        height: calc(100% - 170px);
    }

    .hero-slide-content {
        min-width: 0;
    }

    .hero-slide-info {
        align-items: center;
        text-align: center;
    }

    .hero-slide-info .hero-slide-copy {
        align-items: center;
        width: min(100%, 330px);
        margin-inline: auto;
        text-align: center;
    }

    .hero-slide-info h1,
    .hero-slide-info .hero-copy {
        margin-inline: auto;
        text-align: center;
    }

    .hero-slide-info .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-slide-info .hero-actions .btn {
        width: auto;
        max-width: 260px;
    }

    .hero-info-panel,
    .hero-payment-cards {
        width: min(100%, 330px);
        margin-inline: auto;
    }

    .hero-info-panel {
        min-height: 142px;
        gap: 7px;
        padding: 16px;
    }

    .hero-info-panel strong {
        max-width: 15ch;
        font-size: 1.28rem;
    }

    .hero-info-panel p {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .hero-payment-cards {
        min-height: 142px;
        padding: 8px;
    }

    .hero-payment-cards div {
        min-height: 62px;
    }

    .hero-pisos-collage {
        width: min(100%, 340px);
        margin-inline: auto;
    }

    .hero-pisos-stack {
        max-width: 100%;
        padding-bottom: 2px;
    }

    .hero-slider-controls {
        bottom: 38px;
    }

    .scroll-cue {
        display: none;
    }

    .benefits-strip,
    .visual-category-grid,
    .payment-layout,
    .payment-grid,
    .product-grid,
    .about-hero,
    .about-intro-grid,
    .about-story,
    .contact-grid,
    .ambience-grid,
    .category-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .payment-layout {
        gap: 26px;
    }

    .visual-category-card,
    .product-card,
    .payment-card,
    .contact-card,
    .about-text-card,
    .benefit-card {
        width: 100%;
    }

    .btn,
    .mini-btn,
    .nav-cta,
    .product-card .btn,
    .sales-options a {
        min-height: 44px;
    }
}

@media (max-width: 370px) {
    .site-header .header-socials {
        display: none;
    }

    .site-header .header-consult {
        max-width: 76px;
        padding-inline: 8px;
        font-size: 0.74rem;
    }

    .hero-pisos-collage {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Logo del panel lateral: compensa el espacio transparente del PNG original. */
.site-header .main-nav .nav-panel-heading {
    height: 215px;
    align-items: start;
    padding: 0 0 2px;
    overflow: hidden;
}

.site-header .main-nav .nav-menu-logo {
    width: 65%;
    max-height: none;
    margin-top: -52px;
}

@media (max-width: 640px) {
    .site-header .main-nav .nav-panel-heading {
        height: clamp(158px, 49vw, 210px);
        padding: 0 0 2px;
    }

    .site-header .main-nav .nav-menu-logo {
        width: 62%;
        margin-top: clamp(-92px, -15vw, -52px);
    }
}

/* Categoría y acceso secundario alineados en una sola fila. */
.site-header .main-nav .nav-product-list > a.nav-product-item,
.site-header .main-nav .nav-accordion-content > a.nav-company-item {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    color: #29241f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.site-header .main-nav .nav-product-list > a.nav-product-item::after {
    display: none;
}

.site-header .main-nav .nav-product-action {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: rgba(155, 107, 67, 0.78);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.site-header .main-nav .nav-product-action i {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.8;
    transition: transform 0.22s ease;
}

.site-header .main-nav .nav-product-list > a.nav-product-item:hover {
    color: var(--color-clay);
    transform: translateX(2px);
}

.site-header .main-nav .nav-product-list > a.nav-product-item:hover .nav-product-action {
    color: #c58a52;
}

.site-header .main-nav .nav-product-list > a.nav-product-item:hover .nav-product-action i {
    transform: translateX(2px);
}

/* Acciones secundarias de la sección Empresa. */
.site-header .main-nav .nav-accordion-content > a.nav-company-item {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #29241f;
    transition: color 0.22s ease, transform 0.22s ease;
}

.site-header .main-nav .nav-accordion-content > a.nav-company-item::after {
    display: none;
}

.site-header .main-nav .nav-company-action {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: rgba(155, 107, 67, 0.78);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.site-header .main-nav .nav-company-action i {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.22s ease;
}

.site-header .main-nav .nav-accordion-content > a.nav-company-item:hover {
    color: var(--color-clay);
    transform: translateX(2px);
}

.site-header .main-nav .nav-accordion-content > a.nav-company-item:hover .nav-company-action {
    color: #c58a52;
}

.site-header .main-nav .nav-accordion-content > a.nav-company-item:hover .nav-company-action i {
    transform: translateX(2px);
}

/* Revisión responsive integral: reglas finales acotadas a celulares. */
.footer-credit {
    display: none;
}

@media (max-width: 640px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    body,
    main,
    section,
    .site-header,
    .site-footer {
        min-width: 0;
    }

    .container {
        width: calc(100% - 40px);
        max-width: none;
        margin-inline: auto;
    }

    /* Header: controles laterales estables y logo realmente centrado. */
    .site-header .header-inner {
        grid-template-columns: 48px minmax(0, 1fr) 88px;
        column-gap: 8px;
        width: 100%;
        height: 72px;
        min-height: 72px;
        padding-inline: 12px;
    }

    .site-header .nav-toggle {
        position: static;
        width: 44px;
        height: 44px;
        margin: 0;
        justify-self: start;
    }

    .site-header .brand {
        width: 74px;
        height: 70px;
        min-width: 0;
        padding: 0;
        justify-self: center;
        overflow: hidden;
    }

    .site-header .brand-logo {
        width: 58px;
        height: auto;
        max-width: 58px;
        max-height: none;
        transform: scale(1.35);
        transform-origin: center;
    }

    .site-header .header-actions {
        width: 88px;
        justify-self: end;
    }

    .site-header .header-socials {
        display: none;
    }

    .site-header .header-consult {
        width: 88px;
        max-width: 88px;
        min-height: 44px;
        padding-inline: 8px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    /* Menú desplazable, compacto y sin contenido oculto. */
    .site-header .main-nav {
        width: min(100vw, 430px);
        height: 100svh;
        max-height: 100svh;
        padding: 12px 22px 30px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
    }

    .nav-close {
        position: sticky;
        top: 4px;
        z-index: 3;
        width: 44px;
        height: 44px;
        margin: 0 0 -44px auto;
    }

    .site-header .main-nav .nav-panel-heading {
        height: 112px;
        padding: 0;
        align-items: flex-start;
        justify-content: center;
    }

    .site-header .main-nav .nav-menu-logo {
        width: 148px;
        max-width: 60%;
        max-height: none;
        margin-top: -55px;
    }

    .site-header .main-nav .nav-section {
        padding: 11px 0;
    }

    .nav-accordion summary,
    .site-header .main-nav .nav-primary-link > a {
        font-size: 0.94rem;
    }

    .site-header .main-nav .nav-product-list > a.nav-product-item,
    .site-header .main-nav .nav-accordion-content > a.nav-company-item {
        min-height: 42px;
        gap: 10px;
        padding-block: 5px;
        font-size: 0.94rem;
    }

    .site-header .main-nav .nav-product-action,
    .site-header .main-nav .nav-company-action {
        margin-left: auto;
        font-size: 0.7rem;
        text-align: right;
    }

    .site-header .main-nav .drawer-socials {
        gap: 7px;
    }

    .site-header .main-nav .drawer-socials a {
        min-height: 46px;
        font-size: 0.9rem;
    }

    /* Todos los slides conservan una altura única y espacio para contenido completo. */
    .commercial-hero {
        height: max(100svh, 900px);
        min-height: 900px;
        max-height: none;
        padding: 0;
    }

    .hero-slider-content {
        top: 88px;
        width: 100%;
        height: calc(100% - 178px);
    }

    .hero-slide-content,
    .hero-slide-pisos,
    .hero-slide-info {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: visible;
    }

    .hero-slide-pisos,
    .hero-slide-info {
        gap: 16px;
        align-content: start;
    }

    .hero-slide-pisos .hero-slide-copy,
    .hero-slide-info .hero-slide-copy {
        width: min(100%, 440px);
        max-width: 440px;
    }

    .commercial-hero .hero-slide-pisos .hero-pisos-title {
        max-width: 100%;
        margin: 0 auto 10px;
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        line-height: 1.05;
        overflow-wrap: normal;
        word-break: normal;
    }

    .commercial-hero .hero-slide-pisos .hero-pisos-description,
    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-description {
        max-width: 42ch;
        margin: 0 auto 14px;
        font-size: 0.9375rem;
        line-height: 1.42;
        overflow-wrap: break-word;
    }

    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-title {
        max-width: 15ch;
        font-size: clamp(1.65rem, 7.3vw, 2.05rem);
    }

    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-description {
        font-size: 0.875rem;
        line-height: 1.36;
    }

    .hero-slide-pisos .hero-actions,
    .hero-slide-info .hero-actions {
        min-height: 44px;
        margin-top: 0;
    }

    .hero-slide-pisos .hero-actions .btn,
    .hero-slide-info .hero-actions .btn,
    .hero-slide-pegamentos .hero-actions .btn {
        width: auto;
        min-width: 140px;
        max-width: min(100%, 270px);
        min-height: 44px;
        padding: 10px 20px;
        white-space: normal;
    }

    /* Galerías: visor superior y miniaturas táctiles sin desborde. */
    .hero-pisos-collage,
    .hero-slide-pegamentos .hero-pisos-collage {
        width: min(100%, 440px);
        height: 305px;
        min-height: 305px;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) 80px;
        gap: 10px;
        margin-inline: auto;
        overflow: hidden;
    }

    .hero-pisos-main,
    .hero-pisos-main img,
    .hero-pisos-collage img {
        width: 100%;
        min-width: 0;
        object-fit: cover;
    }

    .hero-pisos-stack {
        width: 100%;
        max-width: 100%;
        grid-auto-columns: 80px;
        grid-template-rows: 80px;
        gap: 8px;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
    }

    .hero-gallery-thumb,
    .hero-gallery-thumb figure,
    .hero-gallery-placeholder {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .hero-gallery-thumb {
        touch-action: manipulation;
    }

    .hero-slider-controls {
        bottom: 30px;
        grid-template-columns: 44px auto 44px;
        gap: 10px;
        max-width: calc(100% - 40px);
    }

    .hero-slider-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-slider-dots {
        gap: 6px;
    }

    /* Footer mobile centrado, legible y sin recuadro alrededor del PNG. */
    .site-footer {
        padding: 52px 0 24px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .site-footer .footer-brand {
        width: 190px;
        height: 150px;
        margin: -38px auto 6px;
        padding: 0;
        overflow: hidden;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .footer-brand .brand-logo {
        width: 160px;
        height: auto;
        max-width: 160px;
        max-height: none;
        transform: translateY(-31px);
    }

    .site-footer h3 {
        margin-bottom: 12px;
    }

    .site-footer ul,
    .social-links {
        justify-content: center;
        justify-items: center;
    }

    .site-footer p,
    .site-footer li,
    .social-links a {
        font-size: 0.92rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
        padding-top: 24px;
        margin-top: 34px;
        text-align: center;
    }

    .footer-credit {
        display: block;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.75rem !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
}

@media (max-width: 360px) {
    .container {
        width: calc(100% - 40px);
    }

    .site-header .header-inner {
        grid-template-columns: 44px minmax(0, 1fr) 82px;
        column-gap: 4px;
        padding-inline: 8px;
    }

    .site-header .brand {
        width: 64px;
    }

    .site-header .brand-logo {
        width: 52px;
        max-width: 52px;
    }

    .site-header .header-actions,
    .site-header .header-consult {
        width: 82px;
        max-width: 82px;
    }

    .site-header .header-consult {
        padding-inline: 6px;
        font-size: 0.73rem;
    }

    .commercial-hero {
        height: 940px;
        min-height: 940px;
    }

    .hero-pisos-collage,
    .hero-slide-pegamentos .hero-pisos-collage {
        height: 290px;
        min-height: 290px;
        grid-template-rows: minmax(0, 1fr) 76px;
    }

    .hero-pisos-stack {
        grid-auto-columns: 76px;
        grid-template-rows: 76px;
    }

    .hero-gallery-thumb,
    .hero-gallery-thumb figure,
    .hero-gallery-placeholder {
        width: 76px;
        height: 76px;
        min-width: 76px;
    }

    .commercial-hero .hero-slide-pisos .hero-pisos-description {
        font-size: 0.9375rem;
    }

    .commercial-hero .hero-slide-pisos.hero-slide-pegamentos .hero-pisos-description {
        font-size: 0.875rem;
    }
}

/* Banda informativa de servicios: tres tarjetas de contenido flexible. */
.services-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.services-strip .benefit-card,
.services-strip .benefit-card:nth-child(2n) {
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: clamp(24px, 2.4vw, 34px);
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
}

.services-strip .benefit-card:last-child {
    border-right: 0;
}

.services-strip .benefit-card h3 {
    margin: 24px 0 14px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.25;
}

.services-strip .benefit-card p {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.services-strip .benefit-card p:last-child {
    margin-bottom: 0;
}

.benefit-payment-methods {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.benefit-payment-methods span {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.benefit-payment-methods i {
    width: 20px;
    color: var(--color-clay);
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 640px) {
    .services-strip {
        grid-template-columns: minmax(0, 1fr);
        width: calc(100% - 40px);
        border-radius: 18px;
    }

    .services-strip .benefit-card,
    .services-strip .benefit-card:nth-child(2n) {
        width: 100%;
        padding: 26px 22px;
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .services-strip .benefit-card:last-child {
        border-bottom: 0;
    }

    .services-strip .benefit-card h3 {
        margin-top: 18px;
        font-size: 1.08rem;
        overflow-wrap: break-word;
    }

    .services-strip .benefit-card p {
        font-size: 0.94rem;
        line-height: 1.55;
    }
}

/* Carrusel interno e independiente de promociones. */
.hero-slide-promotions {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}

.promotion-slider {
    position: relative;
    flex: 0 0 auto;
    width: min(82vw, 1240px);
    max-width: none;
    height: min(100%, 410px);
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(155, 107, 67, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 70px rgba(41, 36, 31, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.promotion-slides,
.promotion-item {
    position: absolute;
    inset: 0;
}

.promotion-item {
    display: grid;
    align-content: center;
    padding: clamp(54px, 6vw, 88px) clamp(54px, 7vw, 104px);
    padding-bottom: clamp(112px, 10vw, 126px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 249, 0.94) 60%, rgba(246, 241, 235, 0.86) 100%),
        var(--promotion-image),
        linear-gradient(135deg, #ffffff, #f2e9df);
    background-position: center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.65s ease;
}

.promotion-item.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.promotion-copy {
    display: flex;
    width: min(100%, 720px);
    flex-direction: column;
    align-items: flex-start;
}

.promotion-copy > span {
    margin-bottom: 15px;
    color: rgba(155, 107, 67, 0.82);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.promotion-copy h2 {
    max-width: 17ch;
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1;
}

.promotion-copy p {
    max-width: 54ch;
    margin: 0 0 28px;
    color: #59534d;
    font-size: clamp(0.94rem, 1.5vw, 1.08rem);
    line-height: 1.5;
}

.promotion-copy .btn {
    min-height: 50px;
    padding-inline: 26px;
    box-shadow: 0 12px 26px rgba(155, 107, 67, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promotion-copy .btn:hover,
.promotion-copy .btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(155, 107, 67, 0.32);
}

.promotion-controls {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 4vw, 48px);
    bottom: 28px;
    left: clamp(24px, 4vw, 48px);
    display: grid;
    grid-template-columns: 42px auto 42px;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.promotion-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(155, 107, 67, 0.3);
    border-radius: 50%;
    color: var(--color-clay);
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.promotion-arrow:hover,
.promotion-arrow:focus-visible {
    border-color: rgba(155, 107, 67, 0.72);
    color: #fff;
    background: rgba(155, 107, 67, 0.9);
}

.promotion-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promotion-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(155, 107, 67, 0.54);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.promotion-dots button.is-active {
    width: 24px;
    background: var(--color-clay);
}

@media (max-width: 640px) {
    .hero-slide-promotions {
        align-items: flex-start;
        overflow: visible;
    }

    .promotion-slider {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        height: 610px;
        min-height: 610px;
        border-radius: 18px;
    }

    .promotion-item {
        align-content: center;
        padding: 58px 24px 112px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 253, 249, 0.97) 64%, rgba(246, 241, 235, 0.99) 100%),
            var(--promotion-image),
            linear-gradient(145deg, #ffffff, #f2e9df);
        background-position: center;
        background-size: cover;
    }

    .promotion-copy {
        align-items: center;
        margin-inline: auto;
        text-align: center;
    }

    .promotion-copy h2 {
        max-width: 16ch;
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .promotion-copy p {
        max-width: 32ch;
        font-size: 0.95rem;
    }

    .promotion-copy .btn {
        width: auto;
        max-width: 240px;
        min-height: 44px;
    }

    .promotion-controls {
        right: 18px;
        bottom: 26px;
        left: 18px;
        grid-template-columns: 44px auto 44px;
        gap: 10px;
    }

    .promotion-arrow {
        width: 44px;
        height: 44px;
    }
}

/* Catálogo público conectado al CMS. */
.catalog-page-hero {
    position: relative;
    display: grid;
    min-height: 520px;
    align-items: end;
    padding: 150px 0 76px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, rgba(19, 17, 15, 0.88), rgba(19, 17, 15, 0.42)), var(--catalog-hero-image), var(--color-charcoal);
    background-position: center;
    background-size: cover;
}

.catalog-page-hero.floor-companies-hero {
    min-height: 300px;
    padding: 108px 0 38px;
}

.floor-companies-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(2.65rem, 5vw, 4.5rem);
}

.floor-companies-section {
    padding-top: 18px;
    padding-bottom: 38px;
    background: #fff;
}

.floor-companies-section > .container {
    width: calc(100% - 40px);
    max-width: 1320px;
}

.floor-companies-section .catalog-products-heading {
    display: block;
    margin-bottom: 14px;
}

.floor-companies-section .catalog-products-heading h2 {
    margin: 0 0 3px;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    letter-spacing: -0.025em;
}

.company-section-intro {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.catalog-page-hero-content { position: relative; z-index: 1; }

.catalog-company-hero-logos {
    display: flex;
    width: fit-content;
    max-width: 100%;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.catalog-company-hero-logo {
    display: block;
    width: min(210px, 34vw);
    height: 112px;
    object-fit: contain;
}

.catalog-page-hero h1 {
    max-width: 16ch;
    margin: 0 0 18px;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.95;
}

.catalog-page-hero-content > p:last-child {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.55;
}

.catalog-products-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
}

.catalog-products-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); }

.catalog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-clay);
    font-weight: 800;
}

.catalog-product-grid { align-items: stretch; }
.catalog-product-card { display: flex; min-width: 0; flex-direction: column; }
.catalog-product-card > div { height: 100%; align-content: start; }
.catalog-product-card p { margin: 0; color: var(--color-muted); line-height: 1.55; }
.catalog-product-card .btn { align-self: end; margin-top: auto; }
.catalog-product-card .catalog-product-meta {
    padding-bottom: 8px;
    color: var(--color-charcoal);
    font-size: 0.9rem;
}

.floor-product-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.floor-product-card .catalog-product-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eeeae5;
}

.floor-product-card .catalog-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.floor-product-card:hover .catalog-product-photo img { transform: scale(1.025); }

.floor-product-card .catalog-product-body {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
}

.floor-product-card .catalog-product-body h3 { margin: 0 0 14px; }
.floor-product-card .catalog-product-body .btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.company-slider {
    position: relative;
    padding-inline: 54px;
}

.company-slider-viewport {
    overflow-x: auto;
    padding: 8px 0 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    touch-action: pan-y;
}

.company-slider-viewport::-webkit-scrollbar { display: none; }
.company-slider-viewport:focus-visible { outline: 2px solid var(--color-clay); outline-offset: 5px; border-radius: 10px; }
.company-slider-track { display: flex; }
.company-slider .company-card { flex: 0 0 calc((100% - 48px) / 4.18); margin-right: 16px; scroll-snap-align: start; }

.company-card {
    display: grid;
    height: 170px;
    min-width: 0;
    overflow: hidden;
    grid-template-rows: 106px 64px;
    border: 1px solid rgba(155, 107, 67, 0.18);
    border-radius: 16px;
    background: #fff;
    color: var(--color-charcoal);
    box-shadow: 0 12px 32px rgba(33, 29, 25, 0.08);
    text-decoration: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.company-slider-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--color-clay);
    border-radius: 50%;
    background: #fff;
    color: var(--color-clay);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.company-slider-arrow:hover { background: var(--color-clay); color: #fff; }
.company-slider-arrow:disabled { opacity: .28; cursor: default; }
.company-slider-arrow:disabled:hover { background: #fff; color: var(--color-clay); }
.company-slider-prev { left: 0; }
.company-slider-next { right: 0; }
.company-slider-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.company-slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: -10px; }
.company-slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(155, 107, 67,.25); transition: width .2s ease; }
.company-slider-dot.is-active { width: 18px; border-radius: 9px; background: var(--color-clay); }
.company-logo-slot { display: grid; width: auto; height: 100%; min-width: 0; flex: 1 1 0; place-items: center; }
.company-logo-fallback { color: var(--color-charcoal); font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 800; text-align: center; }
.company-card-featured .company-logo-fallback { font-size: clamp(0.8rem, 1vw, 1rem); }

.company-card:hover,
.company-card:focus-visible {
    border-color: rgba(155, 107, 67, 0.45);
    color: var(--color-charcoal);
    box-shadow: 0 22px 44px rgba(33, 29, 25, 0.14);
    transform: translateY(-6px);
}

.company-card-featured {
    border-color: rgba(155, 107, 67, 0.3);
    box-shadow: 0 16px 38px rgba(33, 29, 25, 0.1);
}

.company-card-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(155, 107, 67, 0.12);
    background: linear-gradient(145deg, #fff 0%, #faf8f5 100%);
}

.company-logo-wrap {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: 16px 22px;
}

.company-logo {
    width: min(180px, 88%);
    height: 74px;
    object-fit: contain;
}

.company-logos {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.company-logos .company-logo-slot + .company-logo-slot {
    border-left: 1px solid var(--color-line);
    padding-left: 12px;
}

.company-wordmark {
    color: var(--color-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.company-wordmark-alberdi {
    color: #253c63;
}

.company-wordmark-alberdi::before {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    background: #b94b3e;
    content: "";
    transform: rotate(45deg) translateY(-1px);
}

.company-wordmark-allpa {
    color: #6e583c;
    letter-spacing: 0.09em;
}

.company-logo-placeholder {
    color: var(--color-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    text-align: center;
}

.company-card-content {
    display: flex;
    min-width: 0;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
}

.company-card-content h3 {
    margin: 0;
    font-size: clamp(0.92rem, 1.08vw, 1.08rem);
    line-height: 1.12;
    overflow-wrap: normal;
}

.company-card-content .btn {
    min-height: 32px;
    flex: 0 0 auto;
    padding: 8px 10px;
    margin-top: 0;
    font-size: 0.7rem;
    white-space: nowrap;
}

.catalog-empty-state {
    display: grid;
    max-width: 720px;
    min-height: 330px;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 44px;
    margin-inline: auto;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.catalog-empty-state > i { color: var(--color-clay); font-size: 2.2rem; }
.catalog-empty-state h3,
.catalog-empty-state p { margin: 0; }
.catalog-empty-state p { color: var(--color-muted); }

@media (max-width: 640px) {
    .catalog-page { overflow-x: hidden; }
    .catalog-page .site-header .header-inner {
        width: 100%;
        margin-inline: 0;
    }

    .catalog-page-hero { min-height: 500px; padding: 126px 0 62px; }
    .catalog-page-hero.floor-companies-hero { min-height: 260px; padding: 92px 0 28px; }
    .floor-companies-hero h1 { margin-bottom: 7px; font-size: clamp(2.35rem, 12vw, 3.2rem); }
    .floor-companies-section { padding-top: 14px; padding-bottom: 28px; }
    .floor-companies-section > .container { width: calc(100% - 32px); }
    .floor-companies-section .catalog-products-heading { margin-bottom: 10px; }
    .company-section-intro { font-size: 0.88rem; line-height: 1.4; }
    .catalog-page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); overflow-wrap: break-word; }
    .catalog-company-hero-logo { width: min(145px, 36vw); height: 76px; }
    .catalog-page-hero-content > p:last-child { font-size: 0.98rem; overflow-wrap: anywhere; }
    .catalog-products-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
    .catalog-product-grid { grid-template-columns: minmax(0, 1fr); }
    .catalog-product-card:not(.floor-product-card) > img { height: 230px; }
    .floor-product-card .catalog-product-photo { aspect-ratio: 1 / 1; }
    .floor-product-card .catalog-product-body { min-height: 210px; }
    .catalog-empty-state { min-height: 300px; padding: 30px 22px; }
    .company-slider { margin-inline: -8px; padding-inline: 34px; }
    .company-slider-viewport { padding-inline: 0; }
    .company-slider .company-card { width: calc(100vw - 82px); max-width: 310px; height: 170px; flex-basis: min(310px, calc(100vw - 82px)); margin-right: 14px; }
    .company-slider-arrow { top: 89px; width: 40px; height: 40px; }
    .company-slider-prev { left: 0; }
    .company-slider-next { right: 12px; }
    .company-slider-dots { min-height: 22px; align-items: center; margin-top: -10px; padding-inline: 42px; }
    .company-logo-wrap { min-height: 0; padding: 14px 20px; }
    .company-logo { height: 72px; }
    .company-card-content { height: 64px; padding: 10px 12px; }
    .company-card-content h3 { font-size: 0.94rem; }
    .company-card-content .btn { min-height: 30px; padding: 7px 9px; font-size: 0.67rem; }
}

@media (min-width: 641px) and (max-width: 900px) {
    .floor-companies-section > .container { width: calc(100% - 32px); }
    .company-slider { padding-inline: 48px; }
    .company-slider .company-card { flex-basis: calc((100% - 30px) / 3.08); margin-right: 15px; }
}

/* Los accesos de categorías deben permanecer por encima de galerías y overlays. */
.hero-slider .category-catalog-link {
    position: relative;
    z-index: 30;
    pointer-events: auto;
}
