:root {
    --bg: #f6f2ea;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --surface-dark: #14364d;
    --text: #1d2430;
    --muted: #5d6775;
    --line: rgba(20, 54, 77, 0.12);
    --primary: #0d5a8b;
    --accent: #11a7a0;
    --accent-soft: #daf7f3;
    --shadow: 0 22px 60px rgba(17, 31, 45, 0.14);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --content-width: min(1180px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(17, 167, 160, 0.14), transparent 26%),
        radial-gradient(circle at top right, rgba(13, 90, 139, 0.18), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg) 34%, #f3efe7 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.75;
}

.page-shell::before {
    width: 28rem;
    height: 28rem;
    right: -10rem;
    top: 6rem;
    background: radial-gradient(circle, rgba(17, 167, 160, 0.18), transparent 68%);
}

.page-shell::after {
    width: 24rem;
    height: 24rem;
    left: -8rem;
    bottom: 10rem;
    background: radial-gradient(circle, rgba(13, 90, 139, 0.14), transparent 70%);
}

.topbar {
    width: var(--content-width);
    margin: 18px auto 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: sticky;
    top: 12px;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(23, 31, 38, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    width: 62px;
    height: 62px;
    padding: 6px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13, 90, 139, 0.18), rgba(17, 167, 160, 0.18));
    object-fit: contain;
}

.brand-text {
    min-width: 0;
}

.brand-name {
    display: block;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
}

.brand-tag {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.94rem;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
    background: rgba(13, 90, 139, 0.1);
    color: var(--text);
    transform: translateY(-1px);
}

.hero,
.page-hero {
    width: var(--content-width);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.hero-banner {
    width: var(--content-width);
    margin: 24px auto 0;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius-xl) - 12px);
    background: #f6f2ea;
}

.hero-copy,
.hero-visual,
.page-hero-copy,
.page-hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-copy {
    background:
        linear-gradient(145deg, rgba(16, 41, 58, 0.97), rgba(19, 67, 95, 0.9));
    color: #f8fbff;
    padding: clamp(28px, 4vw, 48px);
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(248, 251, 255, 0.72);
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.section-intro p,
.card p,
.info-card p,
.contact-card p,
.showroom-copy p,
.story p,
.timeline-item p,
.brand-grid p,
.text-block p {
    color: inherit;
    line-height: 1.75;
    font-size: 1rem;
}

.lede {
    margin: 22px 0 0;
    max-width: 40rem;
    color: rgba(248, 251, 255, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
    background: linear-gradient(135deg, #14b4ab, #0d7d99);
    color: #f7ffff;
    box-shadow: 0 12px 26px rgba(17, 167, 160, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.nav a:focus-visible,
.contact-link:focus-visible {
    transform: translateY(-2px);
}

.hero-meta {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
}

.metric span {
    display: block;
    margin-top: 6px;
    color: rgba(248, 251, 255, 0.72);
    font-size: 0.9rem;
}

.hero-visual,
.page-hero-visual {
    min-height: 560px;
    background: #eae4d9;
}

.hero-visual img,
.page-hero-visual img,
.image-panel img,
.showroom-photo img,
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after,
.page-hero-visual::after,
.showroom-photo::after,
.image-panel::after,
.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 24, 0.02), rgba(10, 17, 24, 0.4));
}

.floating-note,
.floating-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(22, 34, 43, 0.16);
}

.floating-note strong,
.floating-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--surface-dark);
    font-size: 1rem;
}

.floating-note span,
.floating-card span {
    display: block;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.94rem;
}

.section,
.split-section,
.contact-grid,
.brands-section,
.showroom-section,
.story-section,
.timeline-section {
    width: var(--content-width);
    margin: 30px auto 0;
}

.section,
.brands-section,
.showroom-section,
.story-section,
.timeline-section {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 40px);
    backdrop-filter: blur(18px);
}

.section-head,
.section-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-head h2,
.section-intro h2,
.story-copy h2,
.showroom-copy h2,
.contact-card h2,
.contact-panel h2,
.timeline-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 0.98;
    color: var(--surface-dark);
}

.section-kicker,
.capsule,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #0b6f73;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.info-card,
.contact-card,
.timeline-item,
.brand-card,
.text-block {
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(23, 31, 38, 0.06);
}

