/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep: #1A3A18;
    --green-forest: #2D5A27;
    --green-mid: #4A7C43;
    --green-light: #5A9E53;
    --green-pale: #E8F5E4;
    --green-ghost: #F3FAF1;
    --cream: #FDFBF7;
    --cream-warm: #FAF7F0;
    --off-white: #F8F6F1;
    --white: #FFFFFF;
    --text-dark: #1A2E1C;
    --text-mid: #3D5A3E;
    --text-light: #6B8A6C;
    --text-muted: #95B396;
    --shadow-sm: 0 2px 8px rgba(26, 58, 24, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 58, 24, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 58, 24, 0.12);
    --shadow-xl: 0 16px 60px rgba(26, 58, 24, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 39, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--green-forest);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--green-pale);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green-forest);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.menu-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 6px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F5E4 0%, #F3FAF1 25%, #FAF7F0 50%, #E8F5E4 75%, #D4EDDA 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 124, 67, 0.2), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 158, 83, 0.15), transparent 70%);
    bottom: 5%;
    left: -5%;
    animation-delay: -3s;
}

.gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 183, 77, 0.12), transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: float-emoji 6s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
}

.float-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 3rem; }
.float-2 { top: 25%; right: 12%; animation-delay: -1s; font-size: 2.2rem; }
.float-3 { bottom: 30%; left: 5%; animation-delay: -2s; font-size: 2.8rem; }
.float-4 { top: 60%; right: 8%; animation-delay: -3s; }
.float-5 { bottom: 15%; left: 15%; animation-delay: -4s; font-size: 2.2rem; }
.float-6 { top: 10%; left: 45%; animation-delay: -5s; font-size: 2rem; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

@keyframes float-emoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(45, 90, 39, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title em {
    font-style: italic;
    color: var(--green-mid);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(90, 158, 83, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--green-forest);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--green-forest);
    border: 1.5px solid rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--green-mid);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-forest);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(45, 90, 39, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bob 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-mid);
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-mid);
    border-radius: 2px;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 24px;
    background: var(--white);
}

.products .container {
    max-width: 1200px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.product-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(45, 90, 39, 0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 90, 39, 0.12);
}

.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-season {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-forest);
}

.season-dot {
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
}

.product-info {
    padding: 22px 24px 24px;
}

.product-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 24px;
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--green-deep);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== SCHEDULE ===== */
.schedule {
    padding: 100px 24px;
    background: var(--white);
}

.schedule-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.schedule-content {
    padding: 56px 56px;
    color: var(--white);
}

.schedule-content .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.schedule-content .section-tag::before {
    background: rgba(255, 255, 255, 0.7);
}

.schedule-content .section-title {
    color: var(--white);
    margin-bottom: 12px;
}

.schedule-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.schedule-closed {
    opacity: 0.5;
}

.day {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.schedule-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.clock-face {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.04);
}

.clock-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 4px;
}

.clock-hour {
    width: 4px;
    height: 50px;
    background: var(--white);
    margin-left: -2px;
    animation: rotate-hour 43200s linear infinite;
}

.clock-minute {
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.7);
    margin-left: -1px;
    animation: rotate-minute 3600s linear infinite;
}

@keyframes rotate-hour {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-minute {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== CTA / CONTACT ===== */
.cta {
    padding: 100px 24px;
    background: var(--cream);
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 64px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 90, 39, 0.06);
}

.cta-content .section-tag {
    margin-bottom: 12px;
}

.cta-content .section-title {
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: var(--green-ghost);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 90, 39, 0.06);
    transition: var(--transition);
    text-decoration: none;
}

.contact-item:hover {
    background: var(--green-pale);
    border-color: rgba(45, 90, 39, 0.15);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--green-forest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-forest);
    margin-bottom: 4px;
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.cta-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-deep);
    color: var(--white);
    padding: 64px 24px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact span,
.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== MOBILE NAV ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 46, 28, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .schedule-card {
        grid-template-columns: 1fr;
    }
    
    .schedule-visual {
        padding: 40px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 100svh;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .products {
        padding: 64px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about {
        padding: 64px 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-img-secondary {
        width: 160px;
        right: -12px;
        bottom: -20px;
    }
    
    .about-img-secondary img {
        height: 160px;
    }
    
    .schedule {
        padding: 64px 20px;
    }
    
    .schedule-content {
        padding: 40px 32px;
    }
    
    .cta {
        padding: 64px 20px;
    }
    
    .cta-card {
        padding: 40px 28px;
    }
    
    .contact-details {
        gap: 12px;
    }
    
    .contact-item {
        padding: 14px 16px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 28px 20px;
    }
}
