:root {
    --bg-top: #fef7ee;
    --bg-mid: #eaf7f8;
    --bg-bottom: #fff3e1;
    --surface: #ffffff;
    --surface-soft: #f5fbfc;
    --ink: #1c2d3f;
    --ink-soft: #4e647a;

    --brand-900: #0f4850;
    --brand-700: #1a6e79;
    --brand-500: #2895a2;

    --accent-600: #f07a2c;
    --accent-500: #ff9550;
    --accent-300: #ffd3a8;

    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 999px;

    --shadow-soft: 0 20px 44px rgba(15, 72, 80, 0.12);
    --shadow-pop: 0 18px 36px rgba(240, 122, 44, 0.28);

    --font-heading: "DM Serif Display", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.58;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 52%, var(--bg-bottom) 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    width: min(36vw, 360px);
    aspect-ratio: 1;
    opacity: 0.45;
    pointer-events: none;
    filter: blur(2px);
}

body::before {
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(40, 149, 162, 0.45) 0%, rgba(40, 149, 162, 0) 72%);
}

body::after {
    bottom: -140px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 149, 80, 0.4) 0%, rgba(255, 149, 80, 0) 72%);
}

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.08;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-900);
    background: rgba(40, 149, 162, 0.14);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.8rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(28, 45, 63, 0.08);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 0.95rem 0;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    color: var(--brand-900);
    line-height: 1;
}

.logo span {
    margin-top: 0.25rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-500);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav > a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.site-nav > a:not(.btn):hover {
    color: var(--brand-700);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(130deg, var(--accent-600), var(--accent-500));
    box-shadow: var(--shadow-pop);
    padding: 0.78rem 1.22rem;
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(130deg, var(--brand-700), var(--brand-500));
    box-shadow: 0 16px 30px rgba(26, 110, 121, 0.24);
    padding: 0.85rem 1.4rem;
}

.btn-outline {
    color: var(--brand-900);
    border: 2px solid rgba(15, 72, 80, 0.34);
    background: rgba(255, 255, 255, 0.52);
    padding: 0.72rem 1.22rem;
}

.btn-nav {
    padding: 0.72rem 1.1rem;
    font-size: 0.88rem;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hero {
    padding: clamp(3rem, 6vw, 4.8rem) 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.4rem, 3vw, 2.2rem);
    align-items: center;
}

.hero-copy h1 {
    margin-top: 0.9rem;
    font-size: clamp(2.05rem, 5vw, 3.45rem);
    color: var(--brand-900);
}

.hero-text {
    margin-top: 1rem;
    max-width: 62ch;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 1.4rem;
}

.hero-list {
    margin-top: 1.5rem;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--brand-500), var(--accent-500));
}

.hero-card {
    background: linear-gradient(170deg, var(--surface) 0%, #fff8f0 100%);
    border-radius: var(--radius-xl);
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 72, 80, 0.1);
}

.hero-card h2 {
    color: var(--brand-900);
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.hero-card dl {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.45rem;
}

.hero-card dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(15, 72, 80, 0.1);
}

.hero-card dt {
    font-weight: 700;
    color: var(--ink-soft);
}

.hero-card dd {
    font-weight: 800;
    color: var(--brand-900);
}

.hero-note {
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.pricing-section,
.contact-section {
    padding: clamp(2.8rem, 6vw, 4.8rem) 0;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.8rem;
}

.section-heading h2 {
    margin-top: 0.82rem;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--brand-900);
}

