:root {
    --bg: #f6f8f4;
    --bg-soft: #edf5f3;
    --surface: rgba(255, 255, 255, 0.66);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --card: rgba(12, 125, 116, 0.06);
    --text: #142033;
    --muted: #5b687c;
    --line: rgba(20, 32, 51, 0.1);
    --primary: #17a398;
    --primary-strong: #0f7f77;
    --accent: #ffb56b;
    --shadow: 0 12px 30px rgba(48, 72, 103, 0.05);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(23, 163, 152, 0.06), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(255, 181, 107, 0.05), transparent 24%),
        linear-gradient(180deg, #f8fbf8 0%, #f4f7f4 52%, #eef4f2 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

body::before {
    display: none;
}

body::after {
    display: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    z-index: 1;
}

.section {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.hero.section {
    width: 100%;
    margin: 0;
}

.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 32px), 1420px);
    margin: 0 auto;
    padding: 18px 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 40px rgba(32, 49, 72, 0.06);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.topbar.is-scrolled {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(20, 32, 51, 0.08);
    box-shadow: 0 18px 46px rgba(32, 49, 72, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 228px;
    height: 110px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text-group {
    display: grid;
    gap: 4px;
}

.brand-text {
    font-size: 1.14rem;
    line-height: 1;
}

.brand-subtext {
    font-family: "Manrope", sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text);
}

.nav a {
    position: relative;
    transition: color 180ms ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--text);
}

.nav a.is-current {
    color: var(--primary-strong);
}

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

.menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-toggle-icon {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 12px;
}

.menu-toggle-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease, bottom 220ms ease, opacity 220ms ease;
}

.menu-toggle-icon span:first-child {
    top: 1px;
}

.menu-toggle-icon span:last-child {
    bottom: 1px;
}

.topbar.is-menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(20, 32, 51, 0.12);
    box-shadow: 0 8px 24px rgba(32, 49, 72, 0.08);
}

.topbar.is-menu-open .menu-toggle-icon span:first-child {
    top: 5px;
    transform: rotate(45deg);
}

.topbar.is-menu-open .menu-toggle-icon span:last-child {
    bottom: 5px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.section {
    padding: 124px 0;
}

.hero {
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-copy,
.trust-strip,
.service-card,
.package-card,
.addon-card,
.timeline-step,
.highlight-box,
.faq-card,
.contact-form {
    border: 1px solid rgba(20, 32, 51, 0.06);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow);
}

.hero-stage {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #dfe6e2;
    box-shadow: none;
}

.hero-copy {
    position: absolute;
    left: clamp(28px, 5vw, 72px);
    bottom: clamp(42px, 8vw, 84px);
    z-index: 2;
    max-width: 720px;
    padding: 0;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: transparent;
    --hero-shift-y: var(--hero-copy-shift, 0px);
}

.hero-image-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 0;
    background: #eef3f1;
}

.hero-image-shell::before {
    content: "";
    position: absolute;
    inset: -4%;
    background-image: url("assets/hero.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(0, calc(var(--hero-image-shift, 0px) + var(--parallax-y, 0px)), 0) scale(var(--hero-image-scale, 1.08));
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.76) 0%, rgba(8, 14, 22, 0.46) 34%, rgba(8, 14, 22, 0.16) 58%, rgba(8, 14, 22, 0.02) 84%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.12), rgba(8, 14, 22, 0.18));
    opacity: var(--hero-overlay-opacity, 1);
}

.hero-inquiry-card {
    position: absolute;
    top: 124px;
    right: 48px;
    z-index: 2;
    width: min(340px, calc(100% - 48px));
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 34px rgba(18, 28, 42, 0.08);
    backdrop-filter: blur(14px);
    --hero-shift-y: var(--hero-card-shift, 0px);
}

.hero-inquiry-card h2 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.eyebrow,
.package-tier,
.card-kicker,
.mini-title {
    margin: 0 0 12px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-eyebrow,
.hero-copy h1,
.hero-copy p {
    color: #ffffff;
}

h1,
h2,
h3,
strong {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    line-height: 0.92;
}

h1 {
    max-width: 12ch;
    font-size: clamp(4.3rem, 7vw, 7.2rem);
    letter-spacing: -0.05em;
}

h2 {
    max-width: 14ch;
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

p,
li,
input,
select,
textarea {
    line-height: 1.7;
}

.hero-text,
.section-heading p,
.highlight-copy p,
.contact-copy p,
.service-card p,
.faq-card p,
.timeline-step p,
.addon-card p,
.trust-strip p {
    color: var(--muted);
}

.hero-text {
    max-width: 52ch;
    margin: 26px 0 38px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-strong) 0%, var(--primary) 100%);
    box-shadow: 0 16px 34px rgba(23, 163, 152, 0.22);
}

.button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-card-button {
    width: 100%;
}

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

.hero-inquiry-list li {
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
    color: var(--muted);
}

.hero-scroll-cue {
    position: absolute;
    left: clamp(28px, 5vw, 72px);
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.86);
    --hero-shift-y: var(--hero-scroll-shift, 0px);
}

.hero-scroll-cue span {
    display: inline-flex;
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
    transform-origin: left;
    animation: scrollCue 1.8s ease-in-out infinite;
}

