@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Manrope:wght@300;400;500&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #FAFCFE; /* Very pale icy blue */
    color: #5A6B7C; /* Warm slate gray */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #243B55; /* Deep ocean blue */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* --- Layout System --- */

/* The required container class */
.sky-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

section {
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    width: 100%;
}

/* --- Typography Utilities --- */
.text-gold { color: #C5A059; }
.text-serif { font-family: 'Cormorant Garamond', serif; }
.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #87CEEB; /* Sky Blue */
    margin-bottom: 1rem;
    display: block;
}

/* --- Header / Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 252, 254, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 59, 85, 0.05);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: #243B55;
    font-weight: 600;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    color: #5A6B7C;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #243B55;
}

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

/* Mobile menu toggle placeholder */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 180px; /* Account for fixed header */
    padding-bottom: clamp(6rem, 10vw, 10rem);
    background: radial-gradient(circle at 50% 0%, #E6F0F8 0%, #FAFCFE 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: #243B55;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5A6B7C;
    margin-bottom: 2.5rem;
    border-left: 2px solid #C5A059;
    padding-left: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 200px 200px 0 0; /* Arch shape */
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}

.btn-primary {
    background-color: #243B55;
    color: #fff;
    border: 1px solid #243B55;
}

.btn-primary:hover {
    background-color: transparent;
    color: #243B55;
}

.btn-secondary {
    background-color: transparent;
    color: #243B55;
    border: 1px solid rgba(36, 59, 85, 0.2);
}

.btn-secondary:hover {
    border-color: #C5A059;
    color: #C5A059;
}

/* --- Feature Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(36, 59, 85, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(135, 206, 235, 0.15);
}

.card-icon {
    font-size: 2rem;
    color: #87CEEB;
    margin-bottom: 1.5rem;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 0.95rem;
    color: #6b7c8d;
    margin-bottom: 0;
}

/* --- Stats Row --- */
.stats-section {
    background-color: #F0F4F8;
    border-top: 1px solid rgba(36, 59, 85, 0.05);
    border-bottom: 1px solid rgba(36, 59, 85, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #243B55;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #87CEEB;
}

/* --- Generic Content --- */
.content-section {
    background-color: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-lead {
    font-size: 1.25rem;
    color: #243B55;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.4;
}

/* --- CTA Band --- */
.cta-section {
    background-color: #243B55;
    color: #fff;
    text-align: center;
}

.cta-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-text {
    color: #AABBCB;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.btn-cta {
    background-color: #C5A059;
    color: #fff;
    border: none;
}

.btn-cta:hover {
    background-color: #fff;
    color: #C5A059;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(36, 59, 85, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    color: #243B55;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: #5A6B7C;
    font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
    background-color: #1A2B3D;
    color: #AABBCB;
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.footer-col-title {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: #C5A059;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6B7C8D;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-grid, .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1; /* Image first on mobile */
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-list {
        display: none; /* Hide nav on small screens */
    }
    
    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
