/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-900: #134e4a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --accent: var(--teal-600);
    --accent-light: var(--teal-100);
    --dark: var(--slate-900);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 48px rgba(15,23,42,0.12);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; font-weight: 700; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--teal-500);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--slate-900);
    margin-bottom: 20px;
}
.text-accent { color: var(--teal-600); }
.lead {
    font-size: 1.15rem;
    color: var(--slate-600);
    line-height: 1.7;
    max-width: 540px;
}
.text-center { text-align: center; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--slate-800); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-label { color: var(--teal-400); }
.section-dark .section-label::before { background: var(--teal-400); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--slate-800);
    border-color: var(--slate-300);
}
.btn-outline:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--slate-900);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--teal-50);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-nav {
    background: var(--teal-600);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 0.88rem;
}
.btn-nav:hover { background: var(--teal-700); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248,250,252,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(15,23,42,0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-900);
}
.logo-mark { color: var(--teal-600); }
.logo-light { color: #fff; }
.logo-light .logo-mark { color: var(--teal-400); }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s;
    position: relative;
}
.main-nav a:not(.btn):hover { color: var(--teal-600); }
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-500);
    transition: width 0.3s;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--slate-50);
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
}
.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--teal-100);
    top: -150px;
    right: -100px;
    opacity: 0.6;
}
.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--teal-200);
    bottom: 10%;
    left: -60px;
    opacity: 0.5;
}
.geo-triangle {
    position: absolute;
    width: 0; height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--teal-100);
    opacity: 0.4;
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
}
.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--teal-400) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.3;
    bottom: 25%;
    right: 10%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-100);
    color: var(--teal-700);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    color: var(--slate-900);
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}
.stat-label {
    font-size: 0.78rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-main img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--slate-50);
}
.hero-img-accent img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.hero-float-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.hero-float-card svg { color: var(--teal-600); flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 0.85rem; color: var(--slate-900); }
.hero-float-card span { font-size: 0.78rem; color: var(--slate-500); }

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    color: var(--slate-50);
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-stack { position: relative; }
.about-img-1 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-1 img { width: 100%; height: 620px; object-fit: cover; }
.about-img-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--slate-50);
}
.about-img-2 img { width: 400px; height: 300px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--teal-600);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(13,148,136,0.4);
}
.about-content .lead { margin-bottom: 16px; }
.about-content p {
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.75;
}
.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-100);
    color: var(--teal-600);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--slate-800);
    margin-bottom: 2px;
}
.feature-item span {
    font-size: 0.85rem;
    color: var(--slate-500);
}

/* ===== EXPERIENCE ===== */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.exp-card {
    position: relative;
    background: var(--slate-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 40px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.exp-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
}
.exp-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.07);
    line-height: 1;
    margin-bottom: 16px;
}
.exp-icon {
    width: 56px;
    height: 56px;
    background: rgba(45,212,195,0.15);
    color: var(--teal-400);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.exp-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.exp-card p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.65;
}

/* ===== SURROUNDINGS ===== */
.surroundings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.attractions-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.attractions-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.att-dot {
    width: 10px;
    height: 10px;
    background: var(--teal-500);
    border-radius: 50%;
    flex-shrink: 0;
}
.att-name {
    font-weight: 600;
    color: var(--slate-800);
    flex: 1;
}
.att-dist {
    font-size: 0.85rem;
    color: var(--slate-500);
}
.surroundings-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.sg-img { border-radius: var(--radius); overflow: hidden; }
.sg-img--1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.sg-img--1 img { width: 100%; height: 520px; object-fit: cover; }
.sg-img--2 img { width: 100%; height: 240px; object-fit: cover; }
.sg-img--3 img { width: 100%; height: 240px; object-fit: cover; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 60px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { height: 450px; }
.gallery-item--tall img { height: 680px; }
.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) img { height: 400px; }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--teal-600);
    overflow: hidden;
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape--1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    top: -100px; left: -100px;
}
.cta-shape--2 {
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.05);
    bottom: -80px; right: 10%;
}
.cta-shape--3 {
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.08);
    top: 20%; right: 5%;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-inner .section-label { color: var(--teal-200); }
.cta-inner .section-label::before { background: var(--teal-200); }
.cta-inner .section-title { color: #fff; margin-bottom: 16px; }
.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta .btn-primary { background: #fff; border-color: #fff; color: var(--teal-700); }
.cta .btn-primary:hover { background: var(--teal-50); border-color: #fff; }
.cta .btn-white { color: var(--teal-700); border-color: #fff; }
.cta .btn-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cd-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-100);
    color: var(--teal-600);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-500);
    margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
    font-size: 1rem;
    color: var(--slate-800);
    font-weight: 500;
}
.contact-detail a:hover { color: var(--teal-600); }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--slate-800);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--slate-50);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.active { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    background: var(--teal-100);
    color: var(--teal-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.form-success p { color: var(--slate-500); }

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--slate-800);
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-links strong, .footer-contact strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-300);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-400); }
.footer-contact address {
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a {
    color: var(--slate-500);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--teal-400); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--slate-600);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 500px; }
    .hero-img-main img { height: 500px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-2 { right: 0; }
    .surroundings-layout { grid-template-columns: 1fr; gap: 50px; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248,250,252,0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid var(--slate-200);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow);
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; gap: 16px; }
    .hero { min-height: auto; padding: 120px 0 100px; }
    .hero-inner { gap: 40px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; }
    .hero-img-accent { display: none; }
    .hero-float-card { right: 0; }
    .exp-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--wide img,
    .gallery-item--tall img,
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) img { height: 260px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 70px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-img-main img { height: 360px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
    .about-img-2 img { width: 220px; height: 160px; }
    .about-badge { position: relative; top: 0; left: 0; display: inline-flex; margin-bottom: 16px; }
}
