/* ─── Variables ─── */
:root {
    --bird-pink: #EC217C;
    --bird-purple: #662D91;
    --cream: #EC217C;
    --beige: #EC217C;
    --beige-mid: #EC217C;
    --gold: #EC217C;
    --gold-light: #EC217C;
    --gold-dark: #662D91;
    --brown: #662D91;
    --charcoal: #662D91;
    --body: #662D91;
    --muted: #EC217C;
    --white: #FFFFFF;

    --ff-display: 'Playfair Display', serif;
    --ff-body: 'DM Sans', sans-serif;
    --nav-h: 74px;
    --r-card: 18px;
    --sh-card: 0 8px 32px rgba(102, 45, 145, .09);
    --sh-hover: 0 22px 56px rgba(236, 33, 124, .16);
    --ease: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--white);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--ff-body);
}

/* ─── Utility ─── */
.wrap {
    width: min(1180px, 100%);
    margin-inline: auto;
    padding-inline: clamp(22px, 5vw, 64px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line {
    width: 38px;
    height: 1.5px;
    background: var(--gold);
}

.eyebrow-text {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* ─── NAVBAR ─── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--ease), box-shadow var(--ease);
}

#nav.scrolled {
    background: rgba(236, 33, 124, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(236, 33, 124, .18), 0 4px 24px rgba(102, 45, 145, .07);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-family: var(--ff-display);
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--bird-purple);
    letter-spacing: -.01em;
}

.nav-logo em {
    font-style: normal;
    color: var(--bird-pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
     text-decoration: none;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--body);
    letter-spacing: .02em;
    position: relative;
    transition: color var(--ease);
     text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--ease);
     text-decoration: none;
}

.nav-links a:hover {
    color: var(--bird-pink);
    text-decoration: none;
}

.nav-links a:hover::after {
    width: 100%;
     text-decoration: none;
}
.nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background var(--ease), color var(--ease), transform var(--ease);
    text-decoration: none;
}

.nav-btn:hover {
    box-shadow: 0 4px 20px rgba(236, 33, 124, .4);
    transform: translateY(-1px);
     text-decoration: none;
}

.nav-btn,
.nav-btn:hover,
.nav-btn:focus,
.nav-btn:active {
    text-decoration: none !important;
}

.nav-btn::after {
    display: none;
}
/* Hamburger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--ease);
}

.burger:hover {
    background: var(--beige);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mob-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--beige-mid);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 899;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--body);
    border-radius: 10px;
    transition: background var(--ease), color var(--ease);
}

.mob-menu a:hover {
    background: var(--beige);
    color: var(--gold-dark);
}

.mob-menu .nav-btn {
    margin-top: 8px;
    text-align: center;
    display: block;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding-top: var(--nav-h);
}

.sh {
    position: absolute;
    pointer-events: none;
}

.sh-a {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 33, 124, .22) 0%, transparent 70%);
    top: -110px;
    right: -90px;
    opacity: .5;
}

.sh-b {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 33, 124, .14) 0%, transparent 70%);
    bottom: 90px;
    left: -70px;
    opacity: .5;
}

.sh-c {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    top: 30%;
    right: 23%;
    opacity: .6;
}

.sh-d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    top: 54%;
    right: 36%;
    opacity: .85;
}

.sh-e {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(236, 33, 124, .28);
    top: 70%;
    right: 19%;
}

.sh-f {
    width: 96px;
    height: 96px;
    border: 1.5px solid rgba(236, 33, 124, .18);
    transform: rotate(45deg);
    bottom: 135px;
    right: 13%;
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--charcoal);
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero-p {
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    font-weight: 300;
    color: var(--charcoal);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 42px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-pri {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    background: var(--gold);
    color: var(--white);
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-pri:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 30px rgba(236, 33, 124, .45);
    transform: translateY(-2px);
}

.btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background var(--ease), color var(--ease), transform var (--ease);
}

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

.arr {
    display: inline-block;
    transition: transform var(--ease);
}

.btn-pri:hover .arr,
.btn-sec:hover .arr {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 33, 124, .24);
    flex-wrap: wrap;
}

.st-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.st-num b {
    color: var (--gold);
    font-weight: 700;
}

.st-lbl {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .5;
}

.scroll-cue span {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.mouse {
    width: 22px;
    height: 33px;
    border: 1.5px solid var(--beige-mid);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scr 1.6s ease-in-out infinite;
}

@keyframes scr {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(6px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.sect-hd {
    text-align: center;
    margin-bottom: 68px;
}

.sect-hd h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sect-hd p {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 460px;
    margin-inline: auto;
    line-height: 1.78;
}

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

.card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 42px 34px;
    box-shadow: var(--sh-card);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity var(--ease);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-hover);
    border-color: rgba(236, 33, 124, .28);
}

.card:hover::before {
    opacity: 1;
}

.card-no {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--ff-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: rgba(236, 33, 124, .1);
    line-height: 1;
    user-select: none;
}

.icon-box {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    background: linear-gradient(135deg, #FDF5E6, #F5E4C4);
    border: 1px solid rgba(236, 33, 124, .24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    font-size: 1.7rem;
    transition: box-shadow var(--ease), background var(--ease);
}

.card:hover .icon-box {
    background: linear-gradient(135deg, #F5E4C4, #EDD49E);
    box-shadow: 0 4px 16px rgba(236, 33, 124, .25);
}

.card h3 {
    font-family: var(--ff-display);
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card p {
    font-size: .91rem;
    color: var(--muted);
    line-height: 1.76;
    margin-bottom: 22px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag {
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--beige);
    font-size: .73rem;
    font-weight: 500;
    color: var(--brown);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 18px;
    transition: gap var(--ease);
}

.card:hover .card-cta {
    gap: 11px;
}

/* ─── CONTACT ─── */
#contact {
    padding: clamp(80px, 10vw, 136px) 0;
    background: var(--white);
}

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

