/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1a2e2a;
    background-color: #FAF8F4;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

/* ─── Focus ─── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0F5132; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 6px 6px; z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid #0F5132; outline-offset: 2px; }

/* ─── Tokens ─── */
:root {
    --emerald: #0F5132;
    --emerald-dark: #0A3D26;
    --emerald-light: #146943;
    --cream: #FAF8F4;
    --cream-dark: #F5F0E8;
    --gold: #C8A84E;
    --gold-light: #D4B85A;
    --charcoal: #1a2e2a;
    --gray-600: #4a5e5a;
    --gray-400: #8a9e9a;
    --gray-200: #d4e0dc;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(15, 81, 50, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 81, 50, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Typography ─── */
.accent { color: var(--emerald); }
.section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1rem;
}
.label-line {
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 540px;
    line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: .875rem 1.5rem; font-size: 1rem; }
.btn-accent {
    background: var(--emerald);
    color: var(--white);
}
.btn-accent:hover { background: var(--emerald-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
    border: 1.5px solid var(--gray-200);
    color: var(--charcoal);
}
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald); }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(15, 81, 50, 0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--charcoal);
}
.logo-mark { color: var(--emerald); }
.logo-accent { color: var(--gold); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu a {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a:not(.btn):hover { color: var(--emerald); }
.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-menu a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
}
.hamburger::before { top: 6px; }
.hamburger::after { top: 14px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 10px; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 10px; }

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0 6rem;
}
.hero-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.5rem;
}
.hero-label .label-line { width: 2rem; height: 2px; background: var(--gold); border-radius: 2px; }
.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.hero-headline .accent {
    color: var(--emerald);
    font-style: italic;
}
.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}
.stat-label {
    font-size: .8125rem;
    color: var(--gray-400);
    margin-top: .25rem;
}
.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--gray-200);
}
.hero-image {
    position: relative;
    padding-left: 2rem;
}
.hero-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-float {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    display: flex;
    align-items: center;
    gap: .375rem;
    background: var(--white);
    padding: .375rem .75rem;
    border-radius: 50px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.float-badge svg { color: var(--gold); }

/* ─── Cottages ─── */
.cottages {
    padding: 6rem 0;
    background: var(--cream-dark);
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header .label-line { margin-bottom: 0; }
.section-header .section-desc { margin-top: .75rem; }
.cottages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.cottage-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.cottage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.cottage-card.featured {
    border: 2px solid var(--gold);
}
.cottage-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .375rem .875rem;
    border-radius: 50px;
    z-index: 2;
}
.cottage-img {
    overflow: hidden;
    height: 220px;
}
.cottage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cottage-card:hover .cottage-img img { transform: scale(1.05); }
.cottage-body { padding: 1.5rem; }
.cottage-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}
.cottage-tag {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(15, 81, 50, 0.08);
    padding: .25rem .625rem;
    border-radius: 50px;
}
.cottage-capacity {
    font-size: .8125rem;
    color: var(--gray-400);
}
.cottage-name {
    font-size: 1.375rem;
    margin-bottom: .625rem;
    color: var(--charcoal);
}
.cottage-desc {
    font-size: .9375rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.cottage-features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.cottage-features li {
    font-size: .8125rem;
    color: var(--gray-600);
    background: var(--cream);
    padding: .25rem .625rem;
    border-radius: 50px;
}

/* ─── Amenities ─── */
.amenities {
    padding: 6rem 0;
    background: var(--cream);
}
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.amenities-content .section-desc { margin-bottom: 2rem; }
.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.amenity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.amenity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 81, 50, 0.08);
    border-radius: var(--radius-sm);
    color: var(--emerald);
}
.amenity-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .125rem;
}
.amenity-item p {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.55;
}
.amenities-visual {
    position: relative;
    height: 600px;
}
.amenities-img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}
.amenities-img-stack img {
    position: absolute;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.amenities-img-stack img:nth-child(1) {
    width: 70%;
    height: 55%;
    top: 0;
    right: 0;
    z-index: 1;
}
.amenities-img-stack img:nth-child(2) {
    width: 55%;
    height: 40%;
    bottom: 30%;
    left: 0;
    z-index: 2;
}
.amenities-img-stack img:nth-child(3) {
    width: 50%;
    height: 35%;
    bottom: 0;
    right: 5%;
    z-index: 1;
}

/* ─── About ─── */
.about {
    padding: 6rem 0;
    background: var(--charcoal);
    color: var(--white);
}
.about .section-label { color: var(--gold); }
.about .section-title { color: var(--white); }
.about .section-title .accent { color: var(--gold); }
.about .section-desc { color: rgba(255,255,255,0.6); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-accent-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--emerald);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: .25rem;
    box-shadow: var(--shadow-lg);
}
.about-accent-box .accent-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.about-accent-box .accent-label {
    font-size: .8125rem;
    color: rgba(255,255,255,0.75);
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.about-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: .7;
}
.value h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
}
.value p {
    font-size: .875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ─── Location ─── */
.location {
    padding: 6rem 0;
    background: var(--cream-dark);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.location-content .section-desc { margin-bottom: 2rem; }
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.location-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.location-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 81, 50, 0.08);
    border-radius: var(--radius-sm);
    color: var(--emerald);
}
.location-item strong {
    display: block;
    font-size: .9375rem;
    color: var(--charcoal);
    margin-bottom: .125rem;
}
.location-item span {
    font-size: .875rem;
    color: var(--gray-400);
}
.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
}

