/* ===================================
   IRFADILA PORTFOLIO — LUXURY DARK
   =================================== */

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

:root {
    --gold:        #C9A84C;
    --gold-light:  #E2C36E;
    --gold-dim:    #8A6B2C;
    --gold-bg:     rgba(201,168,76,0.10);
    --dark:        #0A0907;
    --dark-2:      #111009;
    --dark-3:      #1A1813;
    --dark-4:      #252219;
    --dark-5:      #302C20;
    --cream:       #F5F0E8;
    --cream-2:     #EDE7D9;
    --muted:       #9A9080;
    --muted-2:     #706860;

    /* ── Readable text on dark for numbered/stat elements ── */
    --num-color:   #D4AE60;   /* slightly lighter gold — clear on very dark bg  */

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --nav-h: 72px;
    --section-pad: clamp(80px, 10vw, 130px);
    --container: 1180px;
    --radius: 4px;
    --radius-lg: 10px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 8px; }
::selection { background: var(--gold); color: var(--dark); }

/* ===================================
   TYPOGRAPHY
   =================================== */
.section__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.section__title em { font-style: italic; color: var(--gold); }

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; }

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.28s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 600;
}

.btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(201,168,76,0.35);
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--lg  { padding: 16px 40px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 60px);
    transition: background 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10,9,7,0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.22s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 8px 18px;
    border-radius: var(--radius);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--gold); color: var(--dark); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ===================================
   HERO — Two-column layout
   =================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Subtle dark bg with grid lines */
.hero__bg-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 45%, rgba(201,168,76,0.055) 0%, transparent 65%),
                var(--dark);
}
.hero__bg-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.035) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.035) 80px);
}

.hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
    padding-top: var(--nav-h);
    padding-bottom: 60px;
    min-height: 100svh;
}

/* ── Hero text ── */
.hero__content { animation: fadeUp 1s var(--ease-out) both; }

.hero__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.hero__name {
    font-family: var(--font-display);
    font-size: clamp(68px, 11vw, 118px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 14px;
    animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}

.hero__title {
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.35s var(--ease-out) both;
}

.hero__tagline {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(245,240,232,0.68);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.9s 0.48s var(--ease-out) both;
}

.hero__tagline em { font-style: italic; color: rgba(245,240,232,0.88); }

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.6s var(--ease-out) both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero video column ── */
.hero__video-col {
    animation: fadeUp 1s 0.4s var(--ease-out) both;
    flex-shrink: 0;
}

.hero__video-frame {
    position: relative;
    width: clamp(240px, 28vw, 360px);
    aspect-ratio: 9/14;
    border-radius: 200px 200px 16px 16px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.25);
    background: var(--dark-3);
    box-shadow:
        0 0 0 6px rgba(201,168,76,0.06),
        0 0 60px rgba(201,168,76,0.08);
}

.hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Placeholder shown when video has no src */
.hero__video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-3);
}

/* Hide placeholder if video has src loaded */
.hero__video[src] + .hero__video-placeholder,
.hero__video:not(:empty) + .hero__video-placeholder { display: none; }

.hero__video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    text-align: center;
    padding: 24px;
}

.hero__video-placeholder-inner p {
    font-size: 12px;
    letter-spacing: 0.05em;
}

.hero__video-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,9,7,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--cream);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero__video-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(74,222,128,0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.hero__scroll {
    position: absolute;
    bottom: 36px; left: clamp(20px, 5vw, 60px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__scroll-line {
    display: block;
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% { opacity: 0.35; }
    50%     { opacity: 1; }
}

/* ===================================
   STATS — Improved readability
   =================================== */
.stats {
    background: var(--dark-3);
    border-top: 1px solid rgba(201,168,76,0.13);
    border-bottom: 1px solid rgba(201,168,76,0.13);
}

.stats__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 48px;
    flex: 1;
    min-width: 130px;
}

/* Fix: stat numbers now use a slightly lighter gold with a warm bg tint for legibility */
.stats__num {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 52px);
    font-weight: 400;
    color: var(--num-color);   /* #D4AE60 — clear on dark-3 */
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 1px 12px rgba(201,168,76,0.18);
}

.stats__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(154,144,128,0.9);  /* slightly more visible muted */
}

.stats__divider {
    width: 1px; height: 36px;
    background: rgba(201,168,76,0.16);
    flex-shrink: 0;
}

/* ===================================
   ABOUT
   =================================== */
.about { background: var(--dark-2); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.about__img-wrap { position: relative; }

.about__img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--dark-4);
    border: 1px solid rgba(201,168,76,0.15);
}

.about__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about__img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--muted-2);
    text-transform: uppercase;
}

/* Badge — dark text on gold bg for readability */
.about__badge {
    position: absolute;
    bottom: -20px; right: -16px;
    background: var(--gold);
    color: var(--dark);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: var(--dark);    /* explicit dark for contrast on gold */
}

.about__badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
    color: rgba(10,9,7,0.7);
}

.about__content { padding: 16px 0; }

.about__text {
    color: rgba(245,240,232,0.72);
    font-size: 15.5px;
    line-height: 1.82;
    margin-bottom: 18px;
}

.about__tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }

.tool-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 13px;
    border-radius: 2px;
    transition: all 0.22s;
}

.tool-tag:hover { background: var(--gold-bg); border-color: var(--gold); }

/* ===================================
   SKILLS
   =================================== */
