/* ============================================
   Brew Topia — Tea House & Specialty Drinks
   Custom Styles
   ============================================ */

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

:root {
    --terracotta: #C2705A;
    --terracotta-deep: #A85A45;
    --terracotta-light: #D4917A;
    --sand: #F5EDE3;
    --sand-light: #FDF6EE;
    --sand-warm: #EDE0D4;
    --cream: #FFFCF8;
    --text-dark: #3A2518;
    --text-mid: #6B4F3F;
    --text-light: #9A7B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(58, 37, 24, 0.06);
    --shadow-md: 0 4px 20px rgba(58, 37, 24, 0.08);
    --shadow-lg: 0 8px 40px rgba(58, 37, 24, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--sand-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--terracotta); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 16px; }

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

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 12px;
}
.section-tag::before {
    content: ''; display: block; width: 20px; height: 1.5px;
    background: var(--terracotta); border-radius: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title--light { color: var(--cream); }

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-xl);
    font-size: 0.9rem; font-weight: 500;
    transition: var(--transition); white-space: nowrap;
}
.btn--primary {
    background: var(--terracotta); color: var(--white);
    box-shadow: 0 4px 16px rgba(194, 112, 90, 0.3);
}
.btn--primary:hover {
    background: var(--terracotta-deep);
    box-shadow: 0 6px 24px rgba(194, 112, 90, 0.4);
    transform: translateY(-2px);
}
.btn--ghost {
    background: rgba(255,255,255,0.15); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: var(--white); color: var(--terracotta);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(194, 112, 90, 0.08);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(253, 246, 238, 0.95);
}
.header-inner {
    display: flex; align-items: center;
    padding-top: 16px; padding-bottom: 16px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 700; color: var(--text-dark);
}
.logo-icon { color: var(--terracotta); }
.logo-text { letter-spacing: -0.01em; }

.nav-menu {
    display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.nav-link {
    padding: 8px 16px; border-radius: var(--radius-xl);
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-mid); transition: var(--transition);
}
.nav-link:hover { color: var(--terracotta); background: rgba(194, 112, 90, 0.08); }
.nav-link--cta {
    background: var(--terracotta); color: var(--white) !important;
    margin-left: 4px;
}
.nav-link--cta:hover { background: var(--terracotta-deep); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; margin-left: auto;
}
.nav-toggle-line {
    display: block; width: 22px; height: 2px;
    background: var(--text-dark); border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-warm) 50%, #F0DDD0 100%);
    padding: 120px 0 0;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--terracotta) 1px, transparent 0);
    background-size: 32px 32px;
}
.hero-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    padding-bottom: 80px; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(194, 112, 90, 0.1);
    color: var(--terracotta); font-size: 0.8rem;
    font-weight: 600; padding: 8px 16px;
    border-radius: var(--radius-xl); margin-bottom: 24px;
}
.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text-dark); margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.text-gradient {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Cards */
.hero-cards {
    position: relative; height: 560px;
}
.hero-card {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover { transform: scale(1.03) !important; }
.hero-card--tea {
    width: 220px; height: 300px; top: 0; left: 20px;
    transform: rotate(-3deg);
}
.hero-card--stat {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 24px; text-align: center;
    background: var(--white);
}
.hero-card--stat-1 {
    width: 160px; height: 120px; top: 40px; right: 0;
    transform: rotate(5deg);
}
.hero-card--stat-2 {
    width: 150px; height: 110px; bottom: 80px; left: 0;
    transform: rotate(-2deg);
}
.hero-card--pastry {
    width: 200px; height: 240px; top: 160px; right: 30px;
    transform: rotate(2deg);
}
.hero-card--drink {
    width: 180px; height: 180px; bottom: 20px; right: 20px;
    transform: rotate(-4deg);
}
.hero-card-img {
    width: 100%; height: 100%; object-fit: cover;
}
.stat-number {
    display: block; font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--terracotta); line-height: 1;
}
.stat-label {
    display: block; font-size: 0.78rem;
    color: var(--text-light); margin-top: 6px;
    font-weight: 500;
}

.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── Features ─── */
.features {
    padding: 100px 0;
    background: var(--sand-light);
}
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(194, 112, 90, 0.08);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 112, 90, 0.2);
}
.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(194, 112, 90, 0.1) 0%, rgba(212, 145, 122, 0.08) 100%);
    border-radius: var(--radius-md); margin-bottom: 20px;
    color: var(--terracotta);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 600;
    margin-bottom: 10px; color: var(--text-dark);
}
.feature-card p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7;
}

/* ─── Menu ─── */
.menu {
    padding: 100px 0;
    background: var(--white);
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-subtitle { margin: 0 auto; }

.menu-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.menu-tab {
    padding: 10px 24px; border-radius: var(--radius-xl);
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-mid); background: var(--sand);
    border: 1.5px solid transparent;
    transition: var(--transition);
}
.menu-tab:hover { color: var(--terracotta); border-color: rgba(194, 112, 90, 0.2); }
.menu-tab.active {
    background: var(--terracotta); color: var(--white);
    border-color: var(--terracotta);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }

