:root {
    --green: #86c226;
    --green-dark: #5c9214;
    --charcoal: #303943;
    --charcoal-dark: #121d24;
    --wood: #b8793c;
    --cream: #f6f3eb;
    --white: #ffffff;
    --light: #f4f6f1;
    --text: #1e2933;
    --muted: #667085;
    --shadow: 0 22px 65px rgba(18, 29, 36, 0.16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

button,
input,
textarea {
    font: inherit;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-width: 0;
}

.section {
    padding: 110px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(134, 194, 38, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 34px rgba(18, 29, 36, 0.12);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #101820;
    font-weight: 900;
    letter-spacing: -0.04em;
    min-width: 0;
}

.logo-wrap span {
    white-space: nowrap;
}

.site-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #101820;
}

.main-nav a {
    position: relative;
    transition: color 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--charcoal-dark);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--charcoal-dark);
    color: var(--white) !important;
    box-shadow: 0 14px 28px rgba(18, 29, 36, 0.22);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--charcoal-dark);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 138px 0 88px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 29, 36, 0.9), rgba(18, 29, 36, 0.42)),
        url('images/gal3.jpg') center center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: min(580px, 80vw);
    height: min(580px, 80vw);
    right: -190px;
    top: -130px;
    border-radius: 50%;
    background: rgba(134, 194, 38, 0.28);
    filter: blur(5px);
}

.hero-section::after {
    content: '';
    position: absolute;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    left: -165px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(184, 121, 60, 0.2);
    filter: blur(5px);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(134, 194, 38, 0.28), transparent 34%),
        linear-gradient(90deg, rgba(18, 29, 36, 0.92), rgba(18, 29, 36, 0.18));
}

.hero-grid,
.about-grid,
.products-grid,
.project-grid,
.location-grid,
.contact-grid,
.footer-grid {
    min-width: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 52px;
}

.hero-content,
.hero-card,
.about-content,
.facebook-card,
.project-content,
.location-card,
.contact-content,
.contact-form {
    min-width: 0;
}

.hero-content {
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 100%;
}

.eyebrow.dark {
    color: var(--green-dark);
}

.hero-content h1 {
    max-width: 850px;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.96;
    letter-spacing: -0.08em;
    margin-bottom: 32px;
    overflow-wrap: anywhere;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.15rem;
    margin-bottom: 38px;
}

.hero-actions,
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    min-width: 0;
}

.hero-actions {
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--green);
    color: #101820;
    box-shadow: 0 18px 36px rgba(134, 194, 38, 0.34);
}

.btn-primary:hover {
    background: #9add33;
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-dark {
    background: var(--charcoal-dark);
    color: var(--white);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-trust i {
    color: var(--green);
}

.hero-card {
    position: relative;
    padding: 36px;
    border-radius: 34px;
    background: rgba(246, 243, 235, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow);
    text-align: center;
    overflow: hidden;
}

.hero-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 42%;
    background: var(--green);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-card img {
    position: relative;
    width: 170px;
    margin: 0 auto 26px;
    object-fit: contain;
}

.hero-card h2 {
    color: var(--charcoal-dark);
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-card p {
    color: var(--muted);
    margin-bottom: 26px;
}

.hero-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--charcoal-dark);
    color: var(--white);
    font-weight: 900;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 58px;
    text-align: center;
    min-width: 0;
}

.section-heading h2,
.about-content h2,
.gallery-header h2,
.contact-content h2,
.location-grid h2,
.project-content h2 {
    color: var(--charcoal-dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.16;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

.section-heading p,
.about-content p,
.gallery-header p,
.contact-content p,
.project-content p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.about-points {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: var(--light);
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(18, 29, 36, 0.06);
    min-width: 0;
}

.about-points i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--green);
    color: #101820;
    flex: 0 0 44px;
}

.facebook-card {
    padding: 28px;
    border-radius: 34px;
    background: var(--charcoal-dark);
    color: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.facebook-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    min-width: 0;
}

.facebook-card-top i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--green);
    color: #101820;
    font-size: 1.3rem;
    flex: 0 0 54px;
}

.facebook-card-top h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.facebook-card-top p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.facebook-embed-wrap {
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    min-height: 430px;
    width: 100%;
}

.facebook-embed-wrap iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.products-section {
    background: linear-gradient(180deg, var(--light), var(--cream));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: var(--radius);
    background: var(--charcoal-dark);
    box-shadow: var(--shadow);
    isolation: isolate;
    min-width: 0;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 20%, rgba(18, 29, 36, 0.9));
}

.product-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover img {
    transform: scale(1.07);
}

.product-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: var(--white);
    min-width: 0;
}

.product-content span,
.gallery-item span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--green);
    color: #101820;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    max-width: 100%;
}

.product-content h3 {
    font-size: 1.32rem;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -0.035em;
}

.product-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.7;
}

