:root {
    --color-forest: #2d4a3e;
    --color-pine: #3d5a4c;
    --color-sage: #6b8f71;
    --color-cream: #f7f4ef;
    --color-warm-white: #fdfcfa;
    --color-bark: #4a3f35;
    --color-rust: #b35a3a;
    --color-gold: #c9a45c;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 17px;
}

/* Header & Navigation */
header {
    background: var(--color-forest);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.logo span {
    color: var(--color-gold);
}

.logo .logo-stowe {
    color: var(--color-rust);
}

nav {
    display: flex;
    gap: 8px;
}

nav a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.85;
}

nav a:hover, nav a.active {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

nav a.active {
    background: rgba(255,255,255,0.15);
}

nav a.nav-alert {
    background: var(--color-rust);
    opacity: 1;
}

nav a.nav-alert:hover {
    background: #c9654a;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Green (Default) */
.hero {
    background: linear-gradient(165deg, var(--color-forest) 0%, var(--color-pine) 50%, var(--color-sage) 100%);
    padding: 160px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-cream) 0%, transparent 100%);
    pointer-events: none;
}

/* Hero Section - Rust (Regulations) */
.hero-rust {
    background: linear-gradient(165deg, var(--color-rust) 0%, #9c4a2e 50%, var(--color-bark) 100%);
    padding: 140px 24px 80px;
}

.hero-rust::after {
    display: none;
}

/* Hero Section - Standard (no fade) */
.hero-standard {
    padding: 140px 24px 80px;
}

.hero-standard::after {
    display: none;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--color-cream);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-nav a {
    background: rgba(255,255,255,0.1);
    color: var(--color-cream);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
}

.hero-nav a:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bark);
}

.btn-primary:hover {
    background: #d4af68;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    border-color: var(--color-cream);
    background: rgba(255,255,255,0.1);
}

/* Hero Alert */
.hero-alert {
    margin-top: 40px;
    background: rgba(179, 90, 58, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-alert-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-alert-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-cream);
    white-space: nowrap;
}

.hero-alert-text {
    color: var(--color-cream);
    font-size: 0.95rem;
    opacity: 0.95;
}

.hero-alert-link {
    color: var(--color-cream);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.hero-alert-link:hover {
    background: rgba(255,255,255,0.25);
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

main.narrow {
    max-width: 900px;
}

main.extra-narrow {
    max-width: 800px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-forest);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--color-rust);
    gap: 12px;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.intro h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 20px;
}

.intro p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Stowe Section */
.about-stowe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-stowe-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-stowe-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-stowe-content p:last-of-type {
    margin-bottom: 28px;
}

.stowe-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-forest);
}

.feature-item span {
    font-size: 1.3rem;
}

.about-stowe-image {
    background: linear-gradient(145deg, var(--color-sage) 0%, var(--color-forest) 100%);
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-stowe-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
}

.image-placeholder {
    text-align: center;
    color: var(--color-cream);
    position: relative;
    z-index: 1;
}

.image-placeholder .mountain-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    display: block;
}

.image-placeholder p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.9;
}

/* Seasons Grid */
.seasons-section {
    margin-bottom: 100px;
}

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

.section-header-center h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 16px;
}

.section-header-center p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.season-card {
    background: var(--color-warm-white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.season-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.season-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.season-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 12px;
}

.season-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* STR Guide Section */
.str-guide-section {
    background: var(--color-warm-white);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.str-guide-header {
    text-align: center;
    margin-bottom: 50px;
}

.str-guide-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 16px;
}

.str-guide-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.str-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.str-steps-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-forest);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-number.step-go {
    background: var(--color-gold);
    color: var(--color-bark);
    font-size: 1rem;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.str-guide-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.str-guide-cta p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Argument Sections */
.argument-section {
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.argument-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-forest);
}

.section-icon {
    width: 48px;
    height: 48px;
    background: var(--color-forest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.section-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-forest);
}

.argument-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.argument-section li {
    background: var(--color-warm-white);
    padding: 20px 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-sage);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.argument-section li:hover {
    border-left-color: var(--color-rust);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-pine) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    margin: 70px 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 164, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-section h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 28px;
    position: relative;
}

.highlight-section ul {
    list-style: none;
    display: grid;
    gap: 16px;
    position: relative;
}

.highlight-section li {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 10px;
    color: var(--color-cream);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight-section li::before {
    content: '→';
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.08) 0%, rgba(107, 143, 113, 0.08) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(201, 164, 92, 0.2);
}

.solutions-header {
    border-bottom-color: var(--color-gold);
}

.solutions-icon {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af68 100%);
}

.solutions-intro {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.solutions-section li {
    border-left-color: var(--color-gold);
}

.solutions-section li:hover {
    border-left-color: var(--color-forest);
}

.solutions-section li strong {
    color: var(--color-forest);
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--color-text);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-link {
    color: var(--color-forest);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--color-rust);
}

/* Info Box */
.info-box {
    background: var(--color-warm-white);
    border-radius: 12px;
    padding: 30px 35px;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin: 40px 0;
}

.info-box h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box h3 span {
    font-size: 1.5rem;
}

.info-box p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Options Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.option-card {
    background: var(--color-warm-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.option-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-pine) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.option-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 12px;
}

.option-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 80px 20px;
}

.coming-soon h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-sage);
    font-style: italic;
}

.coming-soon-box {
    background: var(--color-warm-white);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.coming-soon-box p {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-sage);
    font-style: italic;
    margin: 0;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-warm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-forest);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-sage);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--color-bark);
    color: var(--color-cream);
    padding: 50px 24px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

footer h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

footer p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-links-section {
    margin-bottom: 30px;
}

.footer-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-links-row:last-child {
    margin-bottom: 0;
}

.footer-links-label {
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.footer-links-label.label-stowe {
    color: var(--color-rust);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 30px 0;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-stowe {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stowe-image {
        height: 300px;
        order: -1;
    }

    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .str-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .str-steps-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .str-guide-section {
        padding: 40px 30px;
    }

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

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-forest);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 130px 20px 80px;
    }

    .hero-rust,
    .hero-standard {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .hero-nav {
        flex-direction: column;
        align-items: center;
    }

    .hero-nav a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-alert {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
        gap: 16px;
    }

    .hero-alert-content {
        flex-direction: column;
        gap: 10px;
    }

    main {
        padding: 40px 20px 60px;
    }

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

    .str-steps-4 {
        grid-template-columns: 1fr;
    }

    .stowe-features {
        grid-template-columns: 1fr;
    }

    .about-stowe-content h2,
    .section-header-center h2,
    .str-guide-header h2 {
        font-size: 1.9rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .highlight-section {
        padding: 36px 24px;
    }

    .argument-section li {
        padding: 16px 18px;
    }

    .info-box {
        padding: 24px;
    }

    .faq-question {
        padding: 20px 22px;
        font-size: 1.15rem;
    }

    .faq-answer-inner {
        padding: 0 22px 20px;
    }
}
