/* ==========================================================================
   Singapore Homes - UI Revamp
   Light pink "Soft Structuralism" design language
   ========================================================================== */

:root {
    /* Palette: light pink primary, rose-tinted neutrals */
    --bg:            #FDF7FA;
    --surface:       #FFFFFF;
    --ink:           #2A141F;
    --ink-soft:      #57394A;
    --muted:         #82606F;
    --accent:        #C2185B; /* >= 4.5:1 against white for button text */
    --accent-deep:   #A31049;
    --accent-ink:    #731238;
    --tint:          #FBE8F1;
    --tint-strong:   #F5CFE1;
    --hairline:      rgba(148, 32, 82, 0.12);

    /* Shape system: soft radii, pill buttons */
    --r-card:  1.5rem;
    --r-inner: 1.125rem;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Soft diffused shadows, tinted to the pink background hue */
    --shadow-soft: 0 24px 60px -24px rgba(140, 30, 80, 0.20);
    --shadow-lift: 0 32px 80px -28px rgba(140, 30, 80, 0.28);

    --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a { color: var(--accent-deep); text-decoration: none; }

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 50;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transform: translateY(-200%);
    transition: transform 0.3s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

h1, h2, h3 {
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--ink);
    text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 4.8vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }

p { margin: 0 0 1rem; }

.container {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 0; }

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: var(--tint);
    color: var(--accent-ink);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Buttons: pill shape, nested "orb" trailing icon
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
                background-color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding-right: 0.55rem;
    box-shadow: 0 14px 34px -14px rgba(194, 24, 91, 0.6);
}

.btn-primary:hover {
    background: var(--accent-deep);
    box-shadow: 0 20px 44px -16px rgba(194, 24, 91, 0.7);
    transform: translateY(-2px);
}

.btn-orb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}

.btn-orb svg { width: 0.95rem; height: 0.95rem; }

.btn-primary:hover .btn-orb {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(2px, -2px) scale(1.05);
}

.btn-ghost {
    background: var(--surface);
    color: var(--accent-ink);
    border: 1px solid var(--tint-strong);
    box-shadow: 0 10px 26px -18px rgba(140, 30, 80, 0.35);
}

.btn-ghost:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -18px rgba(140, 30, 80, 0.4);
}

.btn-lg { padding: 1rem 1.9rem; padding-right: 0.7rem; font-size: 1.05rem; }
.btn-lg .btn-orb { width: 2.4rem; height: 2.4rem; }

/* --------------------------------------------------------------------------
   Double-bezel media frames
   -------------------------------------------------------------------------- */

.bezel {
    padding: 0.5rem;
    border-radius: calc(var(--r-inner) + 0.5rem);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-soft), inset 0 1px 1px rgba(255, 255, 255, 0.85);
    backdrop-filter: none;
}

.bezel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-inner);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

#top-sentinel { position: absolute; top: 0; height: 1px; width: 100%; }

.site-nav {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 40;
    transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
                border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--hairline);
    box-shadow: 0 12px 32px -24px rgba(140, 30, 80, 0.35);
}

.nav-inner {
    max-width: 1320px;
    margin-inline: auto;
    padding: 0.7rem clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 68px;
}

.nav-brand img { height: 44px; width: auto; }

.nav-links {
    display: flex;
    gap: 1.75rem;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease);
}

.nav-links a:hover { color: var(--accent-deep); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--tint-strong);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

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

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 36; /* above the WhatsApp FAB (35), below the nav bar (40) */
    padding: 7.5rem clamp(1.5rem, 6vw, 3rem) 3rem;
    background: rgba(253, 247, 250, 0.92);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    backdrop-filter: blur(28px) saturate(160%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }

.mm-link {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding-block: 0.35rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), color 0.3s var(--ease);
}

.mm-link:hover { color: var(--accent); }

.mobile-menu.open .mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mm-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mm-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open .mm-link:nth-child(7) { transition-delay: 0.35s; }

.mm-footer { display: flex; flex-direction: column; gap: 0.3rem; }
.mm-footer a { font-weight: 600; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    padding-top: clamp(6.5rem, 12vh, 9rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

/* Soft radial ambience behind the hero, pink only, very low chroma */
.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto;
    height: 90%;
    background:
        radial-gradient(42% 55% at 78% 30%, rgba(194, 24, 91, 0.12), transparent 70%),
        radial-gradient(38% 48% at 12% 12%, rgba(245, 207, 225, 0.8), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.hero-copy h1 { margin-bottom: 1.25rem; }

.hero-sub {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 2.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.hero-visual { position: relative; }

.bezel-hero { aspect-ratio: 4 / 4.6; max-height: 620px; }

/* Studio portraits: keep the face in frame when cover-cropping */
.bezel-hero img,
.bezel-portrait img { object-position: center top; }

.hero-card {
    position: absolute;
    left: -1.75rem;
    bottom: 2.25rem;
    padding: 1.1rem 1.5rem;
    border-radius: var(--r-inner);
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lift);
}

.hero-card-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 1.05rem;
}

.hero-card-sub {
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   Awards strip
   -------------------------------------------------------------------------- */

.awards { padding-block: clamp(2rem, 4vw, 3.5rem); }

.awards-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.award-item {
    background: var(--surface);
    padding: 1.75rem 2rem;
}

.award-name {
    margin: 0 0 0.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--accent-ink);
}

.award-note {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.bezel-portrait { aspect-ratio: 4 / 4.7; max-width: 460px; }

.about-copy h2 { margin-bottom: 0.75rem; }
.about-copy p { color: var(--ink-soft); max-width: 34rem; }

.about-copy .about-role {
    margin-bottom: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--accent-ink);
}

.about-quote {
    margin: 2rem 0;
    padding: 1.4rem 1.75rem;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--r-inner) var(--r-inner) 0;
    background: var(--tint);
}

.about-quote p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    color: var(--accent-ink);
    padding-bottom: 0.15rem;
}