/* ─── CTA ─── */
.cta {
    padding: 6rem 0;
    background: var(--cream);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.cta-content .section-desc { margin-bottom: 2rem; }
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cta-phone, .cta-email {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition);
}
.cta-phone:hover, .cta-email:hover { color: var(--emerald); }
.cta-phone svg, .cta-email svg {
    color: var(--emerald);
    flex-shrink: 0;
}
.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.form-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}
.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
}
.optional { font-weight: 400; color: var(--gray-400); }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: .9375rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
    transition: border-color var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    background: var(--white);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-note {
    font-size: .8125rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 1rem;
}
.form-success {
    text-align: center;
    padding: 2rem;
}
.success-icon {
    color: var(--emerald);
    margin-bottom: 1rem;
}
.form-success h3 {
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: .75rem;
}
.form-success p {
    font-size: .9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.65);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-tagline {
    font-size: .9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
}
.site-footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-nav a {
    font-size: .9375rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: .375rem;
    font-size: .9375rem;
}
.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.newsletter-form .input-group {
    display: flex;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: .75rem 1rem;
    color: var(--white);
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    padding: .75rem 1rem;
    color: var(--gold);
    transition: background var(--transition);
}
.newsletter-form button:hover { background: rgba(255,255,255,0.05); }
.newsletter-success {
    font-size: .875rem;
    color: var(--gold);
    margin-top: .75rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .8125rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Mobile Nav ─── */
@media (max-width: 1023px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
        box-shadow: var(--shadow);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a:not(.btn) { font-size: 1.0625rem; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 5rem; }
    .hero-image { padding-left: 0; order: -1; }
    .hero-img-float { display: none; }
    .cottages-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .amenities-visual { height: 400px; order: -1; }
    .about-grid { grid-template-columns: 1fr; }
    .about-accent-box { position: relative; bottom: auto; left: auto; margin-top: 1rem; display: inline-flex; }
    .location-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .hero { min-height: auto; padding-top: 72px; }
    .hero-grid { padding: 2rem 0 4rem; }
    .hero-headline { font-size: 2rem; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .stat-divider { display: none; }
    .cottages-grid { grid-template-columns: 1fr; }
    .amenities-img-stack { height: 300px; }
    .amenities-img-stack img { position: relative; width: 100% !important; height: 200px !important; top: auto; right: auto; left: auto; bottom: auto; margin-bottom: .75rem; }
    .form-row { grid-template-columns: 1fr; }
    .cta-form-wrapper { padding: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
