/* ==========================================================================
   Sanitair De Baere · Waregem — Coming soon
   ========================================================================== */

:root {
    --navy:        #0d1c2e;
    --navy-deep:   #0a172a;
    --navy-soft:   #142a44;
    --gold:        #b89968;
    --gold-soft:   #c9a878;
    --gold-dark:   #8a6f3b;
    --gold-pale:   #e6d3a8;
    --cream:       #efe6d4;
    --ink:         #1c2937;
    --ink-soft:    #4a5566;
    --ink-mute:    #7a8390;
    --line:        rgba(255, 255, 255, 0.08);
    --line-dark:   rgba(13, 28, 46, 0.08);

    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container: 1200px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ----------------------------------------------------------------- Eyebrow */
.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
}

.eyebrow--on-dark { color: var(--gold-soft); }

.eyebrow--pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(184, 153, 104, 0.45);
    border-radius: 999px;
    background: rgba(184, 153, 104, 0.08);
    color: var(--gold-pale);
    backdrop-filter: blur(4px);
}

.eyebrow__dot { color: var(--gold); font-size: 12px; }

/* ----------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: #1a1408;
}
.btn--primary:hover { background: var(--gold-soft); }

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); }

/* ----------------------------------------------------------------- Announcement bar */
.announcement {
    background: var(--gold-dark);
    color: #fff7e6;
    font-size: 13px;
    text-align: center;
}
.announcement__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    text-align: center;
}
.announcement__star { color: #fff; }
.announcement__close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    line-height: 1;
}

/* ----------------------------------------------------------------- Header (over hero) */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 32px 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand img {
    width: 200px;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .brand img {
    width: 150px;
    }
} 

@media only screen and (max-width: 576px) {
    .brand img {
        width: 120px;
    }
} 

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid rgba(184, 153, 104, 0.55);
    border-radius: 999px;
    color: #fff;
    background: rgba(13, 28, 46, 0.4);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(4px);
}
.phone-btn:hover {
    background: rgba(184, 153, 104, 0.15);
    border-color: var(--gold);
}
.phone-btn svg { color: var(--gold); }

/* ----------------------------------------------------------------- Hero */
.hero {
    position: relative;
    min-height: 760px;
    color: #fff;
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(180deg, rgba(10, 16, 28, 0.55) 0%, rgba(10, 16, 28, 0.35) 35%, rgba(10, 16, 28, 0.85) 100%),
        url("./images/SHOWROOM_SANITAIR-DE-BAERE_WEB_20241015_0058.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 16, 28, 0.72) 0%, rgba(10, 16, 28, 0.25) 60%, rgba(10, 16, 28, 0) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 220px;
    max-width: var(var(--container));
}

.hero__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 24px 0 24px;
    color: #fff;
    text-wrap: balance;
}
.hero__title-accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero__lede {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(239, 230, 212, 0.85);
    max-width: 540px;
    margin: 0 0 36px;
}

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

/* ----------------------------------------------------------------- Intro section */
.intro {
    background: #fff;
    padding: 96px 0;
    text-align: center;
}
.intro__inner { 
    max-width: 960px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    color: var(--ink);
    margin: 18px 0 20px;
    letter-spacing: -0.005em;
    text-wrap: balance;
}
.intro__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* ----------------------------------------------------------------- Pillars */
.pillars {
    background: var(--navy);
    color: #fff;
    padding: 110px 0 120px;
}

.pillars__intro { max-width: 720px; }
.pillars__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.2vw, 50px);
    line-height: 1.1;
    margin: 18px 0 20px;
    color: #fff;
    letter-spacing: -0.005em;
    text-wrap: balance;
}
.pillars__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.pillars__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(239, 230, 212, 0.7);
    max-width: 560px;
    margin: 0;
}

.pillars__grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pillar {
    padding: 8px 32px;
    border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar:last-child { padding-right: 0; }

.pillar__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1408;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.pillar__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}
.pillar__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(239, 230, 212, 0.65);
    margin: 0;
}

.icon-cirlce img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* ----------------------------------------------------------------- Contact */
.contact {
    background: #fff;
    padding: 110px 0;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.15;
    color: var(--ink);
    margin: 18px 0 18px;
    letter-spacing: -0.005em;
    text-wrap: balance;
}
.contact__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 40px;
    max-width: 460px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-item__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(184, 153, 104, 0.12);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.info-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.info-item__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.info-item__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}
a.info-item__value:hover { color: var(--gold-dark); }

.hours {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
    font-size: 14px;
}
.hours td {
    padding: 4px 0;
    color: var(--ink);
    vertical-align: top;
}
.hours td:first-child {
    color: var(--ink-soft);
    padding-right: 24px;
    white-space: nowrap;
    width: 1%;
}
.hours__note { color: var(--ink-mute); }
.hours__footnote {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--ink-mute);
    font-style: italic;
}

/* Why card */
.why-card {
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 48px 44px;
}

.why-card__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    margin: 16px 0 36px;
    color: #fff;
}
.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(239, 230, 212, 0.9);
}
.why-list__bullet {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1408;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

/* ----------------------------------------------------------------- Footer */
.site-footer {
    background: var(--navy);
    color: rgba(239, 230, 212, 0.55);
    padding: 28px 0;
    text-align: center;
    font-size: 13px;
}
.site-footer p { margin: 0; }

.white-space-no-wrap {
    white-space: nowrap;
}

/* ============================================================== Responsive */
@media (max-width: 980px) {
    .contact__grid { grid-template-columns: 1fr; gap: 56px; }
    .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .pillar { padding: 0 24px; }
    .pillar:nth-child(odd) { border-left: none; padding-left: 0; }
    .pillar:nth-child(even) { padding-right: 0; }
    .hero__content { padding-top: 180px; }
    .hero { min-height: 680px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .announcement__inner { padding: 10px 40px 10px 20px; font-size: 12px; }
    .announcement__close { right: 14px; }
    .site-header { padding: 22px 0; }
    .brand__mark { width: 38px; height: 38px; font-size: 18px; }
    .brand__name { font-size: 18px; }
    .phone-btn { padding: 9px 14px; font-size: 13px; }
    .hero { min-height: 620px; padding-bottom: 60px; }
    .hero__content { padding-top: 150px; }
    .intro, .pillars, .contact { padding: 72px 0; }
    .pillars__grid { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; }
    .pillar { border-left: none !important; padding: 0 !important; }
    .why-card { padding: 36px 28px; }
    .hours td:first-child { display: block; padding-bottom: 0; }
    .hours td { display: block; }
}
