@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

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

:root {
    --primary: #1A2E35;
    --secondary: #F5F5DC;
    --accent-green: #A0C49D;
    --accent-khaki: #D1D1B7;
    --accent-gold: #E6B34B;
    --text-main: #1A2E35;
    --text-muted: #5A6A6E;
    --text-light: #8A9A9E;
    --divider: #DEDECB;
    --white: #FFFFFF;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lora', serif;
    --max-width: 1440px;
    --content-width: 1140px;
    --radius: 4px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-main);
    background-color: var(--secondary);
}

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

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--accent-green);
}

h3 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--text-main);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container--wide {
    max-width: var(--max-width);
}

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--primary);
    color: var(--secondary);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--secondary);
}

.section--dark p,
.section--dark li {
    color: #C8D4D7;
}

.section--dark h2 {
    color: var(--accent-green);
}

.section--khaki {
    background-color: var(--accent-khaki);
}

.section--beige {
    background-color: var(--secondary);
}

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

.section-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
}

.divider {
    width: 48px;
    height: 3px;
    background-color: var(--accent-green);
    margin: 16px 0 24px 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.divider--gold {
    background-color: var(--accent-gold);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    border-bottom: 1px solid rgba(160, 196, 157, 0.2);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color var(--transition);
}

.header-logo span {
    color: var(--accent-green);
}

.header-logo:hover {
    color: var(--accent-green);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #B8C8CC;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color var(--transition), background-color var(--transition);
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--white);
    background-color: rgba(160, 196, 157, 0.15);
}

.nav-link.active {
    color: var(--accent-green);
    background-color: rgba(160, 196, 157, 0.1);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 68px;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,46,53,0.88) 45%, rgba(26,46,53,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    color: rgba(245, 245, 220, 0.88);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.hero-edu-badge {
    display: inline-block;
    background-color: rgba(160, 196, 157, 0.2);
    border: 1px solid rgba(160, 196, 157, 0.4);
    color: var(--accent-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--primary);
    border-color: var(--accent-green);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-outline:hover {
    background-color: var(--accent-green);
    color: var(--primary);
}

.btn:active {
    transform: translateY(1px);
}

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

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

.two-col--wide-text {
    grid-template-columns: 2fr 1fr;
}

.two-col--wide-image {
    grid-template-columns: 1fr 2fr;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.two-col__image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.two-col__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.two-col__image:hover img {
    transform: scale(1.02);
}

.two-col__image--tall img {
    height: 520px;
}

.card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--divider);
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: 0 8px 32px rgba(26,46,53,0.12);
    transform: translateY(-3px);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-green);
}

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

.blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 20px 32px;
    background-color: rgba(161, 161, 183, 0.08);
    margin: 32px 0;
}

.blockquote p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.blockquote--dark {
    border-left-color: var(--accent-gold);
    background-color: rgba(255,255,255,0.05);
}

.blockquote--dark p {
    color: var(--secondary);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background-color: var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid rgba(160, 196, 157, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A0C49D;
}

.stat-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #8A9A9E;
    margin-top: 8px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-green), var(--accent-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 2px solid var(--accent-green);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.timeline-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

.glossary-item {
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent-green);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.glossary-item:hover {
    border-left-color: var(--accent-gold);
    box-shadow: 0 4px 16px rgba(26,46,53,0.08);
}

.glossary-term {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.glossary-def {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.accordion-item {
    border-bottom: 1px solid var(--divider);
}

.accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    gap: 16px;
    transition: color var(--transition);
}

.accordion-btn:hover {
    color: var(--accent-green);
}

.accordion-btn.open {
    color: var(--accent-green);
}

.accordion-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-khaki);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary);
    transition: background-color var(--transition), transform var(--transition);
}

.accordion-btn.open .accordion-icon {
    background-color: var(--accent-green);
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding-bottom: 20px;
}

.accordion-body.show {
    display: block;
}

.accordion-body p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.info-box {
    padding: 32px;
    border-radius: var(--radius);
    background-color: rgba(160, 196, 157, 0.1);
    border: 1px solid rgba(160, 196, 157, 0.3);
}

.info-box--gold {
    background-color: rgba(230, 179, 75, 0.1);
    border-color: rgba(230, 179, 75, 0.3);
}

.info-box--dark {
    background-color: rgba(26, 46, 53, 0.06);
    border-color: var(--divider);
}

