/* =========================================================
   Loodgieter Antwerp — Stylesheet
   Identity: "WARM HOSPITALITY" — premium, editorial, calm.
   Coffee-brown sections alternating with white, terracotta used
   sparingly as a jewel, elegant serif headings + quiet sans body.
   Inspired by warm hospitality layouts; brand orange retained.
   ========================================================= */

:root {
    /* Terracotta accent (brand orange refined toward the reference) */
    --terra: #BE6A38;
    --terra-deep: #9E4F26;
    --terra-soft: #F3E4D8;       /* faint wash */
    --orange: #E4894D;           /* logo orange — secondary highlight */

    /* Coffee / ink */
    --coffee: #1C1B19;           /* dark section bg */
    --coffee-2: #24221F;         /* raised on dark */
    --coffee-3: #2E2A26;
    --ink: #1C1B19;              /* headings on light */
    --ink-soft: #595149;         /* body on light */
    --muted: #8B8178;            /* captions */

    /* Light surfaces */
    --paper: #FFFFFF;            /* white page */
    --cream: #F6F3EF;            /* off-white panel */
    --cream-2: #EFEAE3;
    --line: #E8E1D8;             /* hairline on light */
    --line-dark: rgba(255,255,255,.12);

    /* On-dark text */
    --on-dark: #EDE7DF;
    --on-dark-soft: #EDE7DF;

    /* Fonts */
    --font-display: 'PT Serif', Georgia, serif;        /* serif display */
    --font-head: 'PT Serif', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;       /* clean sans */

    /* Geometry */
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;

    /* Shadows — soft, low */
    --shadow: 0 24px 60px -28px rgba(28,27,25,.35);
    --shadow-sm: 0 14px 34px -20px rgba(28,27,25,.28);

    /* ---- Legacy aliases (existing markup keeps working) ---- */
    --teal: var(--terra);
    --teal-bright: var(--orange);
    --teal-deep: var(--terra-deep);
    --coral: var(--terra);
    --coral-deep: var(--terra-deep);
    --blue: var(--terra);
    --blue-deep: var(--terra-deep);
    --blue-100: var(--terra-soft);
    --navy: var(--coffee);
    --ink-900: var(--coffee);
    --ink-800: var(--coffee);
    --ink-700: var(--cream);
    --ink-600: var(--cream-2);
    --paper-2: var(--cream);
    --card: var(--paper);
    --orange-deep: var(--terra-deep);
    --orange-soft: var(--terra-soft);
    --sand: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--paper);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 600; letter-spacing: .002em; }
a { color: var(--terra-deep); text-decoration: none; transition: color .25s; }
a:hover { color: var(--ink); }
img { max-width: 100%; }
.container { max-width: 1180px; }
::selection { background: var(--terra-soft); color: var(--ink); }
p { font-weight: 300; }

.bg-soft { background: var(--cream); }
.bg-ink, .bg-coffee { background: var(--coffee); color: var(--on-dark); }
.text-muted { color: var(--muted) !important; }

/* ===== Eyebrow — terracotta, small caps, with a short rule ===== */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1rem;
}
.section-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--terra); }

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    letter-spacing: 0;
    margin-bottom: 1rem;
    line-height: 1.18;
}
.section-lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 60ch; }

