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

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A242B;
    --burgundy-light: #8B3A42;
    --blush: #F5E6E8;
    --blush-light: #FBF4F5;
    --cream: #FDF8F8;
    --gold: #C9A227;
    --text: #2D2D2D;
    --muted: #6B6B6B;
    --sidebar-width: 280px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Montserrat', system-ui, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ===== Side Navigation ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.sidebar-inner {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Logo */
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    color: var(--blush-light);
}

.logo-mark {
    color: var(--blush-light);
    flex-shrink: 0;
}

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

.logo-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Nav */
.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(251, 244, 245, 0.75);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(251, 244, 245, 0.1);
    color: var(--blush-light);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gold);
    border-radius: 0 4px 4px 0;
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    opacity: 1;
}

/* Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 244, 245, 0.15);
    text-align: center;
}

.sidebar-cta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: var(--blush-light);
    transition: color var(--transition);
}

.sidebar-phone:hover {
    color: var(--gold);
}

/* ===== Main Content ===== */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.content-section {
    min-height: 100vh;
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.label-light {
    color: var(--blush-light);
}

.label-line-light {
    background: var(--gold);
}

/* Section Titles */
.section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.text-accent {
    color: var(--burgundy);
    font-style: italic;
}

.text-gold {
    color: var(--gold);
    font-style: italic;
}

.section-description {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
}

.section-description.center {
    margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding: 0;
    min-height: 100vh;
    align-items: stretch;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 36, 43, 0.88) 0%,
        rgba(114, 47, 55, 0.75) 50%,
        rgba(139, 58, 66, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--blush-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.85;
    margin-bottom: 2rem;
    color: var(--gold);
}

.hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--blush-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--blush-light);
    border: 1px solid rgba(251, 244, 245, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(251, 244, 245, 0.1);
    border-color: var(--blush-light);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(251, 244, 245, 0.3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--blush-light);
    opacity: 0.7;
}

.hero-address {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* ===== About Section ===== */
.section-about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(114, 47, 55, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.12);
}

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

.about-decoration {
    position: absolute;
    top: -20px;
    right: 30%;
    color: var(--burgundy);
    opacity: 0.15;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 8px;
    color: var(--burgundy);
}

.value-item h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.value-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== Products Section ===== */
.section-products {
    background: var(--blush-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.06);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(114, 47, 55, 0.12);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 1.75rem;
}

.product-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-separator {
    display: flex;
    color: var(--burgundy);
    opacity: 0.3;
}

.products-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--blush);
    border-radius: 8px;
    border-left: 3px solid var(--burgundy);
}

.products-note svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.products-note p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Experience Section ===== */
.section-experience {
    position: relative;
    padding: 0;
    min-height: 80vh;
    align-items: center;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(45, 45, 45, 0.92) 0%,
        rgba(45, 45, 45, 0.7) 50%,
        rgba(45, 45, 45, 0.4) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.title-light {
    color: var(--blush-light);
}

.text-light {
    color: rgba(251, 244, 245, 0.8);
}

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

.exp-feature {
    padding: 1.5rem;
    background: rgba(251, 244, 245, 0.06);
    border: 1px solid rgba(251, 244, 245, 0.1);
    border-radius: 10px;
    transition: all var(--transition);
}

.exp-feature:hover {
    background: rgba(251, 244, 245, 0.1);
    border-color: rgba(251, 244, 245, 0.2);
}

.exp-feature-num {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.exp-feature h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blush-light);
    margin-bottom: 0.5rem;
}

.exp-feature p {
    font-size: 0.85rem;
    color: rgba(251, 244, 245, 0.65);
    line-height: 1.7;
}

/* ===== Schedule Section ===== */
.section-schedule {
    background: var(--cream);
}

.schedule-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.schedule-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.06);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--burgundy);
    color: var(--blush-light);
}

.schedule-header h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.schedule-body {
    padding: 0.5rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    transition: background var(--transition);
}

.schedule-row:hover {
    background: var(--blush-light);
}

.header-row {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    font-weight: 600;
    border-bottom: 1px solid var(--blush);
    margin-bottom: 0.25rem;
    padding-bottom: 0.75rem;
}

.day-name {
    font-weight: 500;
    color: var(--text);
}

.day-hours {
    color: var(--burgundy);
    font-weight: 500;
}

.schedule-footer {
    padding: 1.25rem 2rem;
    background: var(--blush-light);
    border-top: 1px solid var(--blush);
}

.schedule-footer p {
    font-size: 0.85rem;
    color: var(--muted);
}

.schedule-link {
    color: var(--burgundy);
    font-weight: 600;
    border-bottom: 1px solid var(--burgundy);
    transition: all var(--transition);
}

.schedule-link:hover {
    color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.05);
    transition: all var(--transition);
}

.info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(114, 47, 55, 0.1);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 8px;
    color: var(--burgundy);
}

.info-card h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.info-card p,
.info-card a {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.info-card a:hover {
    color: var(--burgundy);
}

/* ===== Contact Section ===== */
.section-contact {
    background: var(--blush-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--blush);
    border-radius: 6px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--burgundy);
    color: var(--blush-light);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25);
}

.btn-submit svg {
    transition: transform var(--transition);
}

.btn-submit:hover svg {
    transform: translateY(2px);
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 50%;
    color: var(--burgundy);
}

.form-success h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.05);
    transition: all var(--transition);
}

.contact-info-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(114, 47, 55, 0.1);
}

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

.contact-info-item h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--burgundy);
}

/* Map */
.map-wrapper {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--burgundy-dark);
    color: var(--blush-light);
    padding: 4rem 4rem 2rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(251, 244, 245, 0.12);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links h5,
.footer-contact h5 {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--blush-light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.8;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.05em;
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    z-index: 50;
    transition: all var(--transition);
}

.mobile-menu-btn.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.open .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .menu-line:nth-child(3) {
    width: 5px;
    margin-left: 0;
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-overlay {
    z-index: 25;
    transition: opacity var(--transition);
}

.mobile-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 240px;
    }

    .content-section {
        padding: 4rem 2.5rem;
    }

    .hero-content {
        padding: 0 2.5rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .experience-grid {
        gap: 2.5rem;
    }

    .schedule-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 300px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .content-section {
        padding: 5rem 1.5rem;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        text-align: center;
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 400px;
        order: -1;
    }

    .about-img-main {
        height: 300px;
        width: 100%;
    }

    .about-img-secondary {
        width: 60%;
        height: 200px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Experience */
    .section-experience {
        min-height: auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 4rem 1.25rem;
    }

    .hero-content {
        padding: 4.5rem 1.25rem 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