.disclaimer-box {
    background-color: rgba(26, 46, 53, 0.05);
    border: 1px solid var(--divider);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.disclaimer-box p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.edu-notice {
    background-color: var(--primary);
    color: var(--secondary);
    text-align: center;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.edu-notice span {
    color: var(--accent-gold);
}

.section-title-block {
    margin-bottom: 48px;
}

.section-title-block--center {
    text-align: center;
}

.section-title-block--center .divider {
    margin-left: auto;
    margin-right: auto;
}

.full-width-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.full-width-img--short {
    height: 320px;
}

.img-caption {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.06em;
    margin-top: 10px;
    padding-left: 4px;
    border-left: 2px solid var(--accent-khaki);
    padding-left: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    margin-top: 9px;
}

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

.philosophy-item {
    padding: 28px 24px;
    background-color: var(--white);
    border-radius: var(--radius);
    text-align: center;
    border-top: 3px solid var(--accent-green);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.philosophy-item:hover {
    border-top-color: var(--accent-gold);
    box-shadow: 0 6px 24px rgba(26,46,53,0.1);
}

.philosophy-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-color: rgba(160, 196, 157, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 1.5;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.philosophy-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.soft-cta {
    background-color: var(--primary);
    text-align: center;
    padding: 80px 24px;
}

.soft-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.soft-cta p {
    color: rgba(245, 245, 220, 0.75);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.soft-cta .divider {
    margin: 16px auto 24px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--white);
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(160, 196, 157, 0.15);
}

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

.contact-sidebar {
    padding: 32px;
    background-color: var(--primary);
    border-radius: var(--radius);
    color: var(--secondary);
}

.contact-sidebar h3 {
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
}

.contact-info-item p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #A0B4B8;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.policy-content {
    max-width: 820px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--primary);
}

.policy-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 32px;
}

.page-hero {
    background-color: var(--primary);
    padding: 80px 0 64px;
    margin-top: 68px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(245, 245, 220, 0.75);
    font-size: 1.05rem;
    max-width: 600px;
}

.about-mission {
    background-color: var(--primary);
    padding: 64px 0;
}

.about-mission h2 {
    color: var(--accent-green);
}

.about-mission p {
    color: rgba(245, 245, 220, 0.85);
}

.thank-you-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    border-top: 4px solid var(--accent-green);
}

.thank-you-card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thank-you-card p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

#footer {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(160, 196, 157, 0.15);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--accent-green);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #7A9A9E;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-edu-notice {
    display: inline-block;
    background-color: rgba(160, 196, 157, 0.1);
    border: 1px solid rgba(160, 196, 157, 0.25);
    color: var(--accent-green);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #7A9A9E;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-green);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
}

.footer-contact-item p {
    font-family: var(--font-heading);
    font-size: 0.825rem;
    color: #7A9A9E;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-bottom p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #4A6A6E;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #4A6A6E;
}

.footer-bottom a:hover {
    color: var(--accent-green);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--primary);
    border-top: 2px solid rgba(160, 196, 157, 0.3);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-text {
    font-family: var(--font-heading);
    font-size: 0.825rem;
    color: #A0B4B8;
    line-height: 1.55;
    flex: 1;
}

.cookie-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

.cookie-text a {
    color: var(--accent-green);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.cookie-btn-accept {
    background-color: var(--accent-green);
    color: var(--primary);
    border-color: var(--accent-green);
}

.cookie-btn-accept:hover {
    background-color: transparent;
    color: var(--accent-green);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #7A9A9E;
    border-color: rgba(122, 154, 158, 0.4);
}

.cookie-btn-decline:hover {
    color: var(--white);
    border-color: var(--white);
}

.cookie-btn-policy {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: rgba(230, 179, 75, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-policy:hover {
    background-color: rgba(230, 179, 75, 0.1);
    color: var(--accent-gold);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding: 12px 0;
}

.breadcrumb a,
.breadcrumb span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7A9A9E;
}

.breadcrumb a:hover {
    color: var(--accent-green);
}

.breadcrumb .sep {
    color: #4A6A6E;
    font-size: 0.6rem;
}

.breadcrumb .current {
    color: var(--accent-green);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .two-col--wide-text,
    .two-col--wide-image {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .two-col--reverse {
        direction: ltr;
    }
    .three-col {
        grid-template-columns: 1fr;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .glossary-grid {
        grid-template-columns: 1fr;
    }
    .stat-strip {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(160, 196, 157, 0.2);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 16px 0;
        border-top: 1px solid rgba(160, 196, 157, 0.2);
        gap: 0;
    }
    .nav.open {
        display: flex;
    }
    .nav-link {
        padding: 12px 24px;
        border-radius: 0;
        width: 100%;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        min-height: 70vh;
    }
    .hero-overlay {
        background: rgba(26,46,53,0.72);
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cookie-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .two-col__image img {
        height: 260px;
    }
    .two-col__image--tall img {
        height: 300px;
    }
    .full-width-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }
    h2 {
        font-size: 1.35rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    .thank-you-card {
        padding: 40px 20px;
    }
}
