/* ================================================
   שאנטי סטודיו — hot-sea-409.css
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700;900&family=Heebo:wght@300;400;500;700;900&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:        #3D7A5C;
    --primary-dark:   #2A5740;
    --primary-light:  #5A9B7A;
    --accent:         #C9954A;
    --accent-dark:    #A67A38;
    --dark:           #161E1A;
    --dark-section:   #1C2B23;
    --cream:          #F5EFE6;
    --cream-dark:     #EDE5D8;
    --text:           #1A1A1A;
    --text-light:     #666;
    --white:          #FFFFFF;
    --border:         #D5C89E;
    --error:          #C0392B;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Heebo', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    direction: rtl;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === GLOBAL ALERT BAR === */
.global-alert {
    background-color: var(--primary);
    color: var(--white);
    font-size: 13px;
    text-align: center;
    padding: 7px 16px;
    font-weight: 500;
}
.global-alert a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

/* === HEADER === */
.header {
    background-color: var(--dark);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-wrapper svg { height: 48px; width: auto; }
.logo-text {
    color: var(--white);
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}
.desktop-nav-wrapper { flex: 1; padding-right: 40px; }
.desktop-nav {
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
}
.desktop-nav-link {
    color: var(--white);
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.desktop-nav-link:hover,
.desktop-nav-link.active { color: var(--accent); }

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--white);
}
.header-contact a { color: var(--white); }
.header-contact a:hover { color: var(--accent); }
.header-contact .phone-number { font-weight: 700; font-size: 14px; }
.header-contact .sep {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.25);
    display: inline-block;
}
.hamburger-button {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger-icon span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-nav { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 6px 0; }
.mobile-nav ul li a {
    display: block;
    padding: 12px 24px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.mobile-nav ul li a:hover { background: var(--primary-dark); color: var(--accent); }

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border-radius: 2px;
    line-height: 1.3;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../illustrations/hero-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22,30,26,0.5) 0%, rgba(22,30,26,0.78) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 800px;
}
.hero-title {
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-title .serif-line {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 100px;
    font-weight: 900;
    display: block;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    letter-spacing: -0.01em;
}
.hero-title .sans-line {
    font-family: 'Heebo', sans-serif;
    font-size: 44px;
    font-weight: 900;
    display: block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    margin-top: 2.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 22px;
    animation: bounce 2s infinite;
    cursor: pointer;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* === INTRO TEXT BAND === */
.intro-band {
    background: var(--cream);
    padding: 56px 24px;
    text-align: center;
}
.intro-band-inner {
    max-width: 760px;
    margin: 0 auto;
}
.intro-band h2 {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}
.intro-band p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

/* === JOIN BAR === */
.join-bar-section { padding: 28px 16px; background: var(--white); }
.join-bar {
    background: var(--dark);
    border: 2px solid var(--primary);
    padding: 20px 28px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.join-bar-text { flex: 0 0 auto; }
.join-bar-text h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 4px;
}
.join-bar-text p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; }
.join-bar-form {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.join-bar-form input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border: 0;
    background: var(--white);
    font-size: 14px;
    font-family: 'Heebo', sans-serif;
    border-radius: 2px;
    color: var(--text);
}
.join-bar-form input::placeholder { color: #888; }
.join-bar-disclaimer {
    width: 100%;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* === CLASSES SECTION === */
.classes-section { padding: 56px 0 64px; background: var(--white); }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}
.section-subtitle { font-size: 15px; color: var(--text-light); }
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.class-card { position: relative; overflow: hidden; }
.class-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    transition: transform 0.35s;
}
.class-card:hover .class-card-img { transform: scale(1.04); }
.class-card-body {
    padding: 14px 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.class-card-name {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.class-card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
    line-height: 1.5;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}
.carousel-btn {
    background: transparent;
    border: 0;
    font-size: 26px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.carousel-btn:hover { color: var(--primary); }
.carousel-indicator { font-size: 13px; font-weight: 700; color: var(--primary); }
.carousel-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 6px;
}

/* === BENEFITS SECTION === */
.benefits-section { padding: 64px 24px; background: var(--cream); }
.benefits-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.benefits-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}
.benefits-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.benefits-title {
    font-family: 'Heebo', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.1;
}
.benefits-list { margin-bottom: 16px; }
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.55;
}
.benefits-list li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* === STORY SECTION === */
.story-section {
    background-color: var(--dark-section);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.story-section::before {
    content: '';
    display: block;
    height: 56px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
    position: absolute;
    top: 0; left: 0; right: 0;
}
.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.story-img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.story-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
}
.story-title {
    font-family: 'Heebo', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.story-desc { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.78; margin-bottom: 1.5rem; }
.story-desc p + p { margin-top: 12px; }

/* === FEATURES ROW === */
.features-section { padding: 0 24px 56px; background: var(--dark-section); }
.features-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    overflow: hidden;
}
.feature-card {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--cream-dark);
}
.feature-card:first-child { border-right: 0; }
.feature-icon {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.feature-title {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}
.feature-desc { font-size: 13px; color: var(--text-light); margin-bottom: 10px; line-height: 1.5; }
.feature-link { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* === PRICING SECTION === */
.pricing-section { padding: 72px 24px; background: var(--white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 40px auto 0;
}
.price-card {
    border: 2px solid var(--cream-dark);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(61,122,92,0.13); }
.price-card.featured { border-color: var(--primary); background: var(--primary); color: var(--white); }
.price-card.featured .price-name,
.price-card.featured .price-period,
.price-card.featured .price-feature { color: var(--white); }
.price-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 4px 14px;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-name {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    color: var(--text);
}
.price-amount {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 4px;
}
.price-card.featured .price-amount { color: var(--accent); }
.price-currency { font-size: 26px; vertical-align: top; line-height: 1.6; }
.price-period { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.price-features { text-align: right; margin-bottom: 28px; }
.price-feature {
    font-size: 14px;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.price-card.featured .price-feature { border-bottom-color: rgba(255,255,255,0.15); }
.price-feature i { color: var(--accent); font-size: 11px; flex-shrink: 0; }
.price-card.featured .price-feature i { color: var(--accent); }

/* === TESTIMONIALS === */
.testimonials-section { padding: 72px 24px; background: var(--cream); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.testimonial-card {
    background: var(--white);
    padding: 28px 24px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-meta { font-size: 12px; color: var(--text-light); }

/* === CONTACT SECTION === */
.contact-section { padding: 72px 24px; background: var(--white); }
.contact-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.65;
}
.contact-item i { color: var(--primary); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.contact-item a:hover { color: var(--primary); text-decoration: underline; }
.contact-map { width: 100%; height: 280px; border: 0; filter: grayscale(15%); }

/* === FOOTER === */
.footer { background: var(--dark); color: var(--white); padding: 52px 24px 24px; }
.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-logo .logo-text { font-size: 20px; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 10px; max-width: 200px; line-height: 1.6; }
.footer-nav-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-links a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--accent); }
.footer-social h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.2s;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 12px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.35); }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(22,30,26,0.97);
    color: var(--white);
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 2px solid var(--primary);
}
.cookie-banner p {
    flex: 1;
    font-size: 13px;
    line-height: 1.55;
    min-width: 240px;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: 0;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.05em;
    border-radius: 2px;
}
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 18px;
    font-size: 12px;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    border-radius: 2px;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

/* === FORM STYLES === */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    color: var(--text);
}
.form-control {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Heebo', sans-serif;
    border: 1px solid #D0CBBE;
    border-radius: 2px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(61,122,92,0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-control.is-invalid { border-color: var(--error); }
.invalid-feedback {
    font-size: 12px;
    color: var(--white);
    background: var(--error);
    padding: 4px 10px;
    margin-top: 4px;
    display: none;
}
.form-control.is-invalid ~ .invalid-feedback { display: block; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 8px; }
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 2px;
    margin-bottom: 20px;
    display: none;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: var(--dark-section);
    padding: 72px 24px;
    text-align: center;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.page-hero h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 600px; margin: 0 auto; }

/* === TEXT CONTENT SECTION === */
.text-section { padding: 64px 24px; }
.text-section-inner { max-width: 860px; margin: 0 auto; }
.text-section h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.text-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 8px;
    color: var(--text);
}
.text-section p {
    font-size: 15px;
    line-height: 1.82;
    color: #3a3a3a;
    margin-bottom: 14px;
}
.text-section ul {
    list-style: disc;
    padding-right: 22px;
    margin-bottom: 18px;
}
.text-section ul li {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 6px;
}
.text-section ol { padding-right: 22px; margin-bottom: 18px; }
.text-section ol li { font-size: 15px; line-height: 1.75; color: #3a3a3a; margin-bottom: 6px; }

/* === ABOUT PAGE === */
.about-intro { padding: 72px 24px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto;
}
.about-img { width: 100%; object-fit: cover; box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.about-text h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-text p { font-size: 15px; line-height: 1.82; color: #3a3a3a; margin-bottom: 14px; }
.values-section { padding: 64px 24px; background: var(--cream); text-align: center; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 36px auto 0;
}
.value-card {
    background: var(--white);
    padding: 32px 24px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}
.value-icon { font-size: 36px; color: var(--primary); margin-bottom: 14px; display: block; }
.value-title { font-family: 'Heebo', sans-serif; font-size: 17px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.team-section { padding: 72px 24px; background: var(--white); text-align: center; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 40px auto 0;
}
.team-card { text-align: center; padding: 8px 0; }
.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
}
.team-img-icon { width: 120px; height: 120px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 40px; margin: 0 auto 16px; }
.team-name { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.team-bio { font-size: 13px; color: #555; line-height: 1.6; }

/* === CONTACT PAGE === */
.contact-page { padding: 72px 24px; }
.contact-page-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}
.contact-form-wrapper { background: var(--cream); padding: 40px 36px; }
.contact-form-wrapper h2 { font-size: 22px; font-weight: 900; margin-bottom: 24px; text-transform: uppercase; }

/* === VOICES PAGE === */
.voices-section { padding: 72px 24px; background: var(--white); }
.voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 40px auto 0;
}
.voice-card { background: var(--cream); padding: 36px 32px; }
.voice-quote { font-size: 48px; color: var(--primary); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.voice-text { font-size: 15px; line-height: 1.78; color: var(--text); font-style: italic; margin-bottom: 22px; }
.voice-rating { color: var(--accent); font-size: 15px; margin-bottom: 8px; letter-spacing: 2px; }
.voice-author { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.voice-meta { font-size: 13px; color: var(--text-light); }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-none { display: none !important; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .classes-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .benefits-inner { grid-template-columns: 1fr; }
    .story-inner { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 40px auto 0; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 40px auto 0; }
    .contact-inner { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; max-width: 340px; margin: 36px auto 0; }
    .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 40px auto 0; }
    .voices-grid { grid-template-columns: 1fr; max-width: 460px; margin: 40px auto 0; }
    .contact-page-inner { grid-template-columns: 1fr; }
    .footer-top { gap: 28px; }
    .features-grid { flex-direction: column; }
    .feature-card { border-right: 0; border-bottom: 1px solid var(--cream-dark); }
    .join-bar { flex-direction: column; text-align: center; }
    .join-bar-text h2 { white-space: normal; }
}
@media (max-width: 768px) {
    .hero-title .serif-line { font-size: 68px; }
    .hero-title .sans-line { font-size: 34px; }
    .section-title { font-size: 32px; }
    .story-title { font-size: 38px; }
    .page-hero h1 { font-size: 34px; }
    .desktop-nav-wrapper, .header-contact { display: none; }
    .hamburger-button { display: block; }
}
@media (max-width: 480px) {
    .hero-title .serif-line { font-size: 52px; }
    .hero-title .sans-line { font-size: 26px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cookie-banner { flex-direction: column; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .section-title { font-size: 26px; }
    .intro-band h2 { font-size: 24px; }
    .about-text h2 { font-size: 26px; }
    .contact-form-wrapper { padding: 28px 20px; }
}