.skills { background: var(--dark); }

.skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.1);
}

.skill-card {
    background: var(--dark);
    padding: 34px 30px;
    transition: background 0.28s;
    position: relative;
    overflow: hidden;
}

.skill-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.skill-card:hover { background: var(--dark-3); }
.skill-card:hover::after { width: 100%; }

.skill-card__icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.skill-card__icon svg { width: 100%; height: 100%; }

.skill-card__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 10px;
}

.skill-card__desc {
    font-size: 13.5px;
    color: rgba(245,240,232,0.6);
    line-height: 1.78;
}

/* ===================================
   YOUTUBE INTRO VIDEO
   =================================== */
.intro-video { background: var(--dark-2); }

.intro-video__sub {
    font-size: 15px;
    color: rgba(245,240,232,0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.intro-video__wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    /* 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
    background: var(--dark-3);
    box-shadow:
        0 0 0 1px rgba(201,168,76,0.08),
        0 32px 80px rgba(0,0,0,0.5);
}

.intro-video__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.intro-video__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.intro-video__cta-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: rgba(245,240,232,0.72);
    font-style: italic;
}

/* ===================================
   PORTFOLIO
   =================================== */
.portfolio { background: var(--dark); }

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-card {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: border-color 0.28s, transform 0.3s var(--ease-out);
}

.portfolio-card:hover {
    border-color: rgba(201,168,76,0.32);
    transform: translateY(-4px);
}

/* Fix: portfolio number — use cream on a muted bg tint so it reads clearly */
.portfolio-card__num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    width: 36px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.portfolio-card__body { flex: 1; }

.portfolio-card__category {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.portfolio-card__title {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.portfolio-card__desc {
    font-size: 13.5px;
    color: rgba(245,240,232,0.62);
    line-height: 1.72;
    margin-bottom: 14px;
}

.portfolio-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.portfolio-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(154,144,128,0.9);
    background: var(--dark-4);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 4px 10px;
    border-radius: 3px;
}

/* ===================================
   CTA BAND
   =================================== */
.cta-band {
    background: var(--dark-4);
    border-top: 1px solid rgba(201,168,76,0.14);
    border-bottom: 1px solid rgba(201,168,76,0.14);
    padding: 80px 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band__heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
}

.cta-band__heading em { font-style: italic; color: var(--gold); }

.cta-band__sub {
    font-size: 14.5px;
    color: rgba(245,240,232,0.6);
    margin-top: 10px;
}

/* ===================================
   CONTACT
   =================================== */
.contact { background: var(--dark-2); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 7vw, 96px);
    align-items: start;
}

.contact__text {
    font-size: 15.5px;
    color: rgba(245,240,232,0.68);
    line-height: 1.82;
    margin: 22px 0 34px;
}

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

.contact__item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color 0.2s;
}

a.contact__item:hover { color: var(--gold); }

.contact__item-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.22s, border-color 0.22s;
}

.contact__item-icon svg { width: 19px; height: 19px; }

a.contact__item:hover .contact__item-icon {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
}

.contact__item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact__item-value { font-size: 14.5px; color: var(--cream); }

.contact__social { display: flex; gap: 10px; margin-top: 6px; }

.social-btn {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.22s;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-bg); }

/* ── Form ── */
.contact__form-wrap {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input {
    background: var(--dark-4);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.22s;
    width: 100%;
    appearance: none;
}

.form-input::placeholder { color: var(--muted-2); }
.form-input:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239A9080' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.form-select option { background: var(--dark-3); }

.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-note { font-size: 12px; color: var(--muted-2); text-align: center; letter-spacing: 0.04em; }

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 44px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--gold); }
.footer__tagline { font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }

.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }

.footer__link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.22s;
}
.footer__link:hover { color: var(--gold); }

.footer__copy { font-size: 11.5px; color: var(--muted-2); }

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero__layout { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .hero__tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__video-col { order: -1; }
    .hero__video-frame { width: clamp(180px, 40vw, 280px); }
    .about__grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    .about__badge { right: -8px; }
    .contact__grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: var(--nav-h); right: 0;
        width: 100%; height: calc(100svh - var(--nav-h));
        background: rgba(10,9,7,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.38s var(--ease-out);
        border-left: 1px solid rgba(201,168,76,0.1);
    }
    .nav__links.open { transform: translateX(0); }
    .nav__link { font-size: 13px; }
    .nav__toggle { display: flex; }

    .hero__video-frame { width: clamp(160px, 52vw, 240px); }
    .stats__divider { display: none; }
    .stats__item { padding: 22px 16px; }
    .skills__grid { grid-template-columns: 1fr; }
    .portfolio__grid { grid-template-columns: 1fr; }
    .footer__inner { flex-direction: column; text-align: center; }
    .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero__layout { gap: 28px; }
    .hero__video-frame { width: 190px; aspect-ratio: 9/13; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .intro-video__wrap { border-radius: var(--radius); }
    .contact__form-wrap { padding: 22px 18px; }
    .about__badge { padding: 14px 16px; }
    .about__badge-num { font-size: 32px; }
}

.fab-email {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #c9982a;
    color: #fff8e7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201, 152, 42, 0.45);
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.fab-email:hover {
    background-color: #b5841e;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(201, 152, 42, 0.55);
    color: #fff8e7;
}

.fab-email:active {
    transform: scale(0.96);
}