.project-section {
    padding: 90px 0;
    background:
        linear-gradient(135deg, rgba(18, 29, 36, 0.92), rgba(18, 29, 36, 0.72)),
        url('images/gal1.jpg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.project-content h2,
.project-content p {
    color: var(--white);
}

.project-content p {
    color: rgba(255, 255, 255, 0.78);
}

.project-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.project-list div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 0;
}

.project-list i {
    color: var(--green);
    margin-right: 8px;
}

.gallery-section {
    background: var(--white);
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
    min-width: 0;
}

.gallery-header > div:first-child {
    max-width: 760px;
    min-width: 0;
}

.gallery-controls {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.gallery-btn {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--charcoal-dark);
    color: var(--green);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 12px 28px rgba(18, 29, 36, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    background: var(--green);
    color: #101820;
}

.gallery-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 390px);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 0 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--green) rgba(18, 29, 36, 0.1);
    max-width: 100%;
}

.gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(18, 29, 36, 0.08);
    border-radius: 999px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 999px;
}

.gallery-item {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--charcoal-dark);
    box-shadow: 0 18px 42px rgba(18, 29, 36, 0.16);
    scroll-snap-align: start;
    isolation: isolate;
    min-width: 0;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 25%, rgba(18, 29, 36, 0.82));
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
}

.location-strip {
    padding: 76px 0;
    background: var(--green);
    color: #101820;
    overflow: hidden;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 32px;
}

.location-grid .eyebrow,
.location-grid h2 {
    color: #101820;
}

.what3words {
    display: inline-flex;
    max-width: 100%;
    margin-top: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--charcoal-dark);
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.065em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.location-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.location-card > i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--charcoal-dark);
    color: var(--green);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.location-card p {
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.7;
}

.contact-section {
    background: var(--cream);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 34px;
    min-width: 0;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(18, 29, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
}

.contact-methods a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-methods i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--green);
    color: #101820;
    font-size: 1.2rem;
    flex: 0 0 46px;
}

.contact-methods span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 36px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    min-width: 0;
}

.form-row.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-row label {
    color: var(--charcoal-dark);
    font-weight: 900;
    font-size: 0.92rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(18, 29, 36, 0.14);
    border-radius: 16px;
    padding: 15px 16px;
    background: #fbfcf8;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(134, 194, 38, 0.18);
}

.form-row textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
}

.site-footer {
    background: var(--charcoal-dark);
    color: var(--white);
    padding-top: 70px;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 44px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 94px;
    margin-bottom: 18px;
}

.site-footer p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.site-footer h3 {
    color: var(--green);
    margin-bottom: 18px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 16px;
    text-align: center;
}

.footer-bottom p {
    max-width: none;
    font-size: 0.9rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .project-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .facebook-card {
        max-width: 560px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(134, 194, 38, 0.98);
        box-shadow: var(--shadow);
        max-width: calc(100vw - 32px);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 8px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 128px;
    }

    .section {
        padding: 82px 0;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-scroll {
        grid-auto-columns: minmax(280px, 84vw);
    }

    .project-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 76px;
    }

    .site-logo {
        width: 54px;
        height: 54px;
    }

    .logo-wrap span {
        font-size: 0.95rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-nav {
        top: 76px;
        left: 12px;
        right: 12px;
        max-width: calc(100vw - 24px);
    }

    .hero-section {
        padding: 118px 0 62px;
        background-position: center center;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-content h1 {
        font-size: clamp(2.55rem, 13vw, 4.3rem);
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.75;
    }

    .hero-actions,
    .hero-trust {
        flex-direction: column;
    }

    .btn,
    .hero-trust span,
    .hero-card a {
        width: 100%;
    }

    .hero-card,
    .facebook-card,
    .contact-form,
    .location-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-card img {
        width: 140px;
    }

    .facebook-card-top {
        align-items: flex-start;
    }

    .facebook-embed-wrap {
        min-height: 360px;
        border-radius: 18px;
    }

    .facebook-embed-wrap iframe {
        height: 360px;
    }

    .products-grid,
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .product-card,
    .product-card img,
    .gallery-item,
    .gallery-item img {
        min-height: 360px;
    }

    .gallery-scroll {
        grid-auto-columns: minmax(260px, 82vw);
        gap: 16px;
    }

    .gallery-controls {
        width: 100%;
    }

    .gallery-btn {
        width: 48px;
        height: 48px;
    }

    .what3words {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: clamp(1.25rem, 7.5vw, 2.15rem);
        letter-spacing: -0.035em;
        border-radius: 22px;
        padding: 12px 14px;
    }

    .contact-methods a {
        align-items: flex-start;
    }

    .section-heading h2,
    .about-content h2,
    .gallery-header h2,
    .contact-content h2,
    .location-grid h2,
    .project-content h2 {
        letter-spacing: -0.03em;
        line-height: 1.18;
        font-size: clamp(1.85rem, 9vw, 2.7rem);
    }

    .section-heading p,
    .about-content p,
    .gallery-header p,
    .contact-content p,
    .project-content p {
        line-height: 1.75;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .logo-wrap span {
        max-width: 140px;
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
    }

    .gallery-scroll {
        grid-auto-columns: minmax(240px, 84vw);
    }
}