/* ===== Buttons — squared, refined ===== */
.btn { font-family: var(--font-body); font-weight: 500; border-radius: var(--radius-sm); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; transition: all .28s ease; border: 0; padding: .85rem 1.7rem; }
.btn-cta, .btn-hero-call {
    background: var(--terra); color: #fff;
}
.btn-cta:hover, .btn-hero-call:hover { background: var(--terra-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline-brand, .btn-hero-ghost {
    background: transparent; color: #fff; border: 1px solid var(--line);
}
.btn-outline-brand:hover, .btn-hero-ghost:hover { border-color: var(--terra); color: var(--terra-deep); }
.btn-light { background: #fff; color: var(--ink); border-radius: var(--radius-sm); font-weight: 500; }
.btn-light:hover { background: var(--terra); color: #fff; }
.btn-lg { padding: 1rem 2.1rem; font-size: .85rem; }
/* On dark sections, ghost buttons go light */
.bg-coffee .btn-outline-brand, .close-block .btn-outline-brand, .cover-band .btn-outline-brand,
.hx .btn-outline-brand, .hx .btn-hero-ghost, .page-header .btn-outline-brand {
    color: #fff; border-color: rgba(255,255,255,.45);
}
.bg-coffee .btn-outline-brand:hover, .close-block .btn-outline-brand:hover,
.hx .btn-outline-brand:hover, .hx .btn-hero-ghost:hover, .page-header .btn-outline-brand:hover {
    border-color: var(--terra); color: var(--terra); background: rgba(255,255,255,.04);
}

/* ===== Top bar ===== */
.topbar { background: var(--coffee); color: var(--on-dark-soft); font-size: .82rem; padding: .5rem 0; letter-spacing: .02em; }
.topbar a { color: var(--on-dark-soft); }
.topbar a:hover { color: var(--terra); }
.topbar-phone { font-weight: 500; color: var(--on-dark); }

/* ===== Main nav ===== */
.main-nav { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: .65rem 0; }
.main-nav .brand-logo { height: 40px; width: auto; }
.navbar-brand { padding: 0; }
.main-nav .nav-link { font-family: var(--font-body); font-weight: 400; color: var(--ink); font-size: .92rem; letter-spacing: .02em; padding: .5rem .9rem !important; position: relative; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--terra-deep); }
.main-nav .nav-link.active::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .1rem; height: 1.5px; background: var(--terra); }
.dropdown-menu { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: .5rem; margin-top: .6rem; }
.dropdown-item { font-family: var(--font-body); font-weight: 400; font-size: .9rem; padding: .55rem .8rem; border-radius: var(--radius-sm); }
.dropdown-item:hover { background: var(--terra-soft); color: var(--terra-deep); }
.dropdown-item.active { background: var(--terra); color: #fff; }
.lang-switch { font-size: .85rem !important; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.navbar-toggler { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .35rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   HERO — dark coffee, serif headline, framed photo
   ========================================================= */
.hx { position: relative; background: var(--coffee); color: var(--on-dark); display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; overflow: hidden; }
.hx::before { content: ""; position: absolute; left: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(190,106,56,.22), transparent 70%); }
.hx-left { padding: clamp(2.6rem,5vw,5.5rem) clamp(1.4rem,4vw,4rem); position: relative; z-index: 2; }
.hx-kicker { display: inline-flex; align-items: center; gap: .7rem; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.3rem; font-weight: 500; }
.hx-kicker .dotline { width: 30px; height: 1.5px; background: var(--terra); }
.hx-left h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem,5.6vw,4.6rem); line-height: 1.1; letter-spacing: 0; margin: 0 0 1.4rem; color: #fff; }
.hx-left h1 .u { color: var(--terra); font-style: italic; display: inline; }
.hx-lead { font-size: 1.12rem; color: var(--on-dark-soft); max-width: 46ch; margin-bottom: 2rem; font-weight: 300; }
.hx-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hx-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hx-tags li { font-size: .88rem; color: var(--on-dark-soft); display: flex; align-items: center; gap: .5rem; }
.hx-tags i { color: var(--terra); }
.hx-right { position: relative; z-index: 2; padding: clamp(1.4rem,3vw,2.5rem); min-height: 480px; display: flex; align-items: stretch; }
.hx-photo { position: absolute; inset: clamp(1.4rem,3vw,2.5rem); width: auto; height: auto; object-fit: cover; border-radius: var(--radius-lg); }
.hx-photo-tint { position: absolute; inset: clamp(1.4rem,3vw,2.5rem); border-radius: var(--radius-lg); background: linear-gradient(180deg, transparent 50%, rgba(28,27,25,.4) 100%); }
.dispatch { position: relative; z-index: 3; align-self: flex-end; margin-top: auto; padding: 1.5rem 1.6rem; background: rgba(28,27,25,.78); backdrop-filter: blur(10px); border: 1px solid var(--line-dark); border-radius: var(--radius); color: var(--on-dark); }
.live-row { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; display: flex; align-items: center; gap: .5rem; font-weight: 500; color: var(--terra); margin-bottom: .5rem; }
.live-dot { width: 8px; height: 8px; background: var(--terra); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.dispatch-phone { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem,3.6vw,2.4rem); color: #fff; display: block; line-height: 1.1; }
.dispatch-phone:hover { color: var(--terra); }
.dispatch-sub { font-size: .9rem; color: var(--on-dark-soft); margin: .5rem 0 1rem; }
.dispatch-call { display: inline-flex; align-items: center; gap: .5rem; background: var(--terra); color: #fff; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; font-size: .82rem; letter-spacing: .04em; padding: .7rem 1.4rem; border-radius: var(--radius-sm); transition: all .25s; }
.dispatch-call:hover { background: var(--terra-deep); color: #fff; transform: translateY(-2px); }
.dispatch-meta { list-style: none; padding: 1.1rem 0 0; margin: 1.1rem 0 0; border-top: 1px solid var(--line-dark); display: grid; gap: .5rem; }
.dispatch-meta li { font-size: .84rem; display: flex; align-items: center; gap: .55rem; color: var(--on-dark-soft); }
.dispatch-meta i { color: var(--terra); }

.section { padding: clamp(3.6rem,7vw,6.5rem) 0; }

/* =========================================================
   ABOUT row (image collage + checklist + signature)
   ========================================================= */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); display: block; width: 100%; }
.about-badge { position: absolute; right: -18px; bottom: -18px; width: 120px; height: 120px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; line-height: 1.2; box-shadow: var(--shadow); padding: 1rem; }
.about-check { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 1.8rem 0; padding: 1.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-check .ci { display: flex; gap: .7rem; align-items: flex-start; }
.about-check .ci i { color: var(--terra); font-size: 1.05rem; margin-top: .2rem; }
.about-check .ci h4 { font-family: var(--font-body); font-weight: 600; font-size: .98rem; text-transform: none; color: var(--ink); margin: 0 0 .2rem; letter-spacing: 0; }
.about-check .ci p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.6; }
.about-sign { display: flex; align-items: center; gap: 1rem; }
.about-sign .who { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.about-sign .who small { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--muted); font-weight: 400; }

/* =========================================================
   SERVICES — image cards with corner badge (rooms style)
   ========================================================= */
.svc-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 2.8rem; }
.svc-head .lead-col { display: none; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-tile { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.svc-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-tile-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-tile:hover .svc-tile-media img { transform: scale(1.06); }
.svc-tile-badge { position: absolute; left: 0; bottom: 0; background: var(--terra); color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .45rem 1rem; font-weight: 500; }
.svc-tile-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.svc-tile-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 0; color: var(--ink); }
.svc-tile-body p { margin: 0; font-size: .92rem; color: var(--ink-soft); flex: 1; }
.svc-tile-foot { display: flex; align-items: center; justify-content: space-between; padding-top: .8rem; border-top: 1px solid var(--line); }
.svc-tile-foot .lk { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--terra-deep); font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; }
.svc-tile:hover .svc-tile-foot .lk { gap: .65rem; }

/* legacy .svc-row / .service-card fallbacks (used on inner list pages) */
.svc-list { display: grid; gap: 1.2rem; }
.svc-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.4rem; padding: 1.5rem 1.7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-soft); transition: all .25s; }
.svc-row .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--terra); }
.svc-row .body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 0 0 .25rem; color: var(--ink); }
.svc-row .body p { margin: 0; color: var(--ink-soft); }
.svc-row .go { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); color: var(--terra-deep); transition: all .25s; }
.svc-row:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-row:hover .go { background: var(--terra); color: #fff; }

/* =========================================================
   STATS band (dark coffee, big serif numbers)
   ========================================================= */
.stats-band { background: var(--coffee); color: var(--on-dark); padding: clamp(2.4rem,4vw,3.4rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { text-align: center; padding: 1.4rem 1rem; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.stat .n { font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; color: var(--terra); line-height: 1; }
.stat .l { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--on-dark-soft); margin-top: .5rem; }

/* =========================================================
   WHY / amenities — feature list on dark or light
   ========================================================= */
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.4rem; align-items: start; }
.why-stick { position: sticky; top: 100px; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.feat-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.feat-ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); font-size: 1.4rem; color: var(--terra-deep); flex-shrink: 0; }
.feat-row h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin: 0 0 .3rem; color: var(--ink); text-transform: none; letter-spacing: 0; }
.feat-row p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.7; }
/* amenities on dark variant */
.bg-coffee .feat-row h3, .stats-band + .section.bg-coffee .feat-row h3 { color: #fff; }
.bg-coffee .feat-row p { color: var(--on-dark-soft); }
.bg-coffee .feat-ic { background: var(--coffee-3); color: var(--terra); }
.bg-coffee .section-title { color: #fff; }

/* =========================================================
   COVERAGE marquee
   ========================================================= */
.cover-band { background: var(--cream); padding: clamp(2.8rem,5vw,4.2rem) 0; overflow: hidden; }
.cover-inner { display: grid; gap: 2rem; }
.cover-text { max-width: 1180px; margin: 0 auto; padding: 0 1.2rem; width: 100%; }
.cover-text p { color: var(--ink-soft); max-width: 60ch; }
.cover-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.cover-track { display: inline-flex; gap: .9rem; white-space: nowrap; animation: marq 38s linear infinite; padding-left: .9rem; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cover-chip { font-family: var(--font-body); font-weight: 500; font-size: .92rem; padding: .55rem 1.2rem; border-radius: var(--radius-sm); background: #fff; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--line); }
.cover-chip i { color: var(--terra); }
.cover-chip.is-home { background: var(--terra); color: #fff; border-color: var(--terra); }
.cover-chip.is-home i { color: #fff; }

/* =========================================================
   REVIEWS — dark testimonial band
   ========================================================= */
.close-block, .testi-band { background: var(--coffee); color: var(--on-dark); }
.rev-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.6rem; }
.rev-feature { padding: 2.4rem; background: var(--coffee-2); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.rev-feature .stars { color: var(--terra); font-size: 1.05rem; margin-bottom: 1rem; }
.rev-feature .q { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.3rem,2.1vw,1.7rem); line-height: 1.45; color: #fff; margin-bottom: 1.3rem; }
.rev-feature .who { font-size: .9rem; font-weight: 600; color: var(--on-dark); }
.rev-feature .who small { display: block; color: var(--on-dark-soft); font-weight: 400; }
.rev-side { display: grid; gap: 1.6rem; }
.rev-mini { padding: 1.6rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--coffee-2); }
.rev-mini .stars { color: var(--terra); font-size: .88rem; margin-bottom: .5rem; }
.rev-mini p { font-size: .95rem; color: var(--on-dark-soft); margin-bottom: .7rem; }
.rev-mini .who { font-size: .85rem; font-weight: 600; color: var(--on-dark); }
.rev-side .btn { justify-self: start; }

/* When reviews/close titles sit on coffee */
.close-block .section-title, .testi-band .section-title { color: #fff; }
.close-block .section-eyebrow, .testi-band .section-eyebrow, .cover-band .section-eyebrow { }

/* =========================================================
   CLOSING (FAQ + CTA) — keep on cream for contrast variety
   ========================================================= */
.close-block { background: var(--coffee); }
.close-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.4rem; align-items: start; }
.close-aside p { color: var(--on-dark-soft); }
.close-phone { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem,3.2vw,2.5rem); color: var(--terra); display: inline-block; margin-bottom: 1.2rem; }
.close-phone:hover { color: #fff; }
.accordion-item { background: var(--coffee-2); border: 1px solid var(--line-dark) !important; border-radius: var(--radius) !important; margin-bottom: .9rem; overflow: hidden; }
.accordion-button { background: var(--coffee-2); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; padding: 1.2rem 1.4rem; border-radius: 0 !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: var(--coffee-3); color: var(--terra); }
.accordion-button::after { filter: invert(1) sepia(1) saturate(3) hue-rotate(330deg); }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--on-dark-soft); padding: 0 1.4rem 1.3rem; }

/* =========================================================
   PAGE HEADER (inner pages) — dark coffee w/ serif
   ========================================================= */
.page-header { background: var(--coffee); color: var(--on-dark); padding: clamp(3rem,6vw,5rem) 0 clamp(2.4rem,4vw,3.4rem); position: relative; overflow: hidden; }
.page-header::after { content: ""; position: absolute; right: -8%; top: -50%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(190,106,56,.18), transparent 70%); }
.page-header h1 { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: clamp(2.4rem,5vw,3.8rem); line-height: 1.12; margin-bottom: .8rem; position: relative; }
.page-header p { color: var(--on-dark-soft); font-size: 1.1rem; max-width: 58ch; margin: 0; position: relative; font-weight: 300; }
.breadcrumb-nav { font-size: .82rem; letter-spacing: .04em; margin-bottom: 1.2rem; color: var(--on-dark-soft); position: relative; text-transform: uppercase; }
.breadcrumb-nav a { color: var(--terra); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { margin: 0 .5rem; color: var(--line-dark); }

/* ===== Prose ===== */
.prose { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.85; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem,2.8vw,2.2rem); color: var(--ink); margin: 2.4rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.15rem; }
.prose ul { list-style: none; padding: 0; margin: 1.3rem 0; }
.prose ul li { position: relative; padding: .5rem 0 .5rem 2rem; }
.prose ul li::before { content: "\2713"; position: absolute; left: 0; top: .5rem; color: var(--terra); font-weight: 700; }
.prose-hero-img { width: 100%; height: auto; border-radius: var(--radius-lg); margin: 0 0 1.8rem; display: block; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow-sm); }
.prose strong { color: var(--ink); font-weight: 600; }

/* ===== Info box ===== */
.info-box { background: var(--coffee); color: var(--on-dark); border-radius: var(--radius-lg); padding: 2rem; position: sticky; top: 100px; }
.info-box h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; margin-bottom: .6rem; }
.info-box p { color: var(--on-dark-soft); margin-bottom: 1rem; font-size: .96rem; }
.phone-big { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--terra); display: block; margin-bottom: 1.1rem; }
.info-box .btn-cta { width: 100%; justify-content: center; display: flex; }
.info-list { list-style: none; padding: 1.3rem 0 0; margin: 1.3rem 0 0; border-top: 1px solid var(--line-dark); display: grid; gap: .7rem; }
.info-list li { font-size: .9rem; color: var(--on-dark-soft); display: flex; align-items: center; gap: .6rem; }
.info-list i { color: var(--terra); }

