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

:root {
    --plum-50:  #faf5f9;
    --plum-100: #f3e8f0;
    --plum-200: #e9cde0;
    --plum-300: #d7a3c4;
    --plum-400: #c27aa8;
    --plum-500: #a8558f;
    --plum-600: #8b3d74;
    --plum-700: #7b2d8e;
    --plum-800: #5e1f6d;
    --plum-900: #3d0f4a;
    --plum-950: #2a0835;

    --amber-50:  #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    --sand-50:  #faf8f5;
    --sand-100: #f5f0ea;
    --sand-200: #ece4d8;
    --sand-300: #d4c8b8;
    --sand-700: #6b5e50;
    --sand-800: #4a4036;
    --sand-900: #2d2620;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(61,15,74,.08), 0 1px 2px rgba(61,15,74,.06);
    --shadow-md: 0 4px 16px rgba(61,15,74,.10), 0 2px 6px rgba(61,15,74,.07);
    --shadow-lg: 0 12px 40px rgba(61,15,74,.14), 0 4px 12px rgba(61,15,74,.09);
    --shadow-xl: 0 24px 60px rgba(61,15,74,.18), 0 8px 20px rgba(61,15,74,.11);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--sand-900);
    background: var(--sand-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

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

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--plum-700); color: #fff;
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── Typography ─────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--plum-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--sand-900);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--sand-700);
    max-width: 600px;
    line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--sand-900);
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn--amber:hover {
    background: linear-gradient(135deg, var(--amber-300), var(--amber-400));
    box-shadow: 0 8px 24px rgba(245,158,11,.45);
}

.btn--plum {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: #fff;
    box-shadow: 0 4px 14px rgba(123,45,142,.35);
}
.btn--plum:hover {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
    box-shadow: 0 8px 24px rgba(123,45,142,.45);
}

.btn--white {
    background: #fff;
    color: var(--plum-700);
    box-shadow: var(--shadow-md);
}
.btn--white:hover {
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.6);
}

.btn--sm { padding: 9px 18px; font-size: .875rem; border-radius: var(--radius-sm); }
.btn--lg { padding: 15px 30px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,245,249,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--plum-100);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav__logo-mark {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--plum-700);
    background: linear-gradient(135deg, var(--plum-600), var(--plum-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav__logo-text {
    font-size: .9rem;
    font-weight: 600;
    color: var(--sand-900);
    line-height: 1.2;
}
.nav__logo-accent { color: var(--amber-600); }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.nav__menu a {
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--sand-800);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.nav__menu a:hover { background: var(--plum-50); color: var(--plum-700); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sand-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.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: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: rgba(250,245,249,.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--plum-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
    }
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__menu a { padding: 12px 14px; font-size: 1rem; width: 100%; }
    .nav__menu .btn--amber { text-align: center; justify-content: center; margin-top: 8px; }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 120px;
    overflow: hidden;
}
.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(42,8,53,.82) 0%,
        rgba(123,45,142,.72) 50%,
        rgba(93,31,109,.65) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.hero__card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: var(--shadow-xl);
}

.hero__badge {
    display: inline-block;
    background: rgba(251,191,36,.2);
    color: var(--amber-200);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid rgba(251,191,36,.3);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
}
.hero__accent {
    background: linear-gradient(135deg, var(--amber-300), var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Floating stat cards */
.hero__stats {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 170px;
    flex: 1;
    border: 1px solid var(--plum-50);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.stat-card__icon {
    color: var(--plum-600);
    margin-bottom: 2px;
}
.stat-card__value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-700);
}
.stat-card__label {
    font-size: .8rem;
    color: var(--sand-700);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero { padding: 100px 20px 140px; min-height: auto; }
    .hero__stats {
        position: relative;
        bottom: auto; left: auto;
        transform: none;
        margin-top: 48px;
        flex-wrap: wrap;
    }
    .stat-card { min-width: 140px; flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 480px) {
    .stat-card { flex: 1 1 100%; }
}

/* ── Services ───────────────────────────────────── */
.services {
    padding: 120px 24px 100px;
    background: var(--sand-50);
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card__img {
    height: 200px;
    overflow: hidden;
}
.service-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-card__img img { transform: scale(1.06); }

.service-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-200));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.service-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sand-900);
}

