/* ===================================
   Adelaida's Male Grooming
   Vibrant Modern | Midnight Blue + Mint
   =================================== */

/* --- CSS Variables --- */
:root {
    --color-midnight: #0f172a;
    --color-midnight-light: #1e293b;
    --color-mint: #34d399;
    --color-mint-light: #6ee7b7;
    --color-mint-dark: #10b981;
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-gray-50: #f1f5f9;
    --color-gray-100: #e2e8f0;
    --color-gray-200: #cbd5e1;
    --color-gray-300: #94a3b8;
    --color-gray-600: #475569;
    --color-gray-800: #1e293b;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-midnight);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-mint);
    color: var(--color-midnight);
    border-color: var(--color-mint);
}

.btn--primary:hover {
    background: var(--color-mint-light);
    border-color: var(--color-mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-midnight);
    border-color: var(--color-midnight);
}

.btn--outline:hover {
    background: var(--color-midnight);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-midnight);
    border-color: var(--color-white);
}

.btn--light:hover {
    background: var(--color-mint);
    border-color: var(--color-mint);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: var(--color-white);
    color: var(--color-midnight);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-mint-dark);
    background: rgba(52, 211, 153, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 560px;
}

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-gray-100);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-midnight);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mint);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-midnight);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-mint);
    color: var(--color-midnight);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.nav__cta:hover {
    background: var(--color-mint-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-midnight);
    border-radius: 2px;
    transition: var(--transition);
}

.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 Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--color-mint);
    top: -200px;
    right: -100px;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--color-midnight);
    bottom: -150px;
    left: -100px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--color-mint);
    top: 40%;
    left: 30%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.06;
}

.hero__grid {
    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;
    padding: 8px 16px;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

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

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

.hero__headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--color-midnight);
}

.hero__headline--accent {
    color: var(--color-mint-dark);
    position: relative;
}

.hero__headline--accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(52, 211, 153, 0.3);
    border-radius: 3px;
    z-index: -1;
}

.hero__subheadline {
    font-size: 1.15rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    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: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-midnight);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-200);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero__image--main {
    width: 340px;
    height: 450px;
    top: 20px;
    right: 0;
    z-index: 2;
}

.hero__image--accent {
    width: 240px;
    height: 320px;
    top: 80px;
    right: 180px;
    z-index: 1;
    border: 4px solid var(--color-white);
}

.hero__image--floating {
    width: 160px;
    height: 160px;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    border: 4px solid var(--color-white);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background: var(--color-white);
}

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

.service-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-mint);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-mint);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--featured {
    background: var(--color-midnight);
    border-color: var(--color-midnight);
    grid-column: span 1;
}

.service-card--featured .service-card__title {
    color: var(--color-white);
}

.service-card--featured .service-card__desc {
    color: var(--color-gray-200);
}

.service-card--featured .service-card__link {
    color: var(--color-mint);
}

.service-card--featured .service-card__link svg {
    stroke: var(--color-mint);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon--mint {
    background: rgba(52, 211, 153, 0.12);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-midnight);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-midnight);
}

.service-card__link:hover {
    color: var(--color-mint-dark);
}

.service-card__link svg {
    transition: var(--transition);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

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

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-mint);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__floating-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-mint-dark);
}

.about__floating-label {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-midnight);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    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__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.gallery__item--large {
    grid-column: span 6;
}

.gallery__item:not(.gallery__item--large) {
    grid-column: span 3;
}

/* --- CTA Section --- */
.cta {
    padding: 100px 0;
    background: var(--color-midnight);
    position: relative;
    overflow: hidden;
}

.cta__card {
    position: relative;
    z-index: 1;
}

.cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__shape {
    position: absolute;
    border-radius: 50%;
}

.cta__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--color-mint);
    top: -200px;
    right: -100px;
    opacity: 0.08;
}

.cta__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--color-mint);
    bottom: -150px;
    left: -50px;
    opacity: 0.06;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.1rem;
    color: var(--color-gray-200);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--color-off-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-300);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 1rem;
    color: var(--color-midnight);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--color-midnight);
}

.contact__detail a:hover {
    color: var(--color-mint-dark);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
}

.contact__form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-midnight);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-midnight);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-mint);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.15);
}

.form__input::placeholder {
    color: var(--color-gray-300);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-mint-dark);
}

.form__success.show {
    display: flex;
}

/* --- Footer --- */
.footer {
    background: var(--color-midnight);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-300);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--color-gray-200);
}

.footer__links a:hover {
    color: var(--color-mint);
}

.footer__contact p {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    line-height: 1.8;
}

.footer__contact a:hover {
    color: var(--color-mint);
}

.footer__bottom {
    border-top: 1px solid var(--color-midnight-light);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--color-gray-300);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }
    
    .hero__visual {
        height: 500px;
    }
    
    .hero__image--main {
        width: 280px;
        height: 380px;
    }
    
    .hero__image--accent {
        width: 200px;
        height: 270px;
        right: 140px;
    }
    
    .hero__image--floating {
        width: 130px;
        height: 130px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__grid {
        gap: 60px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-gray-100);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: var(--transition);
    }
    
    .nav__menu.open {
        transform: translateY(0);
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__cta {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__visual {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__visual {
        order: -1;
    }
    
    .about__image-wrapper img {
        height: 400px;
    }
    
    .about__floating-card {
        left: 10px;
        bottom: -20px;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery__item--large {
        grid-column: span 2;
    }
    
    .gallery__item:not(.gallery__item--large) {
        grid-column: span 1;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-wrapper {
        padding: 28px;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__headline {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery__item--large {
        grid-column: span 1;
    }
}
