/* ============================================
   3Ponds Primitive Campsite — Stylesheet
   Charcoal + Coral | Playfair Display + Inter
   ============================================ */

/* ── 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, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3D405B;
    background-color: #F7F5F0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── Utility ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #E07A5F;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: #3D405B;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E07A5F;
    margin-bottom: 16px;
}

.section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

.lead {
    font-size: 1.125rem;
    color: #5C5F7A;
    max-width: 560px;
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-coral {
    background: #E07A5F;
    color: #fff;
    border-color: #E07A5F;
}

.btn-coral:hover {
    background: #C9684D;
    border-color: #C9684D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: #3D405B;
    border-color: #3D405B;
}

.btn-outline-dark:hover {
    background: #3D405B;
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 64, 91, 0.08);
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3D405B;
}

.logo-icon {
    color: #E07A5F;
}

.logo-light {
    color: #fff;
}

.logo-light .logo-icon {
    color: #F4A261;
}

/* ── Nav ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #3D405B;
    border-radius: 2px;
    transition: all 0.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);
}

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

.nav-menu li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3D405B;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu li a:not(.btn):hover {
    color: #E07A5F;
}

.nav-menu li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E07A5F;
    transition: width 0.25s ease;
}

.nav-menu li a:not(.btn):hover::after {
    width: 100%;
}

/* ── Mobile Nav ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: #F7F5F0;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(61, 64, 91, 0.15);
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu li a {
        font-size: 1.125rem;
    }

    .nav-menu li a:not(.btn)::after {
        display: none;
    }
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3D405B;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61, 64, 91, 0.4) 0%,
        rgba(61, 64, 91, 0.6) 50%,
        rgba(61, 64, 91, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F4A261;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: #F4A261;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section {
    padding: 100px 0;
}

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

.section-header .section-headline {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── About ── */
.about {
    background: #F7F5F0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(61, 64, 91, 0.15);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-text .section-headline {
    margin-bottom: 20px;
}

.about-text p {
    color: #5C5F7A;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(61, 64, 91, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E07A5F;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #5C5F7A;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        max-width: 500px;
    }
}

/* ── Experience ── */
.experience {
    background: #3D405B;
    color: #fff;
}

.experience .section-eyebrow {
    color: #F4A261;
}

.experience .section-headline {
    color: #fff;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.card-icon {
    padding: 32px 32px 0;
    color: #F4A261;
}

.experience-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 32px 12px;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 32px 24px;
    line-height: 1.7;
}

.experience-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Amenities ── */
.amenities {
    background: #F7F5F0;
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.amenities-text .section-headline {
    margin-bottom: 20px;
}

.amenities-text p {
    color: #5C5F7A;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.0625rem;
    color: #3D405B;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(61, 64, 91, 0.08);
}

.amenity-check {
    color: #E07A5F;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .amenities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Photo Break ── */
.photo-break {
    background: #3D405B;
    padding: 0;
}

.photo-break-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
}

.photo-item {
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item:nth-child(1) {
    grid-row: 1 / 3;
}

.photo-item:nth-child(4) {
    grid-row: 1 / 3;
}

@media (max-width: 900px) {
    .photo-break-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .photo-item,
    .photo-item:nth-child(1),
    .photo-item:nth-child(4) {
        grid-row: auto;
    }

    .photo-item img {
        height: 250px;
    }
}

@media (max-width: 500px) {
    .photo-break-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Location ── */
.location {
    background: #F7F5F0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location-details {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.location-details p {
    color: #5C5F7A;
}

.location-details strong {
    color: #3D405B;
    font-size: 1.25rem;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #E07A5F;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #C9684D;
}

.location-note {
    font-size: 0.9375rem;
    color: #5C5F7A;
    font-style: italic;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 64, 91, 0.12);
    aspect-ratio: 4/3;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Contact ── */
.contact {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-headline {
    margin-bottom: 20px;
}

.contact-info p {
    color: #5C5F7A;
    margin-bottom: 32px;
}

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

.contact-direct-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    background: #F7F5F0;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-direct-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 64, 91, 0.1);
}

.contact-direct-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E07A5F;
}

.contact-direct-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #3D405B;
}

/* ── Form ── */
.contact-form-wrap {
    background: #F7F5F0;
    border-radius: 12px;
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3D405B;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 14px 16px;
    border: 2px solid rgba(61, 64, 91, 0.15);
    border-radius: 8px;
    background: #fff;
    color: #3D405B;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #E07A5F;
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-note {
    font-size: 0.8125rem;
    color: #5C5F7A;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success svg {
    color: #4CAF50;
}

.form-success h3 {
    font-size: 1.75rem;
    color: #3D405B;
}

.form-success p {
    color: #5C5F7A;
    max-width: 360px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}

/* ── Footer ── */
.site-footer {
    background: #2A2C3D;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9375rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #F4A261;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion: ensure everything is visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