/* ===== Service cards (grid on inner pages) ===== */
.service-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; height: 100%; transition: all .3s; box-shadow: var(--shadow-sm); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); font-size: 1.5rem; color: var(--terra-deep); margin-bottom: 1.1rem; }
.service-card h2, .service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: .5rem; color: var(--ink); }
.service-card p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1rem; }
.service-link { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--terra-deep); font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; }
.service-link:hover { color: var(--ink); gap: .65rem; }

/* ===== Steps ===== */
.step { padding: 1.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); height: 100%; box-shadow: var(--shadow-sm); transition: all .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { width: 56px; height: 56px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); font-size: 1.4rem; color: var(--terra-deep); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: .4rem; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ===== Contact cards ===== */
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; text-align: center; height: 100%; box-shadow: var(--shadow-sm); transition: all .3s; }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon { width: 62px; height: 62px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); font-size: 1.6rem; color: var(--terra-deep); }
.contact-card h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); }

/* ===== Forms ===== */
.form-label { font-size: .85rem; color: var(--ink); font-weight: 500; margin-bottom: .4rem; }
.form-control { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem .95rem; font-size: 1rem; background: #fff; font-family: var(--font-body); transition: all .25s; }
.form-control:focus { border-color: var(--terra); box-shadow: 0 0 0 3px var(--terra-soft); }
.alert { border-radius: var(--radius-sm); border: 1px solid var(--line); font-family: var(--font-body); }
.alert-danger { background: #F6E5DD; border-color: #E6C3B2; color: #93421f; }
.alert-warning { background: var(--terra-soft); border-color: #E6C3B2; color: #8a5223; }
.alert-secondary { background: var(--cream); color: var(--ink-soft); }

/* ===== CTA band ===== */
.cta-band { background: var(--terra); color: #fff; padding: clamp(2.6rem,5vw,3.8rem) 0; }
.cta-band-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem,3.4vw,2.7rem); color: #fff; margin-bottom: .4rem; }
.cta-band-text { color: rgba(255,255,255,.9); font-size: 1.05rem; font-weight: 300; }
.cta-band .btn-light { color: var(--terra-deep); }

/* ===== Footer ===== */
.site-footer { background: var(--coffee); color: var(--on-dark-soft); padding: clamp(3.4rem,6vw,4.8rem) 0 2rem; }
.footer-logo { height: 42px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer-about { color: var(--on-dark-soft); font-size: .94rem; font-weight: 300; }
.footer-contact { display: grid; gap: .55rem; margin-top: 1.1rem; }
.footer-contact a { color: var(--on-dark); font-size: .92rem; display: flex; align-items: center; }
.footer-contact a:hover { color: var(--terra); }
.footer-title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: var(--on-dark-soft); font-size: .92rem; }
.footer-links a:hover { color: var(--terra); padding-left: .25rem; }
.footer-hours { font-size: .9rem; color: var(--on-dark-soft); margin-top: .8rem; }
.footer-hours strong { color: var(--terra); font-weight: 600; }
.footer-divider { border-color: var(--line-dark); margin: 2.6rem 0 1.5rem; }
.footer-copy { color: var(--muted); font-size: .86rem; }
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.4rem; justify-content: flex-end; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: .86rem; }
.footer-legal a:hover { color: var(--terra); }
.footer-credits-link { display: inline-block; margin-top: 1.1rem; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(139,129,120,.5); }
.footer-credits-link:hover { color: var(--terra); }

/* ===== Floating call ===== */
.floating-call { position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; background: var(--terra); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; z-index: 999; box-shadow: var(--shadow); transition: all .25s; }
.floating-call:hover { background: var(--terra-deep); color: #fff; transform: scale(1.06); }

/* ===== Cookie banner ===== */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 980px; margin: 0 auto; background: var(--coffee); color: var(--on-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.1rem 1.4rem; z-index: 1000; box-shadow: var(--shadow); transform: translateY(150%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: .9rem; color: var(--on-dark-soft); }
.cookie-text a { color: var(--terra); }
.cookie-actions { display: flex; gap: .6rem; }

/* ===== Image credits ===== */
.credits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.6rem; }
.credit-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: all .3s; }
.credit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.credit-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.credit-body { padding: 1.1rem 1.2rem; }
.credit-by { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.credit-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.2rem; margin: .1rem 0 .6rem; }
.credit-link { font-size: .85rem; color: var(--terra-deep); display: inline-flex; align-items: center; gap: .35rem; }
.credit-link:hover { color: var(--ink); gap: .55rem; }

/* ===== Reviews page cards ===== */
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; height: 100%; box-shadow: var(--shadow-sm); transition: all .3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-stars { color: var(--terra); margin-bottom: .8rem; }
.review-text { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.3rem; line-height: 1.8; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .9rem; }
.review-avatar { width: 46px; height: 46px; background: var(--terra-soft); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--terra-deep); }
.review-author .name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.review-author .place { font-size: .8rem; color: var(--muted); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .cover-track { animation: none; }
    .live-dot { animation: none; }
    html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible, .form-control:focus-visible, .btn:focus-visible { outline: 3px solid var(--terra); outline-offset: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hx { grid-template-columns: 1fr; }
    .hx-right { min-height: 380px; }
    .about-row { grid-template-columns: 1fr; gap: 2.4rem; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .why-stick { position: static; }
    .why-feats { grid-template-columns: 1fr 1fr; }
    .close-grid { grid-template-columns: 1fr; gap: 2rem; }
    .rev-grid { grid-template-columns: 1fr; }
    .svc-head { grid-template-columns: 1fr; }
    .info-box { position: static; margin-top: 2rem; }
}
@media (max-width: 575px) {
    .hx-cta-row { flex-direction: column; }
    .hx-cta-row .btn { width: 100%; justify-content: center; display: flex; }
    .svc-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-check { grid-template-columns: 1fr; }
    .why-feats { grid-template-columns: 1fr; }
    .footer-legal { justify-content: flex-start; }
}
