/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Nunito', sans-serif;
    color: #1a1a2e;
    background: #FFFAF5;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Skip Link ── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0A2540; color: #fff;
    padding: .5rem 1rem; border-radius: 0 0 .5rem .5rem;
    z-index: 200; font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }

/* ── Section Tags ── */
.section-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .75rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: #4ECDC4;
    background: rgba(78,205,196,.1); border-radius: 2rem;
    padding: .35rem .85rem; margin-bottom: 1rem;
}
.section-tag-light { color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); }

/* ── Section Titles ── */
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #0A2540; margin-bottom: 1rem; }
.section-title-light { color: #fff; }
.section-subtitle { font-size: 1.1rem; color: #555; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: .95rem; border-radius: 2rem;
    padding: .8rem 1.75rem; transition: all .25s ease;
}
.btn-primary {
    background: #4ECDC4; color: #fff;
    box-shadow: 0 4px 15px rgba(78,205,196,.35);
}
.btn-primary:hover { background: #3dbfb0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,205,196,.45); }
.btn-secondary {
    background: transparent; color: #0A2540;
    border: 2px solid rgba(10,37,64,.2);
}
.btn-secondary:hover { border-color: #4ECDC4; color: #4ECDC4; }
.btn-small {
    font-size: .8rem; padding: .5rem 1.1rem;
    background: rgba(78,205,196,.1); color: #2a9d8f;
    border-radius: 2rem; font-weight: 700;
    transition: all .25s ease;
}
.btn-small:hover { background: #4ECDC4; color: #fff; }
.btn-light {
    background: #fff; color: #0A2540;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.btn-light:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-outline-light {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── Header ── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,250,245,.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,37,64,.06);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(10,37,64,.08); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'DM Serif Display', serif; font-size: 1.25rem;
    color: #0A2540;
}
.logo-icon { color: #0A2540; }
.logo-accent { color: #4ECDC4; }

/* ── Nav ── */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    font-size: .9rem; font-weight: 600; color: #333;
    padding: .4rem .85rem; border-radius: 2rem;
    transition: all .2s ease;
}
.nav-link:hover { color: #4ECDC4; background: rgba(78,205,196,.08); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: .5rem; z-index: 110;
}
.nav-toggle-bar {
    display: block; width: 22px; height: 2px;
    background: #0A2540; border-radius: 2px;
    transition: all .3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 0 4rem; overflow: hidden;
    background: linear-gradient(135deg, #FFFAF5 0%, #f0faf8 50%, #e8f6f4 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35;
}
.hero-blob-1 { width: 500px; height: 500px; background: #4ECDC4; top: -10%; right: -5%; }
.hero-blob-2 { width: 300px; height: 300px; background: #0A2540; bottom: 5%; left: -3%; opacity: .12; }
.hero-blob-3 { width: 200px; height: 200px; background: #ffeaa7; top: 40%; left: 30%; opacity: .2; }
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .8rem; font-weight: 700; letter-spacing: .08em;
    color: #2a9d8f; background: rgba(78,205,196,.12);
    border-radius: 2rem; padding: .4rem 1rem; margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #0A2540; margin-bottom: 1.25rem; line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.15rem; color: #555; line-height: 1.7;
    margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem; font-weight: 600; color: #444;
}
.hero-trust-item svg { color: #4ECDC4; }

/* Hero Image */
.hero-image-wrap { position: relative; }
.hero-image-main {
    border-radius: 1.5rem; overflow: hidden;
    box-shadow: 0 25px 60px rgba(10,37,64,.15);
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 6/7; }
.hero-image-accent {
    position: absolute; bottom: -1.5rem; left: -2rem;
    border-radius: 1rem; overflow: hidden;
    box-shadow: 0 15px 40px rgba(10,37,64,.2);
    border: 4px solid #FFFAF5;
}
.hero-image-accent img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.hero-card {
    position: absolute; top: 2rem; right: -1.5rem;
    background: #0A2540; color: #fff;
    border-radius: 1rem; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .75rem;
    box-shadow: 0 15px 40px rgba(10,37,64,.25);
    max-width: 220px;
}
.hero-card-icon { color: #4ECDC4; flex-shrink: 0; }
.hero-card-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.hero-card-value { font-size: .8rem; line-height: 1.4; color: #fff; }

/* ── Selection ── */
.section { padding: 6rem 0; }
.selection { background: #FFFAF5; }
.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.card {
    background: #fff; border-radius: 1.25rem; padding: 2rem;
    border: 1px solid rgba(10,37,64,.06);
    box-shadow: 0 4px 20px rgba(10,37,64,.04);
    transition: all .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(10,37,64,.1); border-color: rgba(78,205,196,.3); }
.card-icon {
    width: 56px; height: 56px; border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.card-icon-mint { background: rgba(78,205,196,.12); color: #2a9d8f; }
.card-title { font-size: 1.25rem; color: #0A2540; margin-bottom: .6rem; }
.card-desc { font-size: .95rem; color: #666; line-height: 1.65; }

/* ── About ── */
.about { background: linear-gradient(180deg, #f0faf8 0%, #FFFAF5 100%); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-image { position: relative; }
.split-image img {
    border-radius: 1.5rem; width: 100%; height: 100%;
    object-fit: cover; aspect-ratio: 7/6;
    box-shadow: 0 20px 50px rgba(10,37,64,.12);
}
.split-image-accent {
    position: absolute; inset: 1.5rem -1.5rem -1.5rem 0;
    border-radius: 1.5rem; background: #4ECDC4; opacity: .15;
    z-index: -1;
}
.split-content .section-tag { margin-bottom: 1rem; }
.split-content .section-title { margin-bottom: 1.25rem; }
.about-text { font-size: 1rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.about-stats {
    display: flex; gap: 2rem; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(10,37,64,.08);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: #0A2540; }
.stat-label { font-size: .8rem; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .06em; }

/* ── Services ── */
.services { background: #FFFAF5; }
.services-list { max-width: 780px; margin: 0 auto; }
.service-item {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(10,37,64,.06);
}
.service-item:first-child { border-top: 1px solid rgba(10,37,64,.06); }
.service-num {
    font-family: 'DM Serif Display', serif; font-size: 2rem;
    color: rgba(78,205,196,.3); line-height: 1; flex-shrink: 0;
    width: 3rem;
}
.service-title { font-size: 1.2rem; color: #0A2540; margin-bottom: .4rem; }
.service-desc { font-size: .95rem; color: #666; line-height: 1.65; }

/* ── Gallery Strip ── */
.gallery-strip {
    padding: 3rem 0; overflow: hidden;
    background: #0A2540;
}
.gallery-scroll {
    display: flex; gap: 1rem;
    animation: scrollGallery 30s linear infinite;
}
.gallery-item {
    flex-shrink: 0; border-radius: 1rem; overflow: hidden;
    width: 400px;
}
.gallery-item img { width: 100%; height: 300px; object-fit: cover; }
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 5 - 5rem)); }
}

/* ── CTA ── */
.cta { padding: 6rem 0; background: #FFFAF5; }
.cta-card {
    position: relative; border-radius: 2rem; overflow: hidden;
    background: #0A2540; padding: 4rem;
}
.cta-pattern {
    position: absolute; inset: 0; opacity: .06;
    background-image: radial-gradient(circle at 2px 2px, #4ECDC4 1px, transparent 0);
    background-size: 24px 24px; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content .section-title { color: #fff; margin-bottom: 1rem; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Visit ── */
.visit { background: linear-gradient(180deg, #FFFAF5 0%, #f0faf8 100%); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.visit-info { display: flex; flex-direction: column; gap: 1rem; }
.visit-card {
    display: flex; align-items: flex-start; gap: 1rem;
    background: #fff; border-radius: 1rem; padding: 1.25rem 1.5rem;
    border: 1px solid rgba(10,37,64,.06);
    box-shadow: 0 4px 15px rgba(10,37,64,.04);
    transition: all .3s ease;
}
.visit-card:hover { border-color: rgba(78,205,196,.3); transform: translateX(4px); }
.visit-card-icon { color: #4ECDC4; flex-shrink: 0; margin-top: .15rem; }
.visit-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: .25rem; }
.visit-value { font-size: .95rem; color: #333; line-height: 1.6; }
.visit-value a { color: #2a9d8f; font-weight: 700; }
.visit-value a:hover { text-decoration: underline; }
.visit-map {
    border-radius: 1.5rem; overflow: hidden;
    box-shadow: 0 15px 40px rgba(10,37,64,.1);
    aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
.footer {
    background: #0A2540; color: rgba(255,255,255,.6);
    padding: 3rem 0;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
    font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #fff;
    display: flex; align-items: center; gap: .5rem;
}
.footer-logo .logo-accent { color: #4ECDC4; }
.footer-copy { font-size: .85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #4ECDC4; }

/* ── Animations ── */
[data-animate] {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-wrap { max-width: 480px; margin: 0 auto; }
    .hero-card { right: 0; }
    .split { grid-template-columns: 1fr; }
    .split-image { max-width: 480px; margin: 0 auto; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 280px; background: #FFFAF5;
        flex-direction: column; align-items: stretch;
        padding: 6rem 1.5rem 2rem; gap: .25rem;
        box-shadow: -10px 0 30px rgba(10,37,64,.1);
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 105;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { padding: .75rem 1rem; font-size: 1rem; border-radius: .75rem; }
    .nav-link:hover { background: rgba(78,205,196,.1); }
    .nav-menu li:last-child { margin-top: 1rem; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-image-accent { left: -1rem; bottom: -1rem; }
    .hero-card { right: -1rem; top: 1rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .section { padding: 4rem 0; }
    .gallery-item { width: 280px; }
    .gallery-item img { height: 200px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: center; }
    .about-stats { flex-direction: column; gap: 1rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
