/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Natural & Equestrian */
    --forest-green: #2F4F2F;
    --saddle-brown: #8B5E3C;
    --gold-accent: #C9A66B;
    --cream: #F4F1E9;
    --tan: #D2B48C;
    
    /* Extended Palette */
    --green-dark: #1e3a1e;
    --green-light: #4a7c4a;
    --brown-dark: #6b4529;
    --brown-light: #a67c52;
    --gold-light: #e0c085;
    
    /* Neutral Colors */
    --text-dark: #2c2c2c;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --border-color: #d4c4b0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(47, 79, 47, 0.1);
    --shadow: 0 4px 16px rgba(47, 79, 47, 0.15);
    --shadow-lg: 0 8px 32px rgba(47, 79, 47, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--forest-green);
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    background: rgba(244, 241, 233, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--tan);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--forest-green);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo .tagline {
    font-size: 0.8rem;
    color: var(--saddle-brown);
    margin: 0.25rem 0 0 0;
    font-weight: 400;
    font-style: italic;
    font-family: 'Merriweather', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item-dropdown > a::after {
    /* keep underline hover, arrow handled via pseudo on wrapper */
}

.nav-item-dropdown::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text-medium);
    border-bottom: 2px solid var(--text-medium);
    transform: rotate(45deg);
    display: inline-block;
    margin-left: -0.4rem;
    margin-bottom: 1px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-item-dropdown:hover::after {
    transform: rotate(225deg);
    border-color: var(--forest-green);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: var(--bg-white);
    padding: 0.5rem 0.75rem 0.75rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    min-width: 230px;
    display: none;
    z-index: 1100;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--forest-green);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: var(--green-dark);
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-image-bg .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 166, 107, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(210, 180, 140, 0.08) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 680px;
    min-width: 0;
    margin: 0 auto;
    padding: 1rem 1.5rem 1.15rem;
    animation: fadeInUp 1s ease-out;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
    font-family: 'Merriweather', serif;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.04em;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.45;
}

.hero-content .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
    .hero-image-bg .hero-image {
        object-fit: cover;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--forest-green);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--forest-green);
    font-family: 'Playfair Display', serif;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold-accent);
    border-radius: 50%;
    border: 2px solid var(--cream);
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.about-text .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--forest-green);
    font-weight: 600;
}

/* Farm videos */
.farm-videos {
    background: var(--cream);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.farm-videos-intro {
    max-width: 640px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
}

.farm-moments-player {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--tan);
    box-shadow: var(--shadow-md);
}

.farm-moments-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.farm-moments-video.is-active {
    opacity: 1;
}

/* Freedom Fields Teaser (Home) */
.freedom-teaser {
    background: var(--cream);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.freedom-teaser-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: stretch;
}

.freedom-teaser-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--forest-green);
}

.freedom-teaser-text .lead {
    margin-bottom: 1.5rem;
}

.freedom-teaser-benefits {
    list-style: none;
    margin-bottom: 1.75rem;
}

.freedom-teaser-benefits li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.freedom-teaser-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--saddle-brown);
}

.freedom-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.text-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--forest-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 79, 47, 0.4);
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.freedom-teaser-highlight {
    background: radial-gradient(circle at top left, rgba(201, 166, 107, 0.25), transparent 55%), var(--forest-green);
    color: var(--cream);
    padding: 2.75rem 2.25rem;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.freedom-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--gold-accent);
}

.freedom-note {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* Spend the Day Teaser (Home) */
.day-teaser {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.day-teaser-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.5fr);
    gap: 3rem;
    align-items: stretch;
}

.day-teaser-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--forest-green);
}

.day-teaser-text .lead {
    margin-bottom: 1.5rem;
}

.day-teaser-points {
    list-style: none;
    margin-bottom: 1.75rem;
}

.day-teaser-points li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.day-teaser-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--saddle-brown);
}

.day-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.day-teaser-highlight {
    background: var(--cream);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.day-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--saddle-brown);
}

.day-note {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: left;
    border: 2px solid var(--tan);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.service-label {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--tan);
    border: 1px solid var(--gold-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Montserrat', sans-serif;
    color: var(--forest-green);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-weight: 400;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
    font-size: 1.1rem;
}

button.service-card {
    display: block;
    width: 100%;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.service-card-cta {
    display: inline-block;
    margin-top: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green);
    letter-spacing: 0.03em;
}

.service-card:hover .service-card-cta {
    color: var(--saddle-brown);
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.service-modal[hidden] {
    display: none;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.65);
}

.service-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    max-height: min(90vh, 800px);
    overflow-y: auto;
    background: var(--bg-white);
    border: 2px solid var(--tan);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 2rem 2rem 1.75rem;
}

.service-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    border: none;
    background: transparent;
    color: var(--text-medium);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.service-modal-close:hover {
    color: var(--forest-green);
}

.service-modal-dialog h3 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
    color: var(--forest-green);
    font-family: 'Playfair Display', serif;
    padding-right: 2rem;
}

.service-modal-body p {
    color: var(--text-medium);
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
}

.service-modal-body .service-features {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
}

.service-modal-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-modal-contact .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: center;
    min-height: 2.75rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-modal-email-note {
    margin: 0.85rem 0 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-medium);
    font-family: 'Lato', sans-serif;
}