.hero-scroll-cue small {
    font: inherit;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

@keyframes scrollCue {
    0%,
    100% {
        transform: scaleX(0.55);
        opacity: 0.6;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.package-card ul,
.highlight-box ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.package-card li,
.highlight-box li {
    position: relative;
    padding: 11px 14px;
    border-radius: 16px;
    border: 1px solid rgba(20, 32, 51, 0.05);
    background: rgba(255, 255, 255, 0.46);
    color: var(--muted);
}

.package-card li::before,
.highlight-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: calc(100% - 32px);
    border-radius: 99px;
    background: linear-gradient(180deg, var(--primary), transparent);
}

.card-label {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: #7a4300;
    background: rgba(255, 181, 107, 0.3);
    font-size: 0.8rem;
    font-weight: 800;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.trust-strip div {
    padding-top: 24px;
    border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.two-column,
.split-highlight,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 68px;
    align-items: start;
}

.service-grid,
.faq-grid,
.addon-grid,
.package-grid,
.timeline {
    display: grid;
    gap: 26px;
}

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

.service-card,
.faq-card,
.addon-card,
.timeline-step,
.highlight-box,
.contact-form {
    padding: 42px;
    border-radius: 26px;
}

.service-card h3,
.faq-card h3,
.addon-card h3,
.timeline-step h3,
.highlight-box h3 {
    margin-bottom: 12px;
}

.package-section .section-heading {
    max-width: 680px;
    margin-bottom: 44px;
}

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

.package-card {
    padding: 42px;
    border-radius: 28px;
}

.package-card h3 {
    margin: 0 0 18px;
}

.package-price {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.45rem;
    line-height: 1;
    color: var(--accent);
}

.package-card.featured {
    transform: none;
    background: rgba(248, 252, 251, 0.96);
    border-color: rgba(23, 163, 152, 0.18);
}

.addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
}

.process-section .section-heading,
.faq-section .section-heading {
    margin-bottom: 42px;
}

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

.timeline-step span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #7a4300;
    background: linear-gradient(135deg, rgba(255, 181, 107, 0.8), #ffe2c0);
    font-weight: 800;
}

.highlight-copy {
    padding: 0;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.78);
}

.contact-notes {
    display: grid;
    gap: 28px;
    margin-top: 40px;
}

.contact-notes div {
    padding: 0 0 18px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
    background: transparent;
}

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

.contact-form label {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--text);
    border: 1px solid rgba(20, 32, 51, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(23, 163, 152, 0.2);
    border-color: rgba(23, 163, 152, 0.42);
}

.contact-form button,
.form-note {
    grid-column: 1 / -1;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 12;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 22px rgba(23, 163, 152, 0.26);
}

.mini-title {
    margin-bottom: 6px;
}

[data-reveal] {
    --reveal-y: 24px;
    --parallax-y: 0px;
    --hero-shift-y: 0px;
    --reveal-scale: 0.985;
    opacity: 0;
    transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y) + var(--hero-shift-y)), 0) scale(var(--reveal-scale));
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    --reveal-y: 0px;
    --reveal-scale: 1;
}

[data-parallax] {
    will-change: transform;
}

@media (max-width: 1080px) {
    .hero,
    .two-column,
    .split-highlight,
    .contact-section,
    .package-grid,
    .addon-grid,
    .timeline,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 100svh;
    }

    .hero-copy {
        left: 40px;
        bottom: 48px;
        max-width: 560px;
    }

    .hero-inquiry-card {
        right: 32px;
        top: 108px;
        width: 300px;
    }
}

@media (max-width: 860px) {
    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        position: fixed;
        top: 92px;
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-width: 0;
        gap: 2px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 18px 48px rgba(32, 49, 72, 0.12);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.985);
        transition: opacity 220ms ease, transform 240ms ease, visibility 240ms ease;
        z-index: 35;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav a {
        padding: 12px 8px;
        border-bottom: 1px solid rgba(20, 32, 51, 0.06);
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 220ms ease, transform 220ms ease, color 180ms ease;
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.is-open a:nth-child(1) {
        transition-delay: 40ms;
    }

    .nav.is-open a:nth-child(2) {
        transition-delay: 80ms;
    }

    .nav.is-open a:nth-child(3) {
        transition-delay: 120ms;
    }

    .nav.is-open a:nth-child(4) {
        transition-delay: 160ms;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 30;
        opacity: 0;
        pointer-events: none;
        background: rgba(14, 22, 34, 0.18);
        backdrop-filter: blur(10px);
        transition: opacity 220ms ease;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .service-card,
    .package-card,
    .addon-card,
    .timeline-step,
    .highlight-box,
    .faq-card,
    .contact-form {
        padding: 20px;
    }

    .service-grid,
    .faq-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 100svh;
    }

    .hero-copy {
        top: auto;
        left: 28px;
        right: 28px;
        bottom: 72px;
        max-width: none;
    }

    .hero-inquiry-card {
        display: none;
    }

    .hero-scroll-cue {
        left: 28px;
        bottom: 28px;
    }

    .brand-text-group {
        display: none;
    }
}

@media (max-width: 640px) {
    .section {
        width: min(calc(100% - 24px), var(--container));
    }

    .topbar {
        width: min(calc(100% - 20px), 1420px);
        gap: 14px;
        padding: 14px 18px;
    }

    .brand-mark {
        width: 176px;
        height: 84px;
    }

    .hero {
        padding-top: 0;
    }

    .hero-stage {
        min-height: 100svh;
        border-radius: 0;
    }

    .hero-copy,
    .hero-scroll-cue {
        left: 20px;
        right: 20px;
    }

    .hero-copy {
        bottom: 44px;
    }

    .hero-scroll-cue {
        display: none;
    }

    .button {
        width: 100%;
    }

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

    .section {
        padding: 92px 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}