/* ==========================================================================
   Sections — page bands. Class based so any section can be reused
   on any page without depending on a specific element id.
   ========================================================================== */

/* Home hero
   ========================================================================== */
.hero {
    min-height: 100vh;
    /* svh follows the visible area, so a phone's collapsing address bar
       cannot push the hero content out of view */
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.05);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, var(--crimson-dd) 18%, rgba(94, 14, 24, .82) 48%, rgba(67, 10, 17, .45) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    max-width: 680px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    color: #fff;
    margin-bottom: 8px;
}

.hero h1 .gold {
    display: block;
}

.hero__lead {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--muted);
    margin: 22px 0 34px;
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-l);
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 18px;
    font-size: 15px;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 42px;
    margin-top: 54px;
    flex-wrap: wrap;
}

.hero__stats .stat b {
    font-family: var(--font-en);
    font-size: 40px;
    color: var(--gold);
    display: block;
    font-weight: 700;
}

.hero__stats .stat span {
    font-size: 14px;
    color: var(--muted);
}

/* Inner-page hero — compact variant used by every page except home
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 190px 0 90px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--crimson-dd), var(--crimson-d));
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: .22;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    color: #fff;
    margin-top: 10px;
}

.page-hero h1 .en {
    display: block;
    font-size: 18px;
    color: var(--gold-soft);
    letter-spacing: .3em;
    margin-top: 8px;
    font-weight: 600;
}

.page-hero p {
    color: var(--muted);
    max-width: 680px;
    margin: 16px auto 0;
    font-size: 17px;
}

/* Breadcrumb
   ========================================================================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin-top: 22px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--gold-l);
}

.breadcrumb li+li::before {
    content: "/";
    margin-left: 10px;
    color: rgba(201, 162, 75, .5);
}

/* About band
   ========================================================================== */
.section-about {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--crimson-dd), var(--crimson-d));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.about-grid__images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-grid__images img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.about-grid__images img:first-child {
    margin-top: 36px;
}

.about-grid__text h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    color: #fff;
    margin: 10px 0 22px;
}

.about-grid__text p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.checklist__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checklist__item svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.checklist__item b {
    color: var(--cream);
}

/* Services band
   ========================================================================== */
.section-services {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(155, 34, 49, .5), transparent 50%),
        var(--crimson-d);
}

/* Works band
   ========================================================================== */
.section-works {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--crimson-d), var(--crimson-dd));
}

/* Two-column band with a form on one side
   ========================================================================== */
.section-split {
    padding: var(--section-pad) 0;
}

.section-split--plain {
    background: linear-gradient(180deg, var(--crimson-dd), var(--crimson-d));
}

/* Parallax photo band */
.section-split--photo {
    background-color: var(--crimson-d);
    background-image: linear-gradient(rgba(67, 10, 17, .86), rgba(94, 14, 24, .9)), var(--band-image, none);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.split-grid__title {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 10px 0 14px;
}

.split-grid__lead {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 8px;
}

/* Contact band
   ========================================================================== */
.section-contact {
    padding: var(--section-pad) 0 0;
    background: var(--crimson-dd);
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 75, .2);
    box-shadow: var(--shadow-md);
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* Responsive
   ========================================================================== */
@media (max-width: 900px) {

    .about-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-grid__images img:first-child {
        margin-top: 0;
    }

    .section-split--photo {
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {

    .hero {
        padding: 96px 0 56px;
    }

    .hero__inner {
        padding-top: 0;
    }

    .hero h1 {
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .hero__lead {
        margin: 18px 0 26px;
    }

    /* Four figures read better as a tidy 2x2 block than as a ragged row */
    .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-top: 38px;
    }

    .hero__stats .stat b {
        font-size: 32px;
    }

    .eyebrow {
        font-size: 14px;
    }

    .eyebrow::before {
        width: 24px;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-hero h1 .en {
        font-size: 15px;
        letter-spacing: .2em;
    }

    /* Two narrow crops side by side turn into slivers on a phone */
    .about-grid__images {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-grid__images img {
        height: 210px;
    }

    .map-embed iframe {
        height: 300px;
    }

    .breadcrumb {
        gap: 4px 10px;
    }

    .breadcrumb a {
        display: inline-block;
        padding: 6px 0;
    }
}
