/* ============================================
   THE LINKS ESTATES - FISHER ISLAND
   Ultra-Luxury Real Estate Website
   ============================================ */

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

:root {
    --gold: #b49d7a;
    --gold-light: #c9b594;
    --gold-dark: #9a8463;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --dark-bg: #111111;
    --gray: #888888;
    --gray-light: #cccccc;
    --white: #ffffff;
    --off-white: #f5f3f0;
    --cream: #faf8f5;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 40px;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: preloaderFill 2s ease forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(180, 157, 122, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 2px;
}

.logo-the {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.45em;
    color: var(--gold-light);
}

.logo-links {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--white);
}

.logo-estates {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.55em;
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-cta {
    border: 1px solid var(--gold) !important;
    padding: 10px 28px !important;
    color: var(--gold) !important;
    transition: all var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

#mobile-menu ul {
    text-align: center;
}

#mobile-menu li {
    margin: 24px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

#mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
#mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }

#mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--white);
    transition: color var(--transition);
}

#mobile-menu a:hover {
    color: var(--gold);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero-video,
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-preheading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.hero-the {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    color: var(--gold-light);
}

.hero-links {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    line-height: 1;
}

.hero-estates {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.7em;
    color: var(--gold-light);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.hero-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Fade animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

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

/* --- Sections --- */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.05em;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    color: inherit;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* --- Overview Section --- */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 0.95rem;
}

.overview-text .lead-text {
    color: var(--dark);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.overview-image {
    position: relative;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.overview-image:hover img {
    transform: scale(1.03);
}

.overview-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-short {
    height: 45vh;
    min-height: 350px;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.parallax-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.parallax-location {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* --- Residences / Homes Grid --- */
.residences-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.residences-intro .lead-text {
    color: rgba(255, 255, 255, 0.85);
}

.homes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.home-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all var(--transition);
}

.home-card:hover {
    border-color: rgba(180, 157, 122, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.home-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.home-card:hover .home-image img {
    transform: scale(1.05);
}

.home-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(180, 157, 122, 0.9);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    backdrop-filter: blur(10px);
}

.home-info {
    padding: 32px;
}

.home-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.home-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 20px;
}

.home-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.home-details span {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--gray);
    position: relative;
    padding-left: 16px;
}

.home-details span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* --- Design / Features --- */
.design-team {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding: 48px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.team-role {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.team-member h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
}

.team-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.feature h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
}

/* --- Amenities --- */
.amenity-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.amenity-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.amenity-card-reverse {
    direction: rtl;
}

.amenity-card-reverse > * {
    direction: ltr;
}

.amenity-image {
    overflow: hidden;
    position: relative;
}

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

.amenity-image:hover img {
    transform: scale(1.04);
}

.amenity-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.amenity-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--gray-light);
}

/* --- Island Section --- */
.island-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.island-text .lead-text {
    color: var(--dark);
}

.island-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

.island-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.island-map {
    overflow: hidden;
}

.island-map img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* --- Contact Section --- */
.contact-content {
    text-align: center;
}

.contact-content .lead-text {
    max-width: 700px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group select {
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b49d7a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--black);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 16px;
}

.contact-block h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.contact-block p,
.contact-block li {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.contact-block ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-block li::before {
    content: '—';
    color: var(--gold);
    margin-right: 10px;
}

/* --- Footer --- */
#footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-logo .logo-the {
    font-size: 0.5rem;
}

.footer-logo .logo-links {
    font-size: 1.8rem;
}

.footer-logo .logo-estates {
    font-size: 0.5rem;
}

.footer-tagline {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
}

.footer-legal {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .overview-grid,
    .island-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .overview-image img,
    .island-map img {
        height: 400px;
    }

    .amenity-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .amenity-card-reverse {
        direction: ltr;
    }

    .amenity-image img {
        height: 300px;
    }

    .homes-grid {
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .home-image {
        height: 260px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature {
        padding: 24px 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .overview-stats,
    .island-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number,
    .highlight-number {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .parallax-section {
        background-attachment: scroll;
        height: 50vh;
        min-height: 350px;
    }

    .parallax-short {
        height: 35vh;
        min-height: 250px;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-links {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .overview-stats,
    .island-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- Smooth scroll padding for fixed nav --- */
section[id] {
    scroll-margin-top: 80px;
}