.c-info h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -.02em;
    line-height: 1.22;
    margin-bottom: 18px;
}

.c-info p {
    font-size: .99rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 38px;
    max-width: 390px;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--white);
    border: 1px solid rgba(236, 33, 124, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 45, 145, .06);
}

.c-lbl {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}

.c-val {
    font-size: .93rem;
    font-weight: 500;
    color: var(--charcoal);
}

.c-form {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 42px 38px;
    box-shadow: var(--sh-card);
    border: 1px solid rgba(236, 33, 124, .14);
}

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

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.fg label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--body);
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #9b9b9bcc;
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--charcoal);
    outline: none;
    resize: none;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: #9b9b9bcc;
    opacity: .7;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(236, 33, 124, .12);
}

.fg select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7864' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.fg textarea {
    height: 118px;
}

.f-submit {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: var(--gold);
    color: var(--white);
    font-size: .93rem;
    font-weight: 600;
    letter-spacing: .06em;
    transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.f-submit:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 22px rgba(236, 33, 124, .4);
    transform: translateY(-1px);
}

/* ─── ABOUT ─── */
#about {
    padding: clamp(80px, 10vw, 136px) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(236, 33, 124, .18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text h2 em {
    font-style: italic;
    color: var(--gold-dark);
}

.about-text p {
    font-size: .99rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 16px;
}

.about-sign {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.about-sign-line {
    width: 36px;
    height: 1.5px;
    background: var(--gold);
}

.about-sign-name {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.about-sign-role {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .06em;
}

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

.stat-box {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--sh-card);
    border: 1px solid rgba(236, 33, 124, .14);
    border-left: 4px solid var(--gold);
    transition: transform var(--ease), box-shadow var(--ease);
}

.stat-box:hover {
    transform: translateX(6px);
    box-shadow: var(--sh-hover);
}

.stat-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FDF5E6, #F5E4C4);
    border: 1px solid rgba(236, 33, 124, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-box-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.stat-box-num span {
    color: var(--gold);
}

.stat-box-lbl {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 4px;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    padding: clamp(80px, 10vw, 136px) 0;
    overflow: hidden;
}

.testi-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.testi-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.testi-card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(36px, 5vw, 60px) clamp(28px, 5vw, 64px);
    box-shadow: var(--sh-card);
    border: 1px solid rgba(236, 33, 124, .14);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 32px;
    font-family: var(--ff-display);
    font-size: 9rem;
    line-height: 1;
    color: rgba(236, 33, 124, .10);
    user-select: none;
    pointer-events: none;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
}

.star {
    color: var(--gold);
    font-size: 1.1rem;
}

.testi-quote {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--charcoal);
    line-height: 1.72;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(236, 33, 124, .28);
}

.testi-name {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.testi-role {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 2px;
}

.testi-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--beige-mid);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.testi-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige-mid);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--ease), width var(--ease), border-radius var(--ease);
}

.testi-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    padding: 50px 0 30px;
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 18px;
}

.ft-logo {
    font-family: var(--ff-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: white;
}

.ft-logo em {
    font-style: normal;
    color: rgba(250, 247, 242, .5);
}

.ft-nav {
    display: flex;
    gap: 26px;
}

.ft-nav a {
    font-size: .86rem;
    color: rgba(250, 247, 242, .5);
    transition: color var(--ease);
}

.ft-nav a:hover {
    color: var(--gold-light);
}

.ft-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-copy {
    font-size: .8rem;
    color: rgba(250, 247, 242, .35);
}

.ft-soc {
    display: flex;
    gap: 12px;
}

.soc-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .11);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(250, 247, 242, .5);
    transition: background var(--ease), color var (--ease), border-color var(--ease);
}

.soc-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 520px) {
    .f-row {
        grid-template-columns: 1fr;
    }

    .c-form {
        padding: 30px 22px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-pri,
    .btn-sec {
        justify-content: center;
        text-align: center;
    }

    .ft-top {
        flex-direction: column;
        align-items: flex-start;
    }

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