:root {
    --navy-900: #081a30;
    --navy-800: #0d2746;
    --ocean-700: #0d4f7a;
    --ocean-500: #2f6f9c;
    --ivory: #f8f7f3;
    --white: #ffffff;
    --gold: #c4a46a;
    --gold-soft: #d9bc87;
    --gray-100: #f1f4f7;
    --gray-300: #d4dbe3;
    --gray-600: #617386;
    --text-dark: #13263d;
    --shadow-soft: 0 18px 40px rgba(8, 26, 48, 0.12);
    --shadow-hover: 0 24px 50px rgba(8, 26, 48, 0.18);
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 34px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f4f8 100%);
    line-height: 1.65;
}

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

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

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

h1, h2, h3, h4 {
    margin: 0 0 1rem;
    line-height: 1.2;
    color: var(--navy-900);
}

h1, h2 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.2px;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.3rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: #344b64;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-soft {
    background: linear-gradient(120deg, #f7f9fc 0%, #edf2f7 100%);
}

.section-dark {
    color: var(--white);
    background: radial-gradient(circle at top right, #174972 0%, #0b233f 55%, #081a30 100%);
}

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

.section-dark .card h3 {
    color: var(--navy-900);
}

.section-dark .card p {
    color: #344b64;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.45rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.93rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    border: 1px solid transparent;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #2e2414;
    box-shadow: 0 12px 24px rgba(196, 164, 106, 0.32);
}

.btn-gold:hover {
    box-shadow: 0 16px 32px rgba(196, 164, 106, 0.42);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #122f52;
    box-shadow: var(--shadow-hover);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(8, 26, 48, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
    background: rgba(8, 26, 48, 0.88);
    box-shadow: 0 12px 30px rgba(5, 16, 32, 0.4);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(140deg, #d8bc89 0%, #9f7a3f 100%);
    color: #1d2b3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.brand-text strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.25px;
    color: var(--white);
}

.brand-text small {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold-soft);
    transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
}

.mobile-nav {
    display: none;
    padding: 0 1.25rem 1.25rem;
    background: rgba(8, 26, 48, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
    display: grid;
    gap: 0.75rem;
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero {
    min-height: calc(100vh - 84px);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 17, 34, 0.82) 10%, rgba(10, 36, 64, 0.58) 55%, rgba(10, 44, 70, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-content h1,
.hero-content p {
    color: var(--white);
}

.hero-actions {
    margin-top: 1.7rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1.4rem;
}

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

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

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-media {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 1.5rem 1.4rem;
}

.price {
    margin: 0.4rem 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
}

.price span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.meta span {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ocean-700);
    background: #e8f2f8;
    padding: 0.35rem 0.62rem;
    border-radius: 999px;
}

.split-highlight {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.3rem;
    align-items: center;
}

.image-panel {
    min-height: 500px;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-hover);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.stats strong {
    display: block;
    font-size: 1.7rem;
    color: var(--navy-900);
}

.stats small {
    color: var(--gray-600);
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-list .item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.05rem 1.1rem;
    box-shadow: 0 10px 26px rgba(8, 26, 48, 0.07);
}

.testimonial {
    position: relative;
    padding: 1.7rem 1.5rem;
}

.testimonial p {
    font-size: 0.98rem;
}

.testimonial strong {
    color: var(--navy-800);
}

.cta-panel {
    background: linear-gradient(125deg, #0f3155 0%, #143f67 45%, #0f2b47 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(2.2rem, 5vw, 4rem);
    box-shadow: var(--shadow-hover);
}

.cta-panel h2,
.cta-panel p {
    color: var(--white);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.5rem;
}

.form-card,
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--navy-800);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    font: inherit;
    margin-bottom: 0.9rem;
    background: #fbfcfd;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--ocean-500);
    box-shadow: 0 0 0 3px rgba(47, 111, 156, 0.15);
}

.map-placeholder {
    min-height: 260px;
    border-radius: var(--radius-md);
    background: linear-gradient(130deg, #d9e7f4 0%, #c6d8ea 100%);
    border: 1px dashed #95afc8;
    display: grid;
    place-items: center;
    color: #375979;
    font-weight: 600;
}

.legal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.6rem, 4vw, 2.5rem);
}

.legal h3 {
    margin-top: 1.8rem;
}

.site-footer {
    margin-top: 4rem;
    background: #061627;
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    padding: 4rem 0 2.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.6rem;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin: 0.45rem 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.footer-grid a:hover {
    color: var(--gold-soft);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .split-highlight {
        grid-template-columns: 1fr;
    }

    .image-panel {
        min-height: 380px;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 1.5rem, var(--container));
    }

    .section {
        padding: 3.2rem 0;
    }

    .hero {
        min-height: 72vh;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .contact-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .card-media {
        height: 210px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 3rem;
    }
}
