/* ============================================
   BELLA DONNA HAIR STUDIO — Stylesheet
   Burgundy & Blush · Editorial Aesthetic
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --burgundy-deep: #5C1A2A;
    --burgundy: #7B2D3B;
    --burgundy-light: #9E3A4A;
    --burgundy-pale: #C45262;
    
    --blush-cream: #FDF6F0;
    --blush: #F5E6D0;
    --blush-mid: #E8CDB8;
    --blush-dark: #D4A88A;
    
    --text-dark: #1A0A0E;
    --text-body: #3D1F28;
    --text-muted: #7A4A55;
    --text-light: #A87078;
    
    --white: #FFFFFF;
    --off-white: #FFFAF7;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

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

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

.section-title__accent {
    font-style: italic;
    color: var(--burgundy);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(92, 26, 42, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--burgundy);
}

.nav__logo-icon {
    color: var(--burgundy);
}

.nav__menu {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav__menu a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--burgundy);
    transition: width var(--transition);
}

.nav__menu a:hover {
    color: var(--burgundy);
}

.nav__menu a::after:hover {
    width: 100%;
}

.nav__cta {
    background-color: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase !important;
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: all var(--transition) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background-color: var(--burgundy-deep) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--burgundy);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--blush-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--burgundy);
}

.mobile-menu__cta {
    margin-top: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.875rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white) !important;
    background-color: var(--burgundy);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--burgundy-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(92, 26, 42, 0.88) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(92, 26, 42, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: var(--space-2xl) var(--space-md);
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero__accent {
    font-style: italic;
    color: var(--blush);
}

.hero__sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

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

.service-card {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 16px rgba(92, 26, 42, 0.06);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92, 26, 42, 0.12);
}

.service-card__img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--blush-mid);
    line-height: 1;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* ---------- About ---------- */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--blush-cream);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

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

.about__img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(92, 26, 42, 0.2);
    aspect-ratio: 4 / 5;
}

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

.about__badge {
    position: absolute;
    top: -1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    background-color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush-cream);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}

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

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.about__title__accent {
    font-style: italic;
    color: var(--burgundy);
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.about__stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--blush-mid);
}

.about__stat {
    flex: 1;
    text-align: center;
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.about__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about__stat-divider {
    width: 1px;
    background-color: var(--blush-mid);
    align-self: stretch;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.gallery__item--large {
    aspect-ratio: 3 / 4;
}

.gallery__item--wide {
    aspect-ratio: 16 / 7;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 26, 42, 0.6), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery__item-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--space-3xl) 0;
    background-color: var(--burgundy-deep);
}

.testimonials .section-eyebrow {
    color: var(--blush);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title__accent {
    color: var(--blush);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--blush-mid);
    margin-bottom: var(--space-sm);
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card__name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-card__detail {
    font-size: 0.8125rem;
    color: var(--blush-mid);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

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

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

.cta-banner__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(92, 26, 42, 0.92) 0%,
        rgba(123, 45, 59, 0.85) 100%
    );
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-sm);
}

.cta-banner__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--blush-cream);
}

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

.contact__info {
    padding: var(--space-md) 0;
}

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.contact__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

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

.contact__detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--burgundy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact__detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact__detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact__detail-value {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.contact__detail-value a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

/* Form */
.contact__form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 24px rgba(92, 26, 42, 0.08);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background-color: var(--blush-cream);
    border: 1.5px solid var(--blush-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--burgundy);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 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='%237A4A55' stroke-width='2' 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 1rem center;
    padding-right: 2.5rem;
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background-color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.form-success__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-success__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--burgundy-deep);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer__logo-icon {
    color: var(--blush);
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link-title {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-xs);
}

.footer__link-group a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__link-group a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
    text-align: center;
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__contact {
    display: flex;
    gap: var(--space-md);
}

.footer__contact a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        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);
    }
    
    .reveal.revealed {
        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; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item--large {
        grid-row: span 2;
        aspect-ratio: auto;
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
    
    .contact__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

@media (min-width: 768px) {
    .nav__menu {
        display: flex;
    }
    
    .nav__toggle {
        display: none;
    }
    
    .about__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .about__img-secondary {
        right: -2rem;
        bottom: -2.5rem;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .footer__links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero__headline {
        font-size: 5rem;
    }
}
