@import url('https://fonts.googleapis.com/css2?family=Chewy&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --black: #090909;
    --white: #ffffff;
    --cream: #f6f1e8;
    --soft: #ece5d9;
    --text: #1c1b19;
    --muted: #6d685f;
    --red: #d94835;
    --red-dark: #b83625;
    --radius-lg: 34px;
    --radius-md: 22px;
    --shadow: 0 24px 60px rgba(21, 18, 14, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 241, 232, 0.9);
    border-bottom: 1px solid rgba(28, 27, 25, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand img,
.site-footer img {
    width: 235px;
    height: 58px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--red);
}

.hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    background:
        url("assets/hunderaum-hero.jpg")
        center 48% / cover no-repeat;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 58%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 86px;
    color: var(--white);
}

.eyebrow {
    margin-bottom: 16px;
    color: #f6c9bf;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.eyebrow.light {
    color: #f2b7a9;
}

.hero h1,
.section h2 {
    font-family: "Chewy", cursive;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.04;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.hero-text {
    max-width: 610px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.18rem;
}

.button {
    display: inline-flex;
    margin-top: 32px;
    padding: 15px 25px;
    color: var(--white);
    background: var(--red);
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(217, 72, 53, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.section {
    padding: 110px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.section h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.intro-copy {
    padding-top: 12px;
}

.intro-copy p,
.section-heading > p:last-child,
.commands-intro > p:last-child,
.contact-card > div:first-child > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-copy p + p {
    margin-top: 20px;
}

.services {
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-heading > p:last-child {
    margin-top: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 285px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--cream);
    border: 1px solid rgba(28, 27, 25, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-number {
    margin-bottom: auto;
    color: var(--red);
    font-weight: 700;
}

.service-card h3 {
    font-family: "Chewy", cursive;
    font-size: 1.7rem;
    font-weight: 400;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
}

.commands {
    color: var(--white);
    background: var(--black);
}

.commands-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.commands-intro > p:last-child {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.66);
}

.command-list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.command-list span {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-weight: 700;
}

.contact-card {
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 55px;
    align-items: center;
    background: var(--soft);
    border-radius: var(--radius-lg);
}

.contact-card > div:first-child > p:last-child {
    margin-top: 18px;
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-details a {
    padding: 20px 22px;
    background: var(--white);
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-details a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(21, 18, 14, 0.1);
}

.contact-details small {
    display: block;
    color: var(--muted);
}

.contact-details strong {
    display: block;
    margin-top: 3px;
    font-size: 1.08rem;
}

.site-footer {
    padding: 42px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--black);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-footer img {
    width: 190px;
    height: 48px;
}

.site-footer p {
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .commands-grid,
    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

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

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

    .brand img {
        width: 190px;
        height: 47px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-image {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.12) 100%);
    }

    .hero-content {
        padding-bottom: 56px;
    }

    .hero h1 {
        font-size: 3.65rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        font-size: 3.1rem;
    }

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

    .service-card {
        min-height: 230px;
    }

    .contact-card {
        padding: 32px 22px;
    }

    .contact-details strong {
        overflow-wrap: anywhere;
    }
}