.service-card__body p {
    font-size: .95rem;
    color: var(--sand-700);
    line-height: 1.7;
}

/* ── Why Us ─────────────────────────────────────── */
.why-us {
    padding: 100px 24px;
    background: linear-gradient(160deg, var(--plum-950) 0%, var(--plum-900) 60%, var(--plum-800) 100%);
    color: #fff;
}

.why-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us__media { position: relative; }
.why-us__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.why-us__img-main img { width: 100%; height: 480px; object-fit: cover; }

.why-us__img-float {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,.15);
}
.why-us__img-float img { width: 240px; height: 180px; object-fit: cover; }

.why-us__content .section-tag { background: rgba(251,191,36,.18); color: var(--amber-300); }
.why-us__content .section-title { color: #fff; }
.why-us__lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-bottom: 32px;
}

.why-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-item__check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand-900);
    margin-top: 2px;
}
.why-item strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
}
.why-item span {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.why-us__content .btn--plum {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--sand-900);
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.why-us__content .btn--plum:hover {
    box-shadow: 0 8px 24px rgba(245,158,11,.5);
}

@media (max-width: 900px) {
    .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
    .why-us__img-float { right: 16px; bottom: -24px; }
    .why-us__img-main img { height: 360px; }
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    padding: 100px 24px;
    background: var(--sand-50);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-200);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    display: block;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide img { height: 280px; }
.gallery__item:not(.gallery__item--wide) img { height: 220px; }

@media (max-width: 768px) {
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item--wide img, .gallery__item:not(.gallery__item--wide) img { height: 200px; }
}
@media (max-width: 500px) {
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item--wide img, .gallery__item:not(.gallery__item--wide) img { height: 240px; }
}

/* ── Testimonials ───────────────────────────────── */
.testimonials {
    padding: 100px 24px;
    background: linear-gradient(170deg, var(--plum-50) 0%, var(--sand-100) 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--plum-100);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    position: absolute;
    top: 16px; left: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--plum-200);
    pointer-events: none;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--sand-800);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card__footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--plum-100);
}
.testimonial-card__name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--sand-900);
}
.testimonial-card__location {
    font-size: .8rem;
    color: var(--plum-600);
}

/* ── CTA ────────────────────────────────────────── */
.cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--plum-800), var(--plum-950));
}
.cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta__content { flex: 1; min-width: 280px; }
.cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 480px;
}
.cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cta__actions .btn--amber {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--sand-900);
}

@media (max-width: 640px) {
    .cta__card { flex-direction: column; text-align: center; }
    .cta__text { margin: 0 auto; }
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 100px 24px;
    background: var(--sand-50);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact__lead {
    font-size: 1.05rem;
    color: var(--sand-700);
    line-height: 1.75;
    margin-bottom: 32px;
}

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

.contact__detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--plum-700);
    margin-bottom: 4px;
}
.contact__detail-label svg { flex-shrink: 0; }

.contact__detail dd {
    font-size: 1rem;
    color: var(--sand-800);
    line-height: 1.7;
}
.contact__detail a {
    color: var(--plum-700);
    border-bottom: 1px solid var(--plum-200);
    transition: color var(--transition), border-color var(--transition);
}
.contact__detail a:hover {
    color: var(--plum-500);
    border-color: var(--plum-500);
}

/* Form */
.contact__form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-200);
}

.contact__form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sand-900);
    margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--sand-800);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--sand-900);
    background: var(--sand-50);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(168,85,143,.12);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
    font-size: .8rem;
    color: var(--sand-700);
    text-align: center;
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success__icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--plum-700);
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--sand-900);
    margin-bottom: 10px;
}
.form-success p {
    color: var(--sand-700);
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .contact__layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: var(--sand-900);
    color: rgba(255,255,255,.7);
    padding: 64px 24px 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}
.footer__logo span { color: var(--amber-400); }
.footer__tagline { font-size: .9rem; line-height: 1.7; max-width: 280px; }

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber-400); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .9rem;
}
.footer__contact a {
    color: rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: color var(--transition), border-color var(--transition);
    display: inline-block;
    width: fit-content;
}
.footer__contact a:hover { color: var(--amber-400); border-color: var(--amber-400); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

@media (max-width: 700px) {
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; }
}

/* ── Scroll Reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }
}
