:root {
    --bg: #081216;
    --bg-deep: #040a0d;
    --surface: rgba(12, 23, 29, 0.84);
    --surface-strong: rgba(14, 29, 37, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4efe6;
    --muted: #b8c6ca;
    --gold: #e0b74f;
    --gold-soft: #f7db88;
    --violet: #962ec4;
    --violet-soft: #d793f3;
    --mint: #82d5c8;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 12% 18%, rgba(150, 46, 196, 0.16), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(224, 183, 79, 0.14), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(130, 213, 200, 0.1), transparent 28%),
        linear-gradient(180deg, #071015 0%, #09161b 40%, #040a0d 100%);
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 13, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 18;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-chrome {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 110px 110px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

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

.hero-grid > *,
.intro-grid > *,
.story-grid > *,
.product-feature > *,
.about-grid > *,
.process-grid > *,
.product-grid > *,
.reassurance-grid > *,
.contact-grid > *,
.page-hero-grid > *,
.footer-grid > * {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: clamp(3.3rem, 8vw, 6.9rem);
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.08rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 21;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(4, 10, 13, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: clamp(138px, 15vw, 196px);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-nav a {
    position: relative;
    color: #e7ebec;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--gold-soft);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(224, 183, 79, 0.4);
    background: linear-gradient(135deg, rgba(224, 183, 79, 0.18), rgba(150, 46, 196, 0.24));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

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

.nav-toggle span + span {
    margin-top: 6px;
}

body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.section,
.page-hero,
.hero {
    position: relative;
}

.hero {
    padding: 104px 0 64px;
    min-height: calc(100vh - 82px);
    overflow: clip;
}

.hero-home {
    padding: 76px 0 40px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 10% auto auto -10%;
    width: min(40vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(150, 46, 196, 0.32), transparent 68%);
    filter: blur(30px);
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: 0;
    width: min(42vw, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 183, 79, 0.22), transparent 68%);
    filter: blur(34px);
}

.hero-scene,
.parallax-banner-image {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.hero-scene-left {
    background:
        linear-gradient(90deg, rgba(4, 10, 13, 0.92) 8%, rgba(4, 10, 13, 0.62) 52%, rgba(4, 10, 13, 0.92) 100%),
        url("images/window-cleaning-team.webp") center/cover no-repeat;
    transform-origin: center;
}

.hero-scene-right {
    inset: 9% 5% 12% auto;
    width: clamp(220px, 26vw, 360px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 10, 13, 0.08), rgba(4, 10, 13, 0.7)),
        url("images/product-lineup.webp") center/cover no-repeat;
    box-shadow: var(--shadow);
    opacity: 0.22;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.hero-home .hero-grid {
    gap: 32px;
}

html.js-enabled .hero-copy,
html.js-enabled .hero-visual,
html.js-enabled .page-hero-copy,
html.js-enabled .page-hero-media,
html.js-enabled .section-heading,
html.js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: transform 0.38s ease, opacity 0.38s ease;
}

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

.hero-lead {
    max-width: 640px;
    margin-top: 24px;
    color: #e0e8ea;
    font-size: clamp(1.05rem, 1.9vw, 1.22rem);
}

.hero-home h1 {
    font-size: clamp(2.9rem, 6.2vw, 5.3rem);
}

.hero-home .hero-lead {
    max-width: 600px;
    margin-top: 18px;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

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

.hero-home .hero-actions {
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
    color: #0b1013;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 16px 38px rgba(224, 183, 79, 0.22);
}

.button-secondary {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.button-full {
    width: 100%;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.hero-home .hero-points {
    gap: 12px;
    margin-top: 28px;
}

.point-card,
.belief-card,
.service-panel,
.service-detail,
.timeline-step,
.contact-note,
.contact-summary,
.value-card {
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.point-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1rem;
}

.point-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-visual {
    position: relative;
    min-height: 680px;
}

.hero-home .hero-visual {
    min-height: 590px;
}

.hero-home .point-card {
    padding: 18px 20px;
}

.floating-panel,
.glass-note,
.media-card {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    background: var(--surface);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.floating-panel img,
.media-card img,
.page-hero-media img,
.contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-panel {
    inset: 0 14% 42% 0;
    z-index: 1;
}

.product-panel {
    inset: 52% 0 0 16%;
    z-index: 2;
}

.panel-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(4, 10, 13, 0.88));
}

.panel-label {
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.panel-copy h2 {
    font-size: clamp(1.7rem, 2.3vw, 2.2rem);
}

.glass-note {
    right: 2%;
    top: 2%;
    width: min(206px, 38vw);
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(150, 46, 196, 0.26), rgba(224, 183, 79, 0.18));
    z-index: 3;
}

.glass-note span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.glass-note p {
    color: var(--text);
}

.section,
.page-hero {
    padding: 104px 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.intro-band {
    padding-top: 84px;
    padding-bottom: 84px;
}

.intro-grid,
.story-grid,
.product-feature,
.about-grid,
.process-grid,
.product-grid,
.reassurance-grid,
.contact-grid,
.page-hero-grid,
.footer-grid {
    display: grid;
    gap: 34px;
}

.intro-grid,
.story-grid,
.product-feature,
.about-grid,
.product-grid,
.reassurance-grid,
.page-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.intro-copy,
.story-copy,
.about-copy,
.process-copy,
.product-copy,
.reassurance-copy,
.page-hero-copy {
    display: grid;
    gap: 18px;
}

.story-stack,
.product-gallery,
.results-mosaic {
    position: relative;
}

.story-grid-highlight {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
}

.story-grid-highlight .story-copy {
    order: -1;
    max-width: 760px;
}

.story-grid-highlight .story-stack {
    margin-top: 0;
}

.story-grid-highlight .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
}

.story-grid-highlight .grid-4 .media-card {
    aspect-ratio: 16 / 11;
}

.story-grid-highlight .grid-4 figure:nth-child(1) {
    grid-row: auto;
}

.product-gallery {
    display: grid;
    gap: 18px;
}

.story-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.68fr;
    gap: 18px;
    align-items: end;
}

.media-card,
.page-hero-media {
    position: relative;
    min-height: 280px;
    background: var(--surface);
}

.media-card.tall {
    min-height: 560px;
}

.media-card.small {
    min-height: 280px;
}

.shift-up {
    transform: translateY(-28px);
}

.value-grid,
.belief-grid,
.service-preview-grid,
.services-grid {
    display: grid;
    gap: 18px;
}

.value-grid,
.belief-grid,
.service-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 36px;
}

.section-heading {
    max-width: 760px;
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.service-panel,
.service-detail {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.service-panel::before,
.service-detail::before,
.belief-card::before,
.timeline-step::before,
.contact-summary::before,
.contact-note::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(150, 46, 196, 0.16), transparent 70%);
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    border: 1px solid rgba(224, 183, 79, 0.38);
    color: var(--gold-soft);
    font-size: 0.8rem;
    font-weight: 800;
}

.service-panel h3,
.service-detail h3,
.belief-card h3,
.timeline-step h3,
.value-card h3 {
    margin-bottom: 12px;
}

.parallax-banner {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
}

.parallax-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 13, 0.4), rgba(4, 10, 13, 0.76));
    z-index: 1;
}

.parallax-banner-image {
    background:
        linear-gradient(180deg, rgba(4, 10, 13, 0.06), rgba(4, 10, 13, 0.36)),
        url("images/mattress-cleaning-result.webp") center/cover no-repeat;
    transform-origin: center;
}

.about-banner .parallax-banner-image {
    background:
        linear-gradient(180deg, rgba(4, 10, 13, 0.08), rgba(4, 10, 13, 0.38)),
        url("images/floor-tile-cleaning.webp") center/cover no-repeat;
}

.banner-copy {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 32px), 860px);
    display: grid;
    gap: 16px;
}

.results-grid {
    display: grid;
    gap: 10px;
}

.results-mosaic {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 18px;
}

.result-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.result-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.result-card.large img {
    min-height: 480px;
}

.result-card figcaption {
    padding: 18px 20px 22px;
    color: var(--muted);
}

.product-feature {
    align-items: center;
}

.product-showcase .media-card {
    min-height: 540px;
}

.cta-section {
    padding-top: 88px;
}

.cta-card {
    padding: 46px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at top right, rgba(150, 46, 196, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(224, 183, 79, 0.18), transparent 26%),
        rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    text-align: center;
}

.page-hero {
    padding: 40px 0;
}

.page-hero-copy h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-hero-copy p {
    font-size: 0.95rem;
}

.page-hero-media img {
    max-height: 280px;
}

.about-values {
    margin-top: 2.5rem;
}

.about-why {
    margin-top: 3.75rem;
}
.timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.timeline-step span,
.mini-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(224, 183, 79, 0.14);
    color: var(--gold-soft);
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-hero-grid,
.contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
}

