:root {
    --sand: #f7ead7;
    --cream: #fffaf1;
    --sea: #48a6a7;
    --deep-sea: #176b72;
    --coral: #ff8f70;
    --sun: #ffd08a;
    --ink: #17383d;
    --muted: #647b7d;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(23, 56, 61, 0.12);
    --radius: 22px;
}

/* Base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream), var(--sand));
    line-height: 1.55;
}

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

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

/* Announcement Bar */
.announcement {
    background: var(--deep-sea);
    color: var(--white);
    text-align: center;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 800;
}

.announcement a {
    color: var(--sun);
    font-weight: 900;
}

/* Header / Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 250, 241, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23, 56, 61, 0.08);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--deep-sea);
    font-size: 22px;
}

.brand span {
    color: var(--coral);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(255, 143, 112, 0.35);
    border: 0;
    cursor: pointer;
}

.button.secondary {
    background: var(--white);
    color: var(--deep-sea);
    box-shadow: none;
    border: 1px solid rgba(23, 56, 61, 0.12);
}

/* Hero */
.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 22px 48px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    color: var(--deep-sea);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 13px;
    margin-bottom: 12px;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -2.6px;
}

h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.hero p,
.lead {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 19px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    background: rgba(72, 166, 167, 0.12);
    color: var(--deep-sea);
    border: 1px solid rgba(72, 166, 167, 0.22);
    padding: 9px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.hero-card {
    background: var(--white);
    padding: 14px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.hero-image {
    min-height: 430px;
    border-radius: 24px;
    background-image:
        linear-gradient(135deg, rgba(72, 166, 167, 0.28), rgba(255, 143, 112, 0.2)),
        url('../../images/hero-bunk-bed.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.hero-note {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 16px;
    font-weight: 800;
    color: var(--deep-sea);
}

/* Sections */
section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 22px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0;
}

.section-head p {
    max-width: 560px;
    color: var(--muted);
    margin: 0;
}

/* Layout Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.two-grid,
.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.split {
    gap: 28px;
    align-items: stretch;
}

/* Cards / Products / Panels */
.product,
.card,
.panel {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product {
    display: flex;
    flex-direction: column;
}

.product-img,
.card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(23, 107, 114, 0.18), rgba(255, 208, 138, 0.22));
}

.product-body,
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.location {
    color: var(--coral);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 12px;
}

.product h3,
.card h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.6px;
}

.product p,
.card p,
.panel p {
    margin: 0;
    color: var(--muted);
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.price-note {
    font-weight: 900;
    color: var(--deep-sea);
}

.small-link {
    font-weight: 900;
    color: var(--coral);
}

.panel {
    padding: 34px;
}

.panel h2,
.panel h3 {
    margin-top: 0;
    letter-spacing: -1px;
}

/* Feature Band */
.feature-band {
    background: linear-gradient(135deg, var(--deep-sea), var(--sea));
    color: var(--white);
    border-radius: 34px;
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.feature span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

/* Lists */
.checklist {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 900;
}

/* Service / Soft Boxes */
.service-area,
.soft-box {
    background: rgba(72, 166, 167, 0.12);
    border: 1px solid rgba(72, 166, 167, 0.2);
    border-radius: 30px;
    padding: 32px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.area-tags a,
.area-tags span {
    background: var(--white);
    color: var(--deep-sea);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 800;
}

/* Contact / Forms */
.contact-shell {
    background: var(--white);
    border-radius: 34px;
    padding: 38px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-shell h2 {
    margin: 0 0 12px;
}

.contact-shell p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
    margin-top: 22px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--deep-sea);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(23, 56, 61, 0.18);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
}

textarea {
    min-height: 130px;
}

/* Mobile Fixed Call Button */
.mobile-call {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 20;
}

/* Footer */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 12px auto;
}

footer {
    padding: 36px 22px 90px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

/* Tablet */
@media (max-width: 900px) {
    .hero,
    .split {
        grid-template-columns: 1fr;
    }

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

    .feature-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 12px;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .nav {
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

    .mobile-call {
        display: flex;
    }

    .hero {
        padding-top: 46px;
    }

    .grid,
    .two-grid,
    .feature-band,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        transform: none;
    }

    .hero-image {
        min-height: 320px;
    }

    .panel,
    .contact-shell,
    .feature-band,
    .service-area,
    .soft-box {
        padding: 24px;
    }
}