.card,
.info-card,
.timeline-item,
.brand-card,
.text-block {
    padding: 22px;
}

.card h3,
.info-card h3,
.brand-card h3,
.text-block h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--surface-dark);
}

.card p,
.info-card p,
.brand-card p,
.text-block p {
    margin: 12px 0 0;
    color: var(--muted);
}

.card-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.image-panel,
.showroom-photo,
.story-image {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-panel {
    min-height: 480px;
}

.info-grid,
.brand-grid,
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.brand-visual-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.brand-shot {
    margin: 0;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(23, 31, 38, 0.06);
}

.brand-shot img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: #f4f4f4;
}

.brand-shot figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.lighting-feature-panel img {
    object-fit: contain;
    background: #efefef;
}

.quote-banner {
    width: var(--content-width);
    margin: 30px auto 0;
    padding: 24px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 90, 139, 0.94), rgba(17, 167, 160, 0.88));
    color: #f8fbff;
    box-shadow: var(--shadow);
}

.quote-banner p {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.1;
}

.page-grid {
    width: var(--content-width);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 24px;
}

.contact-card,
.contact-panel {
    padding: clamp(24px, 4vw, 34px);
}

.contact-panel {
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(20, 54, 77, 0.98), rgba(17, 86, 112, 0.95));
    color: #f8fbff;
    box-shadow: var(--shadow);
}

.contact-panel h2 {
    color: #ffffff;
}

.contact-panel .mini-label {
    background: rgba(255, 255, 255, 0.16);
    color: #f4fbff;
}

.contact-panel p,
.contact-panel li,
.contact-panel a {
    color: rgba(248, 251, 255, 0.82);
}

.contact-stack {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.contact-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 251, 255, 0.66);
}

.contact-item a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
}

.contact-map {
    margin-top: 20px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 244, 246, 0.92));
    border: 1px solid rgba(13, 90, 139, 0.1);
}

.contact-map p {
    margin: 12px 0 0;
    color: var(--muted);
}

.social-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 700;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.36);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.timeline-item span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.showroom-layout,
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.footer {
    width: var(--content-width);
    margin: 30px auto 32px;
    padding: 26px 28px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    border-radius: 30px;
    background: #0f2230;
    color: rgba(248, 251, 255, 0.78);
    box-shadow: var(--shadow);
}

.footer strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.footer p,
.footer a {
    margin: 0;
    color: rgba(248, 251, 255, 0.72);
    line-height: 1.75;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: flex-start;
    align-content: flex-start;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.reveal {
    animation: fade-up 720ms ease both;
}

.delay-1 {
    animation-delay: 90ms;
}

.delay-2 {
    animation-delay: 180ms;
}

.delay-3 {
    animation-delay: 270ms;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero,
    .page-hero,
    .split-section,
    .page-grid,
    .showroom-layout,
    .story-layout,
    .footer {
        grid-template-columns: 1fr;
    }

    .cards,
    .timeline,
    .info-grid,
    .brand-grid,
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual,
    .page-hero-visual,
    .image-panel {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .topbar {
        width: min(100vw - 20px, 100%);
        margin-top: 10px;
        padding: 14px;
        border-radius: 28px;
        position: static;
    }

    .brand {
        width: 100%;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero,
    .page-hero,
    .hero-banner,
    .section,
    .split-section,
    .quote-banner,
    .page-grid,
    .brands-section,
    .showroom-section,
    .story-section,
    .timeline-section,
    .footer,
    .contact-grid {
        width: min(100vw - 20px, 100%);
    }

    .hero-copy,
    .page-hero-copy,
    .section,
    .brands-section,
    .showroom-section,
    .story-section,
    .timeline-section,
    .contact-card,
    .contact-panel,
    .footer {
        padding: 22px;
    }

    .cards,
    .timeline,
    .info-grid,
    .brand-grid,
    .brand-visual-grid,
    .contact-info,
    .hero-meta {
        grid-template-columns: 1fr;
    }

    .brand-shot img {
        height: 190px;
    }

    .section-head,
    .section-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.4rem, 14vw, 4rem);
    }

    .brand-tag {
        white-space: normal;
    }

    .hero-visual,
    .page-hero-visual,
    .image-panel,
    .showroom-photo,
    .story-image {
        min-height: 340px;
    }
}