/* ========================================
   Willy's Barber & Style — Stylesheet
   Teal + Slate Grey | Editorial Design
   ======================================== */

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

:root {
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --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;
    --slate-950: #020617;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(2, 6, 23, 0.08), 0 2px 4px -2px rgba(2, 6, 23, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(2, 6, 23, 0.1), 0 4px 6px -4px rgba(2, 6, 23, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(2, 6, 23, 0.12), 0 8px 10px -6px rgba(2, 6, 23, 0.06);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--slate-50);
    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;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--teal-700);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}
.skip-link:focus {
    top: var(--space-md);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--teal-700);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 520px;
    line-height: 1.7;
}

.text-slate {
    color: var(--slate-600);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-700);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.btn--primary:hover {
    background: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-300);
}
.btn--ghost:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    background: var(--teal-50);
}

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

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.logo__mark {
    width: 36px;
    height: 36px;
    background: var(--teal-700);
    border-radius: var(--radius-sm);
    position: relative;
}
.logo__mark::before,
.logo__mark::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 1px;
}
.logo__mark::before {
    width: 2px;
    height: 16px;
    top: 6px;
    left: 10px;
    transform: rotate(-30deg);
}
.logo__mark::after {
    width: 14px;
    height: 2px;
    top: 14px;
    left: 6px;
    transform: rotate(-30deg);
}

.logo__accent {
    color: var(--teal-700);
    font-weight: 400;
    font-style: italic;
}

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-600);
    transition: var(--transition);
}
.nav__link:hover {
    color: var(--teal-700);
}
.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--teal-700);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav__cta:hover {
    background: var(--teal-800);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav__hamburger {
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    position: absolute;
    transition: var(--transition);
}
.nav__hamburger::before,
.nav__hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    left: 0;
    transition: var(--transition);
}
.nav__hamburger::before { top: -7px; }
.nav__hamburger::after { top: 7px; }

.nav__toggle[aria-expanded="true"] .nav__hamburger {
    background: transparent;
}
.nav__toggle[aria-expanded="true"] .nav__hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--teal-500);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--slate-900);
    margin-bottom: var(--space-xl);
}

.hero__headline em {
    font-style: italic;
    color: var(--teal-700);
}

.hero__body {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat__number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1;
}

.stat__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

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

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

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-100);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--slate-400);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ---------- Services ---------- */
.services {
    padding: var(--space-5xl) 0;
    background: white;
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--teal-700);
    color: white;
    border-color: var(--teal-700);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.65;
}

/* ---------- About ---------- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--slate-50);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6.5;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-50);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about__badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    background: var(--teal-700);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.about__badge-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.about__content {
    padding: var(--space-xl) 0;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
}

.about__feature svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-5xl) 0;
    background: white;
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

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

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.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.05);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.2) 0%, transparent 40%);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

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

.gallery__item--large img {
    aspect-ratio: 6/5;
}

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

/* ---------- Testimonial Strip ---------- */
.testimonial-strip {
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
    color: white;
    text-align: center;
}

.testimonial-strip__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.testimonial-strip__quote svg {
    color: var(--teal-400);
    opacity: 0.5;
}

.testimonial-strip__quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--slate-200);
}

.testimonial-strip__divider {
    width: 60px;
    height: 2px;
    background: var(--teal-600);
    margin: 0 auto var(--space-xl);
}

.testimonial-strip__location {
    font-size: 0.9375rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.testimonial-strip__location svg {
    color: var(--teal-500);
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--slate-50);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__text {
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact__item:hover {
    border-color: var(--teal-300);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact__item-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    flex-shrink: 0;
}

.contact__item-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 2px;
}

.contact__item-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
    line-height: 1.5;
}

/* Contact Form */
.contact__form-wrap {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-xl);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--teal-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--slate-400);
}

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

.form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: var(--radius-md);
    color: var(--teal-800);
    text-align: center;
    margin-top: var(--space-lg);
}

.form__success svg {
    color: var(--teal-600);
}

.form__success p {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--slate-800);
}

.footer__brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
    color: var(--slate-500);
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: var(--space-lg);
}

.footer__links ul,
.footer__hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--slate-500);
    transition: var(--transition);
}
.footer__links a:hover {
    color: var(--teal-400);
}

.hours__day {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-400);
}

.hours__time {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: var(--slate-600);
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        gap: var(--space-2xl);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__img-secondary {
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        transform: translateX(100%);
        transition: var(--transition);
        opacity: 0;
        pointer-events: none;
    }
    
    .nav__list.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__link {
        font-size: 1.25rem;
    }
    
    .nav__cta {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--space-2xl);
    }
    
    .hero__eyebrow {
        justify-content: center;
    }
    
    .hero__body {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__scroll {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__layout {
        grid-template-columns: 1fr;
    }
    
    .about__images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about__img-secondary {
        right: -10px;
        bottom: -10px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 2;
    }
    
    .contact__layout {
        grid-template-columns: 1fr;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero__headline {
        font-size: 2.25rem;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 1;
    }
    
    .contact__form-wrap {
        padding: var(--space-lg);
    }
}