.section-heading p {
    margin-top: 0.72rem;
    color: var(--ink-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.price-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.2rem 1.15rem;
    border: 1px solid rgba(15, 72, 80, 0.1);
    box-shadow: 0 10px 22px rgba(15, 72, 80, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 72, 80, 0.13);
}

.price-card h3 {
    font-size: 1.55rem;
    color: var(--brand-900);
}

.service-desc {
    margin-top: 0.2rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.price-card ul {
    margin-top: 0.95rem;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.price-card li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.85rem;
    border-bottom: 1px dashed rgba(15, 72, 80, 0.14);
    padding-bottom: 0.5rem;
}

.price-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.price-card li strong {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.price-card li span {
    color: var(--brand-900);
    font-weight: 800;
}

.price-card.add-ons {
    background: linear-gradient(175deg, #fff9f1 0%, #fff4e5 100%);
    border-color: rgba(240, 122, 44, 0.28);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-panel {
    border-radius: var(--radius-xl);
    padding: clamp(1.15rem, 2.6vw, 1.6rem);
    background: linear-gradient(165deg, var(--brand-900) 0%, var(--brand-700) 60%, var(--brand-500) 100%);
    color: #f7fbff;
    box-shadow: 0 18px 35px rgba(15, 72, 80, 0.26);
}

.contact-panel .eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #f9fdff;
}

.contact-panel h2 {
    margin-top: 0.9rem;
    color: #fff;
    font-size: clamp(1.6rem, 3.8vw, 2.3rem);
}

.contact-panel p {
    margin-top: 0.72rem;
    color: rgba(247, 251, 255, 0.88);
}

.contact-points {
    margin-top: 1rem;
    list-style: none;
    display: grid;
    gap: 0.46rem;
}

.contact-points li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(247, 251, 255, 0.96);
}

.contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--accent-300);
}

.contact-panel .btn-primary {
    margin-top: 1.2rem;
    width: 100%;
    font-size: 1rem;
}

.form-wrap {
    background: rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 72, 80, 0.1);
    padding: clamp(1rem, 2.5vw, 1.4rem);
    box-shadow: var(--shadow-soft);
}

.form-wrap h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--brand-900);
}

.contact-intro {
    margin-top: 0.48rem;
    color: var(--ink-soft);
}

.contact-form {
    margin-top: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
}

.form-field {
    display: block;
}

.form-field span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.36rem;
}

.form-field input,
.form-field select {
    width: 100%;
    border: 1px solid rgba(28, 45, 63, 0.18);
    border-radius: var(--radius-md);
    padding: 0.72rem 0.78rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(40, 149, 162, 0.15);
    outline: none;
}

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

.service-fieldset {
    margin-top: 0.95rem;
    border: 1px solid rgba(28, 45, 63, 0.14);
    border-radius: var(--radius-lg);
    padding: 0.95rem;
}

.service-fieldset legend {
    padding: 0 0.4rem;
    font-weight: 800;
    color: var(--brand-900);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 0.66rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(28, 45, 63, 0.14);
    background: var(--surface);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.service-option:hover {
    transform: translateY(-1px);
}

.service-option:has(input:checked) {
    border-color: rgba(240, 122, 44, 0.6);
    background: rgba(255, 149, 80, 0.12);
}

.service-option input {
    accent-color: var(--accent-600);
}

.service-option span {
    font-weight: 700;
    color: var(--ink);
}

.service-option em {
    display: inline-block;
    margin-left: 0.25rem;
    font-style: normal;
    font-weight: 600;
    color: var(--ink-soft);
}

.quote-summary {
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    padding: 0.95rem 1rem;
    background: linear-gradient(160deg, #edf8fa 0%, #fff8ed 100%);
    border: 1px solid rgba(15, 72, 80, 0.12);
}

.quote-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}

.quote-total {
    margin-top: 0.16rem;
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-900);
    line-height: 1;
}

.quote-details {
    margin-top: 0.25rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.contact-form .btn-secondary {
    margin-top: 0.92rem;
    width: 100%;
    padding-block: 0.96rem;
    font-size: 1rem;
}

.form-status {
    min-height: 1.45rem;
    margin-top: 0.72rem;
    font-weight: 700;
}

.site-footer {
    margin-top: 0.3rem;
    background: var(--brand-900);
    color: rgba(255, 255, 255, 0.94);
    text-align: center;
    padding: 1.9rem 0;
}

.site-footer a {
    color: var(--accent-300);
    font-weight: 700;
}

.hero-copy,
.hero-card,
.section-heading,
.price-card,
.contact-panel,
.form-wrap {
    animation: fadeUp 0.65s ease both;
}

.hero-card {
    animation-delay: 0.08s;
}

.price-card:nth-child(2) {
    animation-delay: 0.08s;
}

.price-card:nth-child(3) {
    animation-delay: 0.16s;
}

.form-wrap {
    animation-delay: 0.08s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-card {
        max-width: 580px;
    }
}

@media (max-width: 820px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .site-nav > a:not(.btn) {
        padding: 0.2rem 0;
    }

    .pricing-grid,
    .form-grid,
    .service-options {
        grid-template-columns: 1fr;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }

    .hero-copy,
    .hero-card,
    .section-heading,
    .price-card,
    .contact-panel,
    .form-wrap {
        animation: none;
    }
}
