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

:root {
    --terracotta-50: #FFF0EB;
    --terracotta-100: #FFE0D6;
    --terracotta-200: #FFC4B2;
    --terracotta-300: #FFA68A;
    --terracotta-400: #E8945A;
    --terracotta-500: #C0583A;
    --terracotta-600: #A8472E;
    --terracotta-700: #8C3A26;
    --terracotta-800: #733020;
    --terracotta-900: #5C271A;
    --sand-50: #FDF8F3;
    --sand-100: #FDF6EE;
    --sand-200: #FAEDDA;
    --sand-300: #F5E0C0;
    --sand-400: #EDC99A;
    --sand-500: #D4A56A;
    --sand-600: #B8864A;
    --sand-700: #9A6A36;
    --sand-800: #7D542A;
    --sand-900: #634322;
    --dark: #2D1F14;
    --dark-700: #3D2B1F;
    --dark-600: #5C4033;
    --dark-500: #7A5C4A;
    --white: #FFFFFF;
    --gray-100: #F7F5F3;
    --gray-200: #EDE8E3;
    --gray-300: #D4CFC9;
    --gray-500: #8A8279;
    --gray-600: #6B635B;
    --shadow-sm: 0 1px 3px rgba(45, 31, 20, 0.06), 0 1px 2px rgba(45, 31, 20, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 31, 20, 0.08), 0 2px 6px rgba(45, 31, 20, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 31, 20, 0.12), 0 4px 12px rgba(45, 31, 20, 0.06);
    --shadow-xl: 0 24px 60px rgba(45, 31, 20, 0.16);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--sand-50);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--terracotta-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 224, 192, 0.5);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}
.logo-light {
    color: var(--white);
}
.logo-light span {
    color: var(--white);
}
.logo-icon {
    flex-shrink: 0;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-700);
    transition: all var(--transition);
}
.nav-links a:hover {
    background: var(--terracotta-50);
    color: var(--terracotta-600);
}
.nav-cta {
    background: var(--terracotta-500) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--terracotta-600) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover {
    background: var(--terracotta-50);
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger {
    position: relative;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #8C3A26 0%, #C0583A 30%, #E8945A 60%, #D4A56A 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7627408/pexels-photo-7627408.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
    opacity: 0.2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 39, 26, 0.85) 0%, rgba(192, 88, 58, 0.7) 50%, rgba(232, 148, 90, 0.6) 100%);
}
.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--sand-100);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-title .accent {
    color: var(--sand-200);
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 246, 238, 0.85);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 246, 238, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--white);
    color: var(--terracotta-600);
}
.btn-primary:hover {
    background: var(--sand-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--terracotta-500);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--terracotta-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* SECTION COMMON */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-500);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CATEGORIES */
.categories {
    background: var(--sand-100);
    padding: 88px 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.category-img {
    height: 200px;
    overflow: hidden;
}
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-img img {
    transform: scale(1.05);
}
.category-body {
    padding: 24px;
}
.category-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.category-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.category-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.menu-cta {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.menu-cta p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ABOUT */
.about {
    background: var(--sand-50);
    padding: 88px 0;
}
.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-xl);
}
.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--sand-50);
}
.about-img-secondary img {
    width: 200px;
    height: 220px;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--terracotta-500);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience .exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience .exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}
.about-content .section-tag {
    text-align: left;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.about-lead {
    font-size: 1.1rem;
    color: var(--dark-700);
    line-height: 1.75;
    margin-bottom: 16px;
    font-family: var(--font-display);
}
.about-content p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-700);
}
.feature-check {
    width: 22px;
    height: 22px;
    background: var(--terracotta-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

/* GALLERY */
.gallery {
    background: var(--sand-100);
    padding: 88px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 416px; }
.gallery-item:nth-child(2) img { height: 192px; }
.gallery-item:nth-child(3) img { height: 192px; }
.gallery-item:nth-child(4) img { height: 100%; min-height: 416px; }
.gallery-item:nth-child(5) img { height: 192px; }
.gallery-item:nth-child(6) img { height: 192px; }

/* HOURS */
.hours-section {
    background: var(--sand-50);
    padding: 88px 0;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.hours-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.hours-icon {
    width: 56px;
    height: 56px;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: 20px;
}
.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list .day {
    color: var(--dark-700);
    font-weight: 500;
}
.hours-list .time {
    color: var(--terracotta-600);
    font-weight: 600;
}
.hours-note,
.location-note,
.order-info {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.6;
}
.location-info {
    font-style: normal;
    font-size: 1rem;
    color: var(--dark-700);
    line-height: 1.7;
}
.order-info {
    margin-bottom: 20px;
}

/* CONTACT */
.contact {
    background: var(--sand-100);
    padding: 88px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info .section-tag {
    text-align: left;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.contact-desc {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--terracotta-600);
}
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FORM */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--sand-50);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(192, 88, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.active {
    display: block;
}
.success-icon {
    width: 72px;
    height: 72px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #43A047;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
    background: var(--dark);
    color: rgba(253, 246, 238, 0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253, 246, 238, 0.1);
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 246, 238, 0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--terracotta-300);
}
.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--terracotta-300);
    transition: color var(--transition);
}
.footer-phone:hover {
    color: var(--terracotta-200);
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(253, 246, 238, 0.4);
}

/* SCROLL REVEAL */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 238, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--sand-300);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }
    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
        margin-top: 8px;
    }

    .hero {
        min-height: 85vh;
    }
    .hero .container {
        padding: 100px 24px 60px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-trust {
        gap: 20px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-img {
        height: 180px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-images {
        max-width: 400px;
    }
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    .about-content p {
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
    .about-feature {
        justify-content: center;
    }
    .about-img-secondary {
        right: -8px;
        bottom: -20px;
    }
    .about-img-secondary img {
        width: 150px;
        height: 170px;
    }
    .about-experience {
        right: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(1) img { height: 200px; }
    .gallery-item img { height: 180px !important; }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }
    .contact-desc {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .form-card {
        padding: 24px;
    }
    .about-img-secondary {
        display: none;
    }
}
