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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #111;
}

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

h1,
h2 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
}

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #111;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo-image {
    height: 55px;
    width: auto;
}

.logo-text {
    display: none;
    font-family: 'Manrope', 'Inter', Arial, sans-serif;
    font-weight: 800;
}

/* Navigation */
.nav {
    display: none;
}

.nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111;
    z-index: 100;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    color: #e5e5e5;
    border-bottom: 1px solid #333;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link--login {
    color: #C4161C;
    font-weight: 600;
}

.nav-link--active {
    color: #fff;
    font-weight: 600;
}

/* Mobile Footer Links in Nav */
.mobile-footer-links {
    margin-top: 2rem;
    padding-top: 2rem;
    /* border-top: 1px solid #333; */
}

.mobile-footer-section {
    margin-bottom: 1.5rem;
}

.mobile-footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-footer-section a {
    color: #999;
    font-size: 0.9375rem;
}

.mobile-footer-section address {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
    max-width: 800px;
    text-shadow: 0 0 3px black;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #E5531A;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: #c94615;
    transform: translateY(-2px);
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.content p {
    margin-bottom: 1.5rem;
    color: #999;
}

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

/* Features Section */
.features {
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-box {
    background-color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #E5531A;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.feature-button:hover {
    background-color: #c94615;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.pricing__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Subscription Box */
.sub-box {
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.sub-box__badge {
    background-color: #E5531A;
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
}

.sub-box__body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.sub-box__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.sub-box__price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.sub-box__price span {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    transition: color 0.4s ease;
}

.sub-box__list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.sub-box__list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.4;
    border-bottom: 1px solid #262626;
    transition: color 0.4s ease;
}

.sub-box__list li:last-child {
    border-bottom: none;
}

.sub-box__list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: #444;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: background-color 0.4s ease;
}

.sub-box__btn {
    display: block;
    padding: 0.875rem 1.5rem;
    background-color: #333;
    color: #777;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Popular Box - Always highlighted */
.sub-box--popular {
    border-color: #E5531A;
}

.sub-box--popular .sub-box__title {
    color: #fff;
}

.sub-box--popular .sub-box__price {
    color: #E5531A;
}

.sub-box--popular .sub-box__price span {
    color: #999;
}

.sub-box--popular .sub-box__list li {
    color: #999;
}

.sub-box--popular .sub-box__list li::before {
    background-color: #E5531A;
}

.sub-box--popular .sub-box__btn {
    background-color: #E5531A;
    color: #fff;
}

.sub-box--popular .sub-box__btn:hover {
    background-color: #c94615;
}

/* Mobile: Scroll-based active state */
.sub-box--active .sub-box__title {
    color: #fff;
}

.sub-box--active .sub-box__price {
    color: #E5531A;
}

.sub-box--active .sub-box__price span {
    color: #999;
}

.sub-box--active .sub-box__list li {
    color: #999;
}

.sub-box--active .sub-box__list li::before {
    background-color: #E5531A;
}

.sub-box--active .sub-box__btn {
    background-color: #E5531A;
    color: #fff;
}

.sub-box--active {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #E5531A;
}

/* Lesson Tiles */
.lessons {
    padding: 3rem 0;
}

.lessons__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lesson-tile {
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 1.75rem 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.lesson-tile__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #E5531A;
    margin-bottom: 0.5rem;
}

.lesson-tile__desc {
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: color 0.4s ease;
}

/* Mobile: Scroll-based active state */
.lesson-tile--active {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #E5531A;
}

.lesson-tile--active .lesson-tile__desc {
    color: #999;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem 1.5rem;
}

.contact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-card__address {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.contact-card__line {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #333;
}

.contact-card__link {
    color: #999;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.contact-card__link:hover {
    color: #E5531A;
}

.contact-card__hours {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card__row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #262626;
}

.contact-card__row:last-child {
    border-bottom: none;
}

.contact-card__row dt {
    color: #999;
    font-size: 0.9375rem;
}

.contact-card__row dd {
    color: #e5e5e5;
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-card--map {
    display: flex;
    flex-direction: column;
}

.contact-card__map {
    flex: 1;
    min-height: 200px;
    border-radius: 4px;
    overflow: hidden;
}

.contact-card__map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: 0;
    display: block;
}

/* Info Blocks (Bedrijfsruimte) */
.info-blocks {
    padding: 3rem 0;
}

.info-block {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block__image {
    width: 100%;
    overflow: hidden;
}

.info-block__image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    opacity: 0.6;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.info-block__text {
    padding: 1.5rem;
}

.info-block__text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E5531A;
    margin-bottom: 0.75rem;
}

.info-block__text p {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.info-block__text p:last-child {
    margin-bottom: 0;
}

/* Info Block active state (mobile scroll) */
.info-block--active {
    border-color: #E5531A;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.info-block--active .info-block__image img {
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.contact-form-box {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form-box__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-form-box__subtitle {
    color: #999;
    margin-bottom: 2rem;
}

.contact-form-alert {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.contact-form-alert--success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-form__field {
    margin-bottom: 1.25rem;
}

.contact-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.contact-form__required {
    color: #E5531A;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #555;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: #E5531A;
}

.contact-form__input--error {
    border-color: #ef4444;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__error {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: #ef4444;
}

.contact-form__submit {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #E5531A;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
}

.contact-form__submit:hover {
    background-color: #c94615;
}

/* Newsletter Section */
.newsletter {
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.newsletter-box > p {
    color: #999;
    margin-bottom: 1.5rem;
}

.newsletter-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    border-color: #E5531A;
}

.newsletter-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #E5531A;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: #c94715;
}

.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    display: none;
}

.newsletter-message.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.newsletter-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #999;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column address {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-column address a {
    display: block;
}

/* Map Embed */
.map-embed {
    /* position: relative; */
    width: 100%;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* .map-embed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
} */

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.875rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
    /* Header */
    .header-container {
        padding: 1rem 2rem;
    }

    .logo-text {
        display: inline;
    }

    /* Navigation */
    .hamburger {
        display: none;
    }

    .nav {
        display: block;
        position: static;
        background: none;
        padding: 0;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
        border-bottom: none;
    }

    .nav-link:hover {
        background-color: #222;
        border-radius: 4px;
    }

    .nav-link--login {
        background-color: #C4161C;
        color: #fff;
        border-radius: 4px;
    }

    .nav-link--login:hover {
        background-color: #a01218;
    }

    .nav-link--active {
        color: #fff;
        background-color: #222;
        border-radius: 4px;
    }

    .mobile-footer-links {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    /* Content */
    .content {
        padding: 4rem 0;
    }

    .content .container {
        padding: 0 2rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    /* Features */
    .features {
        padding: 4rem 0;
    }

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

    /* Pricing */
    .pricing {
        padding: 4rem 0;
    }

    .pricing__heading {
        font-size: 2rem;
    }

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

    .pricing__grid--3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Desktop: Hover-based effects for sub-boxes */
    .sub-box:not(.sub-box--popular):hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-color: #E5531A;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__title {
        color: #fff;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__price {
        color: #E5531A;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__price span {
        color: #999;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__list li {
        color: #999;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__list li::before {
        background-color: #E5531A;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__btn {
        background-color: #E5531A;
        color: #fff;
    }

    .sub-box:not(.sub-box--popular):hover .sub-box__btn:hover {
        background-color: #c94615;
    }

    .sub-box--popular:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(229, 83, 26, 0.2);
    }

    /* Lesson Tiles */
    .lessons {
        padding: 4rem 0;
    }

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

    .lesson-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-color: #E5531A;
    }

    .lesson-tile:hover .lesson-tile__desc {
        color: #999;
    }

    /* Info Blocks */
    .info-blocks {
        padding: 4rem 0;
    }

    .info-block {
        flex-direction: row;
        margin-bottom: 2rem;
    }

    .info-block__image {
        width: 33.333%;
        flex-shrink: 0;
    }

    .info-block__image img {
        min-height: 100%;
    }

    .info-block__text {
        flex: 1;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .info-block--reverse {
        flex-direction: row-reverse;
    }

    /* Desktop hover for info blocks */
    .info-block:hover {
        border-color: #E5531A;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .info-block:hover .info-block__image img {
        opacity: 1;
        transform: scale(1.05);
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

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

    .contact-card--map {
        grid-column: span 2;
    }

    .contact-card__map {
        min-height: 280px;
    }

    .contact-card__map iframe {
        min-height: 280px;
    }

    /* Contact Form */
    .contact-form-section {
        padding: 4rem 0;
    }

    /* Newsletter */
    .newsletter {
        padding: 4rem 0;
    }

    .newsletter-form-group {
        flex-direction: row;
    }

    .newsletter-input {
        flex: 1;
    }

    .newsletter-button {
        flex-shrink: 0;
    }

    /* Footer */
    .footer {
        padding: 4rem 0 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    /* Hero */
    .hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    /* Content */
    .content {
        padding: 5rem 0;
    }

    .content h2 {
        font-size: 2.25rem;
    }

    /* Features */
    .features {
        padding: 5rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pricing */
    .pricing {
        padding: 5rem 0;
    }

    .pricing__heading {
        font-size: 2.25rem;
    }

    .pricing__grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Lesson Tiles */
    .lessons {
        padding: 5rem 0;
    }

    .lessons__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Info Blocks */
    .info-blocks {
        padding: 5rem 0;
    }

    .info-block__text {
        padding: 2.5rem;
    }

    .info-block__text h2 {
        font-size: 1.75rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-card--map {
        grid-column: span 1;
    }

    .contact-card__map {
        min-height: 85%;
    }

    .contact-card__map iframe {
        min-height: 250px;
    }

    /* Contact Form */
    .contact-form-section {
        padding: 5rem 0;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    .footer-column--map {
        grid-column: span 1;
    }

    .map-embed {
        height: 180px;
    }
}

/* Mobile Header Fixed when menu is open */
@media (max-width: 767px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 150;
    }

    body {
        padding-top: 65px;
    }

    .nav.is-open {
        padding-top: 5rem;
    }

    .sub-box--active {
        border: 1px solid #333;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