.contact-summary {
    display: grid;
    gap: 18px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.contact-list strong {
    color: var(--text);
}

.contact-form-panel {
    padding: 34px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}

.whatsapp-form {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.whatsapp-form label {
    display: grid;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(4, 10, 13, 0.66);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.whatsapp-form textarea {
    min-height: 140px;
    resize: vertical;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: rgba(224, 183, 79, 0.46);
    box-shadow: 0 0 0 4px rgba(224, 183, 79, 0.11);
    transform: translateY(-1px);
}

.contact-side {
    display: grid;
    gap: 20px;
}

.contact-media {
    min-height: 390px;
}

.mini-steps {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.mini-steps article {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
    padding: 20px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(4, 10, 13, 0.78);
}

.footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px 32px;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-logo {
    width: clamp(126px, 13vw, 172px);
    margin-bottom: 8px;
}

.footer-copy {
    max-width: 480px;
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: flex-end;
}

.footer-links a {
    color: #dde3e4;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-soft);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 183, 79, 0.4);
    background: rgba(224, 183, 79, 0.08);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-meta {
    width: min(calc(100% - 32px), var(--shell));
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

.footer-meta a {
    color: var(--gold-soft);
}

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

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, #32d975, #139c70);
    color: #fff;
    box-shadow: 0 18px 34px rgba(19, 156, 112, 0.28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 42px rgba(19, 156, 112, 0.36);
    background: linear-gradient(135deg, #38e27d, #10956c);
    outline: none;
}

.whatsapp-float:focus-visible {
    box-shadow:
        0 0 0 4px rgba(50, 217, 117, 0.2),
        0 20px 42px rgba(19, 156, 112, 0.36);
}

@media (max-width: 1100px) {
    .hero-grid,
    .intro-grid,
    .story-grid,
    .product-feature,
    .about-grid,
    .process-grid,
    .product-grid,
    .reassurance-grid,
    .page-hero-grid,
    .contact-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 86px;
    }

    .hero-visual {
        min-height: 740px;
    }

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

    .results-mosaic {
        grid-template-columns: 1fr;
    }

    .product-showcase .media-card,
    .page-hero-media {
        min-height: 520px;
    }

    .story-grid-highlight .story-stack {
        margin-top: 0;
    }

    .story-grid-highlight .story-copy {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: inline-grid;
        place-content: center;
        flex-shrink: 0;
    }

    .site-nav {
        position: fixed;
        inset: 68px 16px auto;
        display: grid;
        gap: 12px;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 18px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(4, 10, 13, 0.95);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 20;
    }

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

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        white-space: normal;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
        background: rgba(224, 183, 79, 0.08);
    }

    .site-nav .nav-cta {
        justify-content: center;
        margin-top: 4px;
        padding: 12px 18px;
        text-align: center;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-scene-right {
        display: none;
    }

    .hero-points,
    .value-grid,
    .belief-grid,
    .service-preview-grid,
    .timeline,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .story-stack {
        grid-template-columns: 1fr;
    }

    .shift-up {
        transform: none;
    }

    .hero-visual {
        min-height: 620px;
    }

    .founder-panel {
        inset: 0 10% 44% 0;
    }

    .product-panel {
        inset: 54% 0 0 14%;
    }

    .page-hero,
    .section {
        padding: 84px 0;
    }

    .parallax-banner {
        min-height: 58vh;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-connect {
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

    .hero-points,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .floating-panel {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 4.4;
    }

    .glass-note {
        position: relative;
        right: auto;
        top: auto;
        width: auto;
    }

    .cta-card,
    .contact-form-panel {
        padding: 30px 22px;
    }

    .page-hero-media {
        min-height: 420px;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-home .hero-visual {
        min-height: auto;
    }

    .footer-connect,
    .footer-links {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .section,
    .page-hero {
        padding: 72px 0;
    }

    .hero {
        padding: 58px 0 34px;
    }

    .intro-band {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .hero-grid,
    .intro-grid,
    .story-grid,
    .product-feature,
    .about-grid,
    .process-grid,
    .product-grid,
    .reassurance-grid,
    .contact-grid,
    .page-hero-grid,
    .footer-grid {
        gap: 24px;
    }

    .point-card,
    .belief-card,
    .service-panel,
    .service-detail,
    .timeline-step,
    .contact-note,
    .contact-summary,
    .value-card {
        padding: 20px 16px;
    }

    .service-panel,
    .service-detail {
        min-height: auto;
    }

    .panel-copy {
        padding: 16px;
    }

    .panel-copy h2 {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
    }

    .page-hero-media,
    .product-showcase .media-card {
        min-height: 360px;
    }

    .contact-media {
        min-height: 300px;
    }

    .result-card img {
        min-height: 240px;
    }

    .result-card.large img {
        min-height: 320px;
    }

    .footer-links,
    .contact-list {
        gap: 10px;
    }

    .story-grid-highlight .grid-4 {
        grid-template-columns: 1fr;
    }

    .story-grid-highlight .grid-4 .media-card {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 520px) {
    .nav-shell {
        padding: 8px 0;
    }

    .brand-logo {
        width: 132px;
    }

    .hero {
        padding-top: 66px;
    }

    h1 {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions {
        display: grid;
    }

    .site-nav {
        inset: 62px 12px auto;
        padding: 14px;
        gap: 10px;
    }

    .floating-panel,
    .glass-note {
        border-radius: 24px;
    }

    .glass-note {
        width: auto;
        padding: 14px 15px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        left: auto;
        width: 52px;
        height: 52px;
    }

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

@media (max-width: 480px) {
    .shell,
    .banner-copy,
    .footer-meta {
        width: min(calc(100% - 20px), var(--shell));
    }

    .section,
    .page-hero {
        padding: 56px 0;
    }

    .hero {
        padding: 52px 0 28px;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    p {
        font-size: 0.96rem;
    }

    .button {
        min-height: 50px;
        padding: 13px 18px;
    }

    .point-card,
    .belief-card,
    .service-panel,
    .service-detail,
    .timeline-step,
    .contact-note,
    .contact-summary,
    .value-card,
    .mini-steps article {
        padding: 18px 14px;
    }

    .panel-copy {
        padding: 14px;
    }

    .panel-copy h2 {
        font-size: 1.18rem;
    }

    .hero-actions,
    .hero-points,
    .value-grid,
    .belief-grid,
    .service-preview-grid,
    .timeline,
    .mini-steps {
        gap: 12px;
    }

    .contact-form-panel {
        padding: 24px 16px;
    }

    .whatsapp-form {
        gap: 14px;
        margin-top: 22px;
    }

    .whatsapp-form input,
    .whatsapp-form select,
    .whatsapp-form textarea {
        padding: 14px 15px;
    }

    .whatsapp-form textarea {
        min-height: 120px;
    }

    .page-hero-media,
    .product-showcase .media-card {
        min-height: 300px;
    }

    .contact-media {
        min-height: 250px;
    }

    .result-card img {
        min-height: 220px;
    }

    .result-card.large img {
        min-height: 280px;
    }

    .footer-copy,
    .footer-links a,
    .contact-list li {
        font-size: 0.92rem;
    }

    .footer-meta {
        font-size: 0.76rem;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: clamp(2.05rem, 12vw, 2.8rem);
    }

    .floating-panel {
        aspect-ratio: 1 / 1.12;
    }

    .glass-note {
        width: auto;
        padding: 12px 13px;
    }

    .glass-note span {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .glass-note p {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01s !important;
        transition-delay: 0s !important;
    }

    [data-reveal],
    .hero-copy,
    .hero-visual,
    .page-hero-copy,
    .page-hero-media,
    .section-heading {
        opacity: 1;
        transform: none;
    }

    .hero-scene,
    .parallax-banner-image,
    [data-speed] {
        transform: none !important;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

/* First image big */
.grid-4 figure:nth-child(1) {
    grid-row: span 2;
}

/* 🔥 FIXED MEDIA CARD */
.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3; /* ✅ KEY FIX */
    background: var(--surface);
    border: 1px solid var(--line);
}

/* 🔥 CONTROL IMAGE SIZE */
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crops nicely */
    transition: transform 0.4s ease;
}

/* Hover effect (optional but clean) */
.media-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .media-card {
        aspect-ratio: 16 / 10; /* better for mobile */
    }
}

.grid-4 .media-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    background: var(--surface);
    border: 1px solid var(--line);
}

.grid-4 .media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-4 .media-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .grid-4 figure:nth-child(1) {
        grid-row: auto;
    }

    .grid-4 .media-card {
        aspect-ratio: 16 / 10;
    }
}
