/* ============================================
   Hair Depot By Carol — Custom Styles
   Color Palette: Charcoal (#2C2C2C) + Coral (#E86A5B)
   Fonts: DM Serif Display + Nunito
============================================ */

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

:root {
    --coral: #E86A5B;
    --coral-dark: #D4544A;
    --coral-light: #F5A096;
    --coral-pale: #FFF0EE;
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --charcoal-muted: #6B6B6B;
    --cream: #FDF8F6;
    --cream-dark: #F7EDE8;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-coral: 0 8px 30px rgba(232, 106, 91, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    font-weight: 400;
}

em {
    font-style: italic;
    color: var(--coral);
}

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

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

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

/* ---- Section Shared ---- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-muted);
    max-width: 560px;
    line-height: 1.7;
}

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

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

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

.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 106, 91, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

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

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

.btn--white:hover {
    background: var(--coral-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 106, 91, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 246, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    flex-shrink: 0;
}

.nav__logo-accent {
    color: var(--coral);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal-muted);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--coral);
    background: var(--coral-pale);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
    background: var(--coral);
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 8px;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-coral);
}

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

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

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

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--coral-light);
    top: -150px;
    right: -100px;
    opacity: 0.2;
}

hero__blob--2 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: -50px;
    left: 10%;
    opacity: 0.1;
}

.hero__blob--3 {
    width: 200px;
    height: 200px;
    background: var(--coral-pale);
    top: 40%;
    left: 30%;
    opacity: 0.5;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    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;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__emphasis {
    color: var(--coral);
    position: relative;
}

.hero__subheadline {
    font-size: 1.12rem;
    color: var(--charcoal-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal-light);
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/6;
}

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

.hero__image-frame:hover .hero__image {
    transform: scale(1.03);
}

.hero__floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
    bottom: 15%;
    left: -24px;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    top: 12%;
    right: -20px;
    animation-delay: 1.5s;
}

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

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

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.3) 0%, transparent 60%);
}

.service-card__overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: var(--coral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-card__overlay {
    transform: scale(1.1) rotate(5deg);
}

.service-card__body {
    padding: 24px;
}

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

.service-card__desc {
    font-size: 0.92rem;
    color: var(--charcoal-muted);
    line-height: 1.7;
}

/* ---- About ---- */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about__image-stack {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
}

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

.about__img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
    aspect-ratio: 7/8;
}

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

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-coral);
}

.about__exp-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    line-height: 1;
}

.about__exp-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.about__body {
    font-size: 1.05rem;
    color: var(--charcoal-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__highlight strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about__highlight span {
    font-size: 0.88rem;
    color: var(--charcoal-muted);
}

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

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

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    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(44,44,44,0.6) 0%, transparent 50%);
    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 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.gallery__item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 6/5;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    aspect-ratio: 4/3.5;
}

.gallery__item--wide {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 8/3.5;
}

/* ---- CTA Banner ---- */
.cta-banner {
    padding: 80px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-banner__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232,106,91,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(232,106,91,0.1) 0%, transparent 50%);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
}

/* ---- Contact ---- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact__desc {
    font-size: 1.05rem;
    color: var(--charcoal-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__detail strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 4px;
}

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

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

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

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact__form-col {
    position: sticky;
    top: 100px;
}

.contact__form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.92rem;
    color: var(--charcoal-muted);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder {
    color: var(--charcoal-muted);
    opacity: 0.6;
}

.form__input:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 106, 91, 0.1);
}

.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='%236B6B6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%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: 44px;
    cursor: pointer;
}

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

/* Form Success */
.contact__form-success {
    text-align: center;
    padding: 20px 0;
}

.form-success__icon {
    margin: 0 auto 16px;
    width: 72px;
    height: 72px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.95rem;
    color: var(--charcoal-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-success__btn {
    font-size: 0.88rem;
    padding: 10px 24px;
}

.contact__form.hidden {
    display: none;
}

/* ---- Footer ---- */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo span {
    color: var(--coral-light);
}

.footer__tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer__links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--coral-light);
    padding-left: 4px;
}

.footer__contact address {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer__contact a {
    color: var(--coral-light);
    font-weight: 700;
    transition: var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        gap: 48px;
    }

    .gallery__item--large {
        grid-column: 1 / 7;
    }

    .gallery__item--wide {
        grid-column: 4 / 13;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__link {
        padding: 14px 16px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    .nav__cta {
        margin-left: 0;
        justify-content: center;
        margin-top: 8px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }

    .hero__floating-card--1 {
        left: -10px;
        bottom: 10%;
    }

    .hero__floating-card--2 {
        right: -10px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .about__image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__img-accent {
        right: -16px;
        bottom: -20px;
    }

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

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery__item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        aspect-ratio: 4/3;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

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

    .contact__form-col {
        position: static;
    }

    .contact__form-card {
        padding: 28px;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 1.9rem;
    }

    .hero__floating-card {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

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

    .services, .about, .gallery, .contact {
        padding: 70px 0;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: 1;
        aspect-ratio: 4/3;
    }
}