.menu-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    max-width: 900px; margin: 0 auto;
}
.menu-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; border-radius: var(--radius-md);
    background: var(--sand-light);
    border: 1px solid rgba(194, 112, 90, 0.06);
    transition: var(--transition);
}
.menu-item:hover {
    border-color: rgba(194, 112, 90, 0.15);
    box-shadow: var(--shadow-sm);
}
.menu-item-info { flex: 1; }
.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    margin-bottom: 6px; color: var(--text-dark);
}
.menu-item-desc {
    font-size: 0.85rem; color: var(--text-light);
    line-height: 1.6;
}
.menu-item-tag {
    flex-shrink: 0; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--terracotta); background: rgba(194, 112, 90, 0.1);
    padding: 4px 10px; border-radius: var(--radius-xl);
    align-self: flex-start; margin-top: 2px;
}
.menu-note {
    text-align: center; margin-top: 32px;
    font-size: 0.85rem; color: var(--text-light);
    font-style: italic;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sand-warm) 0%, var(--sand) 100%);
}
.about-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; 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: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -30px; right: -30px;
    width: 55%; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute; top: -20px; right: 40px;
    color: var(--terracotta); opacity: 0.2;
}
.about-content { max-width: 480px; }
.about-text {
    font-size: 1rem; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 20px;
}
.about-signature {
    display: flex; align-items: center; gap: 12px;
    margin-top: 32px; font-size: 0.9rem;
    color: var(--text-light); font-style: italic;
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    background: var(--sand-light);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(58, 37, 24, 0.6) 0%, transparent 60%);
    display: flex; align-items: flex-end;
    padding: 20px; opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--white); font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
}
.gallery-item--tall { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item--tall img { height: 100%; }
.gallery-item--wide { grid-column: 3 / 5; }

/* ─── CTA ─── */
.cta {
    position: relative; padding: 100px 0;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 60%, var(--terracotta-light) 100%);
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
    background-size: 28px 28px;
}
.cta-container {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white); margin-bottom: 20px;
}
.cta-text {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    line-height: 1.8; margin-bottom: 32px; max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-stats {
    display: flex; flex-direction: column; gap: 32px;
}
.cta-stat {
    text-align: center; padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}
.cta-stat-number {
    display: block; font-family: var(--font-display);
    font-size: 2rem; font-weight: 700; color: var(--white);
}
.cta-stat-desc {
    font-size: 0.8rem; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ─── Visit ─── */
.visit {
    padding: 100px 0;
    background: var(--white);
}
.visit-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.visit-info { max-width: 480px; }
.visit-details { margin: 36px 0; display: flex; flex-direction: column; gap: 28px; }
.visit-detail {
    display: flex; align-items: flex-start; gap: 16px;
}
.visit-detail-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(194, 112, 90, 0.08);
    border-radius: var(--radius-sm); color: var(--terracotta);
}
.visit-detail h4 {
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 600;
    margin-bottom: 4px;
}
.visit-detail p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.visit-detail a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.visit-detail a:hover { color: var(--terracotta-deep); }
.hours-day { display: block; font-weight: 500; color: var(--text-mid); }
.hours-time { display: block; color: var(--text-light); }

.visit-map {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); min-height: 400px;
}
.map-placeholder {
    width: 100%; min-height: 400px;
    background: var(--sand-warm);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: var(--text-light);
    cursor: pointer; transition: var(--transition);
    text-align: center; padding: 40px;
}
.map-placeholder:hover { background: var(--sand); }
.map-placeholder p { font-size: 0.95rem; font-weight: 500; color: var(--text-mid); }
.map-hint { font-size: 0.8rem; color: var(--terracotta); }

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sand-warm) 0%, var(--sand) 100%);
}
.contact-container {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 60px; align-items: start;
}
.contact-text {
    font-size: 1rem; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-mid); text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--sand-warm);
    background: var(--white); font-family: var(--font-body);
    font-size: 0.9rem; color: var(--text-dark);
    transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(194, 112, 90, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
    font-size: 0.82rem; color: var(--text-light); text-align: center;
}
.form-note a { color: var(--terracotta); text-decoration: underline; }

.form-success {
    text-align: center; padding: 48px 24px;
    color: var(--terracotta);
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; margin: 16px 0 8px;
    color: var(--text-dark);
}
.form-success p { color: var(--text-light); }

.contact-info-side {
    display: flex; flex-direction: column; gap: 20px;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px; border: 1px solid rgba(194, 112, 90, 0.08);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: rgba(194, 112, 90, 0.2);
    box-shadow: var(--shadow-sm);
}
.contact-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(194, 112, 90, 0.08);
    border-radius: var(--radius-sm); color: var(--terracotta);
    margin-bottom: 14px;
}
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem; margin-bottom: 6px;
}
.contact-card a,
.contact-card p {
    font-size: 0.9rem; color: var(--text-light);
}
.contact-card a:hover { color: var(--terracotta); }

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px; padding-bottom: 48px;
}
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer h4 {
    font-family: var(--font-display);
    font-size: 0.95rem; color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-hours p,
.footer-contact p {
    font-size: 0.88rem; margin-bottom: 6px;
}
.footer-contact a { color: var(--terracotta-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-cards { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; }
    .about-images { max-width: 500px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item--tall { grid-column: 1 / 2; grid-row: 1 / 2; }
    .gallery-item--wide { grid-column: 2 / 3; }
    .cta-container { grid-template-columns: 1fr; }
    .cta-stats { flex-direction: row; }
    .visit-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100dvh;
        background: var(--sand-light);
        flex-direction: column; align-items: stretch;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    .nav-menu.open { right: 0; }
    .nav-toggle { display: flex; z-index: 100; }
    .nav-link { padding: 14px 16px; font-size: 1rem; }
    .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; }

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
    .features-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item,
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: auto; grid-row: auto;
        height: 220px;
    }
    .cta-stats { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .about-img-secondary { right: 0; bottom: -20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