/* --------------------------------------------------------------------------
   Services bento
   -------------------------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.svc-a { grid-column: span 7; min-height: 420px; }
.svc-b { grid-column: span 5; min-height: 420px; }
.svc-c { grid-column: span 5; min-height: 360px; }
.svc-d { grid-column: span 7; }
.svc-e { grid-column: span 6; }
.svc-f { grid-column: span 6; }

.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--r-card);
    overflow: hidden;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

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

.svc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.svc-img:hover img { transform: scale(1.045); }

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(48, 12, 28, 0.86) 0%, rgba(48, 12, 28, 0.32) 45%, rgba(48, 12, 28, 0) 70%);
}

.svc-body {
    position: relative;
    padding: 1.9rem 2rem;
}

.svc-img h3 { color: #fff; margin-bottom: 0.4rem; font-size: 1.4rem; }

.svc-img .svc-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    max-width: 30rem;
}

.svc-text {
    background: var(--surface);
    border: 1px solid var(--hairline);
    justify-content: flex-start;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.svc-text h3 { color: var(--accent-ink); margin-bottom: 0.5rem; }

.svc-text p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Gallery marquee
   -------------------------------------------------------------------------- */

.gallery {
    padding-block: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.marquee { --marquee-duration: 55s; }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration) linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* Fixed tile size (no gap on the track) so translateX(-50%) lands exactly
   on the start of the duplicated half and images cannot shift layout */
.marquee-track img {
    height: clamp(200px, 26vw, 300px);
    width: clamp(280px, 34vw, 400px);
    object-fit: cover;
    margin-right: 1.25rem;
    border-radius: var(--r-inner);
    box-shadow: var(--shadow-soft);
}

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

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials { background: linear-gradient(to bottom, var(--bg), var(--tint) 130%); }

.testi-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 1.25rem;
    align-items: stretch;
}

.testi-featured {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: var(--r-card);
    background: var(--accent-ink);
    color: #fff;
    box-shadow: var(--shadow-lift);
}

.testi-featured blockquote { margin: 0 0 1.75rem; }

.testi-featured blockquote p {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.45;
    color: #fff;
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars span {
    width: 1.05rem;
    height: 1.05rem;
    background: #FFC94D;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-featured figcaption,
.testi-card figcaption {
    font-weight: 700;
    font-size: 0.95rem;
}

.testi-featured figcaption span,
.testi-card figcaption span {
    display: block;
    font-weight: 500;
    font-size: 0.82rem;
    opacity: 0.7;
}

.testi-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testi-card {
    margin: 0;
    flex: 1;
    padding: 1.6rem 1.9rem;
    border-radius: var(--r-card);
    background: var(--surface);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-soft);
}

.testi-card blockquote { margin: 0 0 1rem; }

.testi-card blockquote p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.testi-card figcaption { color: var(--accent-ink); }

.testi-more { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta { padding-top: 0; }

.cta-panel {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: calc(var(--r-card) + 0.5rem);
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(194, 24, 91, 0.14), transparent 70%),
        linear-gradient(160deg, #FBEAF2, #F6D9E7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.cta-panel h2 { margin-bottom: 0.75rem; }

.cta-panel > p {
    color: var(--ink-soft);
    max-width: 32rem;
    margin: 0 auto 2.25rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.cta-phone {
    font-weight: 600;
    color: var(--accent-ink);
    border-bottom: 1px solid var(--tint-strong);
    transition: border-color 0.3s var(--ease);
}

.cta-phone:hover { border-color: var(--accent); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
    background: #26101B;
    color: rgba(255, 255, 255, 0.78);
    padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 0.75rem;
}

.footer-tag { font-size: 0.9rem; line-height: 1.6; margin: 0; }

.footer-head {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.1rem;
}

.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-addr { font-size: 0.88rem; line-height: 1.6; margin: 0.35rem 0 0; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   WhatsApp floating button
   -------------------------------------------------------------------------- */

.whatsapp-fab {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.6);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.whatsapp-fab svg { width: 1.7rem; height: 1.7rem; }

.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 24px 50px -14px rgba(37, 211, 102, 0.7);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

/* Hiding is gated behind the .js root class so content stays visible
   when scripts never execute */
.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee-track { animation: none; flex-wrap: wrap; width: auto; }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
}

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .hero { padding-top: 6.5rem; }

    .bezel-hero { aspect-ratio: 4 / 4.4; max-height: none; }

    .hero-card { left: 1rem; right: 1rem; bottom: 1rem; }

    .awards-band { grid-template-columns: 1fr; }

    .bezel-portrait { max-width: 100%; aspect-ratio: 4 / 3.4; }

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

    .svc-a, .svc-b, .svc-c, .svc-d, .svc-e, .svc-f {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .svc-img { min-height: 320px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .hero-actions .btn { width: 100%; justify-content: space-between; }

    .btn-ghost { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; }
}
