:root {
    --ink: #1c2d32;
    --muted: #5f6f73;
    --teal: #087f95;
    --teal-dark: #075d6d;
    --coral: #d7664d;
    --sky: #e8f5f7;
    --mist: #f6faf9;
    --line: #d7e5e6;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(12, 48, 56, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--white);
}

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

a {
    color: var(--teal-dark);
}

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

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    margin: 12px;
    padding: 10px 14px;
    clip: auto;
    background: var(--teal-dark);
    color: var(--white);
    z-index: 20;
}

.topbar {
    color: var(--white);
    background: var(--teal-dark);
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(8, 127, 149, 0.16);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-link {
    width: 132px;
    flex: 0 0 auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
    font-size: 0.96rem;
}

.main-nav a {
    position: relative;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--coral);
    transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--teal-dark);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--teal-dark);
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 64px 0;
    background: var(--sky);
}

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

.hero-copy {
    max-width: 650px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--coral);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.08;
}

h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 2.15rem;
    line-height: 1.18;
}

h3 {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-size: 1.18rem;
    line-height: 1.25;
}

.hero p,
.lead {
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    border: 0;
    border-radius: 8px;
    background: var(--teal);
    color: var(--white);
    font: 700 1rem/1.2 Arial, Helvetica, sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-1px);
}

.button.secondary {
    color: var(--teal-dark);
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button.secondary:hover,
.button.secondary:focus {
    color: var(--white);
    background: var(--coral);
}

.hero-visual {
    min-height: 430px;
    display: grid;
    align-content: center;
    gap: 22px;
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: min(330px, 78%);
    margin: 0 auto;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-facts span,
.distance-grid div {
    min-height: 86px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
    background: var(--mist);
}

.hero-facts strong,
.distance-grid strong {
    display: block;
    color: var(--teal-dark);
    font-size: 1.22rem;
}

.section {
    padding: 74px 0;
}

.section-soft {
    background: var(--mist);
}

.section-dark {
    color: var(--white);
    background: var(--teal-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-kicker,
.section-dark .notice {
    color: var(--white);
}

.section-dark .section-kicker {
    opacity: 0.8;
}

.info-panel,
.feature,
.price-box,
.form-shell {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(12, 48, 56, 0.08);
}

.info-panel {
    padding: 28px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature {
    min-height: 210px;
    padding: 22px;
}

.feature p,
.notice,
.form-note {
    color: var(--muted);
}

.section-dark .notice {
    color: rgba(255, 255, 255, 0.86);
}

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

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.price-box {
    padding: 26px;
    color: var(--ink);
}

.price-box p {
    margin: 0 0 12px;
}

.price-box p:last-child {
    margin-bottom: 0;
}

.price-box strong {
    color: var(--coral);
    font-size: 1.7rem;
}

.notice {
    margin: 24px 0 0;
}

.gallery-section {
    padding-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.gallery-item {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(12, 48, 56, 0.1);
}

.gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 456px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 11px;
    border-radius: 8px;
    background: rgba(28, 45, 50, 0.78);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.gallery-item:hover img,
.gallery-item:focus img {
    opacity: 0.9;
    transform: scale(1.025);
}

.form-layout {
    align-items: start;
}

.form-shell {
    padding: 26px;
}

.site-form {
    display: grid;
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    color: var(--teal-dark);
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: 3px solid rgba(8, 127, 149, 0.18);
    border-color: var(--teal);
}

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

.field-error {
    color: #b83a2d;
    font-size: 0.9rem;
}

.form-note {
    margin: 0;
    font-size: 0.93rem;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--mist);
}

.form-message.success {
    border-color: rgba(8, 127, 149, 0.25);
    background: rgba(8, 127, 149, 0.08);
    color: var(--teal-dark);
}

.form-message.error {
    border-color: rgba(215, 102, 77, 0.34);
    background: rgba(215, 102, 77, 0.1);
    color: #983528;
}

.honeypot {
    display: none;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

.legal-content h2 {
    margin-top: 34px;
    font-size: 1.55rem;
}

.legal-content h3 {
    margin-top: 24px;
    font-size: 1.2rem;
}

.site-footer {
    padding: 42px 0;
    color: var(--white);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.footer-logo {
    width: 116px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 1.05rem;
}

.site-footer p {
    margin: 0;
}

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

.footer-links {
    text-align: right;
}

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

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

    .gallery-featured {
        grid-column: span 2;
        min-height: 390px;
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 18px;
        padding: 7px 0;
    }

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

    .logo-link {
        width: 106px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 20px;
        background: var(--white);
        box-shadow: 0 16px 30px rgba(12, 48, 56, 0.14);
    }

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

    .main-nav a {
        padding: 12px 0;
    }

    .hero {
        min-height: 0;
        padding: 42px 0;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 54px 0;
    }

    .hero-visual {
        min-height: 0;
        padding: 24px;
    }

    .hero-facts,
    .feature-grid,
    .field-grid,
    .gallery-grid,
    .price-grid,
    .distance-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        grid-column: span 1;
        min-height: 240px;
    }

    .gallery-item {
        min-height: 210px;
    }

    .feature {
        min-height: 0;
    }

    .footer-grid,
    .footer-links {
        text-align: left;
    }
}