.service-modal-email-plain {
    color: var(--forest-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-modal-email-plain:hover {
    color: var(--saddle-brown);
}

.btn-outline {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Instructors Section */
.instructors {
    background: var(--bg-white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.instructor-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--tan);
    position: relative;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
    background: var(--bg-white);
}

.instructor-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--forest-green);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.instructor-role {
    font-weight: 600;
    color: var(--saddle-brown);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: 'Merriweather', serif;
    font-style: italic;
}

.instructor-phone {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.instructor-phone a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.instructor-phone a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.instructor-phone-alt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.instructor-bio {
    color: var(--text-medium);
    margin-top: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
}

/* Contact Section */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
}

.contact-item a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-item a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: var(--bg-white);
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.92rem;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--tan);
    box-shadow: var(--shadow-sm);
}

.social-link::before {
    content: 'f';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 3px;
    background: #1877f2;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
}

.social-link:hover {
    background: var(--cream);
    color: var(--forest-green);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid var(--tan);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--forest-green);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

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

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.form-message.success {
    background: rgba(47, 79, 47, 0.1);
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

/* Submit Button States */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.footer-section a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 166, 107, 0.3);
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

/* Freedom Fields Page */
.freedom-page .hero.freedom-hero {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('assets/hero-image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.freedom-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

.btn-secondary-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.freedom-subnav-list a:hover {
    color: var(--forest-green);
    border-color: var(--forest-green);
}

.freedom-section {
    background: radial-gradient(circle at top left, rgba(201, 166, 107, 0.05), transparent 60%), var(--bg-white);
}

.freedom-section:nth-of-type(even) {
    background: radial-gradient(circle at top right, rgba(47, 79, 47, 0.04), transparent 60%), var(--cream);
}

.freedom-section .container {
    max-width: 900px;
}

.freedom-accordion {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    padding: 2.75rem 2.25rem;
}

.accordion-item + .accordion-item {
    border-top: 1px solid var(--border-color);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--forest-green);
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid var(--forest-green);
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--forest-green);
    border-radius: 2px;
}

.accordion-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.open .accordion-icon::after {
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body {
    max-height: 2000px;
}

.freedom-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.freedom-card {
    background: transparent;
    padding: 0 0 1.5rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    transition: none;
}

.freedom-card:hover {
    transform: none;
    box-shadow: none;
}

.freedom-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--forest-green);
}

.freedom-card p {
    font-family: 'Lato', sans-serif;
    color: var(--text-medium);
}

.freedom-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.freedom-step {
    background: transparent;
    padding: 0 0 1.5rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

.step-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--saddle-brown);
    margin-bottom: 0.75rem;
}

.freedom-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.freedom-amenities-content {
    max-width: 800px;
    margin: 0 auto;
}

.amenities-list {
    list-style: none;
    margin-top: 1.5rem;
}

.amenities-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
}

.freedom-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.pricing-amount {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--forest-green);
    margin: 0.5rem 0 0.75rem;
}

.pricing-detail {
    color: var(--text-medium);
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    text-align: center;
}

.rules-list {
    list-style: none;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rules-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--saddle-brown);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: transparent;
    padding: 0 0 1.25rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-medium);
}

.freedom-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.freedom-cta-actions {
    text-align: right;
}

.freedom-cta-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.freedom-cta-note a {
    color: var(--gold-accent);
    text-decoration: none;
}

.freedom-cta-note a:hover {
    text-decoration: underline;
}

/* Spend the Day Page */
.day-page .hero.day-hero {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25)), url('assets/hero-image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.day-section .container {
    max-width: 900px;
}

.day-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.day-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.day-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--forest-green);
}

.day-card p {
    color: var(--text-medium);
}

.day-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.day-list {
    list-style: none;
}

.day-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--text-medium);
}

.day-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--saddle-brown);
}

.day-highlight-box {
    background: rgba(201, 166, 107, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(201, 166, 107, 0.6);
    padding: 1.75rem 1.75rem;
}

.day-highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.day-schedule .timeline {
    margin-top: 2.5rem;
    border-left: 2px solid var(--tan);
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.75rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--tan);
    border: 2px solid var(--forest-green);
}

.timeline-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--saddle-brown);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0.2rem 0 0.25rem;
}

.timeline-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.day-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.day-rules .rules-list {
    max-width: 900px;
}

.day-cta .freedom-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Private Group Days layout refinements */
.group-section .container {
    max-width: 900px;
    text-align: center;
}

.group-panel {
    margin-top: 2rem;
    padding: 2.25rem 2.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.group-panel + .group-panel {
    margin-top: 1.75rem;
}

.group-panel .group-intro p,
.group-panel .group-list,
.group-panel .rules-list,
.group-panel .group-grid,
.group-panel .day-addons-grid {
    text-align: left;
}
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.65rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: rgba(244, 241, 233, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: left 0.4s ease;
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        justify-content: flex-start;
        border-right: 2px solid var(--tan);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 85vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 0.9rem 1.15rem 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .services-grid,
    .instructors-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .freedom-teaser-inner {
        grid-template-columns: 1fr;
    }

    .freedom-cta-inner {
        flex-direction: column;
        text-align: left;
    }

    .freedom-cta-actions {
        text-align: left;
        width: 100%;
    }

    .day-teaser-inner {
        grid-template-columns: 1fr;
    }

    .day-two-column {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0.25rem 0 0.5rem 0;
        display: block;
    }

    .nav-item-dropdown::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    
    .hero {
        height: 80vh;
        min-height: 550px;
    }

    .hero-content {
        padding: 0.85rem 1rem 0.95rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .service-modal-contact {
        grid-template-columns: 1fr;
    }

    .service-modal-contact .btn {
        font-size: 0.92rem;
        padding: 0.75rem 1rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .instructor-card,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
