/* ── TOKENS ─────────────────────────────────────────── */
:root {
    --ink: #0d1a27;
    --navy: #142030;
    --navy2: #1c2e42;
    --gold: #c8973a;
    --gold2: #e0b060;
    --cream: #f5f1ea;
    --white: #ffffff;
    --muted: #64748b;
    --border: rgba(200, 151, 58, .22);
    --border-light: rgba(200, 151, 58, .12);
}

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

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

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

svg {
    display: block;
}

/* ── NAV ────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: rgba(13, 26, 39, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold2);
    letter-spacing: .03em;
}

.nav-brand-sub {
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .05em;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold2);
}

.nav-actions {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .2s;
    white-space: nowrap;
}

.nav-btn-tg {
    background: var(--gold);
    color: var(--ink);
}

.nav-btn-tg:hover {
    background: var(--gold2);
}

.nav-btn-mail {
    background: transparent;
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .15);
}

.nav-btn-mail:hover {
    border-color: var(--border);
    color: var(--gold2);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: all .2s;
    cursor: pointer;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold2);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(200, 151, 58, .35);
}

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

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
}

.btn-gold-outline:hover {
    background: rgba(200, 151, 58, .08);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(1.5rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

/* decorative lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    background: linear-gradient(135deg, transparent 49.5%, rgba(200, 151, 58, .06) 49.5%, rgba(200, 151, 58, .06) 50.5%, transparent 50.5%),
    linear-gradient(135deg, transparent 59.5%, rgba(200, 151, 58, .04) 59.5%, rgba(200, 151, 58, .04) 60.5%, transparent 60.5%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200, 151, 58, .07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
}

.hero-kicker-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.hero-kicker-text {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.8rem;

}

.hero-heading em {
    font-style: italic;
    color: var(--gold2);
}

.hero-body {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* stats strip at bottom of hero */
.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    padding-right: 2.5rem;
    border-right: 1px solid var(--border-light);
    margin-right: 2.5rem;
}

.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
    margin-bottom: .3rem;
}

.hero-stat-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    line-height: 1.4;
}

/* ── SECTION COMMONS ────────────────────────────────── */
section {
    padding: 96px clamp(1.5rem, 5vw, 4rem);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .9rem;
}

.section-kicker-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-kicker-text {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: .9rem;
}

.section-lead {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 580px;
}

/* ── ABOUT ──────────────────────────────────────────── */
.about {
    background: var(--navy);
}

.about .section-title, .about .section-lead {
    color: var(--white);
}

.about .section-lead {
    color: rgba(255, 255, 255, .5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3.5rem;
    align-items: start;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold2);
    line-height: 1.55;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.about-p strong {
    color: var(--gold2);
    font-weight: 500;
}

.about-channels {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-top: 2rem;
}

.about-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 3px;
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    transition: background .2s, border-color .2s;
}

.about-channel:hover {
    background: rgba(200, 151, 58, .08);
    border-color: var(--border);
    color: var(--gold2);
}

.about-channel svg {
    color: var(--gold);
    flex-shrink: 0;
}

.articles-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1rem;
}

.article-row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.article-row svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.article-row a {
    color: rgba(255, 255, 255, .65);
    font-size: .87rem;
    line-height: 1.55;
    transition: color .2s;
}

.article-row a:hover {
    color: var(--gold2);
}

/* ── SERVICES ───────────────────────────────────────── */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5rem;
    border: 1px solid #ddd7cc;
    border-radius: 6px;
    overflow: hidden;
}

.svc {
    padding: 2.2rem 2rem;
    background: var(--white);
    border-right: 1px solid #ede8e0;
    border-bottom: 1px solid #ede8e0;
    position: relative;
    transition: background .2s;
}

.svc:nth-child(3n) {
    border-right: none;
}

.svc:nth-last-child(-n+3) {
    border-bottom: none;
}

.svc:hover {
    background: #fdfaf6;
}

.svc.featured {
    background: var(--navy);
}

.svc.featured:hover {
    background: var(--navy2);
}

.svc.featured .svc-title {
    color: var(--white);
}

.svc.featured .svc-text {
    color: rgba(255, 255, 255, .5);
}

.svc-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 151, 58, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.svc.featured .svc-icon {
    background: rgba(200, 151, 58, .15);
}

.svc-icon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.svc-icon-row .svc-icon {
    margin-bottom: 0;
}

.svc-badge {
    display: inline-block;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 151, 58, .12);
    border-radius: 2px;
    padding: .2rem .55rem;
    margin-bottom: .6rem;
}

.svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .7rem;
    line-height: 1.25;
}

.svc-text {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── MASTER PROJECT ─────────────────────────────────── */
.master {
    background: var(--ink);
}

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

.master .section-lead {
    color: rgba(255, 255, 255, .45);
}

.master-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}

.master-p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.master-p strong {
    color: var(--gold2);
    font-weight: 500;
}

.master-nums {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200, 151, 58, .1);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.mnum {
    padding: 1.5rem 1.6rem;
    background: rgba(255, 255, 255, .03);
}

.mnum-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}

.mnum-key {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: .35rem;
}

/* stages */
.stages {
    margin: 3.5rem 0 0;
}

.stages-head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.8rem;
}

.stage {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.4rem;
    margin-bottom: 1.2rem;
    align-items: start;
}

.stage-n {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(200, 151, 58, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}

.stage-b {
    padding-top: .5rem;
}

.stage-name {
    font-weight: 600;
    color: var(--white);
    font-size: .9rem;
    margin-bottom: .3rem;
}

.stage-meta {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.5;
}

/* results */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200, 151, 58, .08);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 3rem;
}

.result {
    padding: 1.6rem 1.8rem;
    background: rgba(255, 255, 255, .03);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.result-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(200, 151, 58, .35);
    line-height: 1;
    flex-shrink: 0;
}

.result-txt {
    font-size: .87rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

.result-txt strong {
    color: var(--white);
}

/* packages */
.pkg-head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 3.5rem 0 1.5rem;
}

.pkgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200, 151, 58, .1);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
}

.pkg {
    background: #111e2b;
    padding: 2.2rem 2rem;
    position: relative;
}

.pkg.pkg-feat {
    background: var(--gold);
}

.pkg-name {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.pkg-feat .pkg-name {
    color: var(--ink);
}

.pkg-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.pkg-feat .pkg-price {
    color: var(--ink);
}

.pkg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.pkg-list li {
    font-size: .82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .55);
    padding-left: 1.2rem;
    position: relative;
}

.pkg-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold2);
    font-weight: 700;
}

.pkg-feat .pkg-list li {
    color: rgba(13, 26, 39, .75);
}

.pkg-feat .pkg-list li::before {
    color: var(--ink);
}

.pkg-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(200, 151, 58, .2);
    color: var(--gold2);
    padding: .2rem .5rem;
    border-radius: 2px;
}

.pkg-feat .pkg-badge {
    background: rgba(13, 26, 39, .18);
    color: var(--ink);
}

.master-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ── PROJECTS ───────────────────────────────────────── */
.projects {
    background: #ede9e2;
}

.proj-list {
    margin-top: 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proj-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 2px;
    border-left: 3px solid transparent;
    transition: border-color .2s, background .2s;
    overflow: hidden;
}

.proj-row:hover {
    border-left-color: var(--gold);
    background: #fffdf8;
}

.proj-logo {
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ede8e0;
    min-height: 80px;
    align-self: stretch;
}

.proj-logo img {
    max-width: 130px;
    max-height: 48px;
    object-fit: contain;
}

.proj-logo-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
}

.proj-bullets {
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.proj-bullet {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .87rem;
    color: #374151;
    line-height: 1.65;
}

.proj-bullet svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

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

    .proj-logo {
        border-right: none;
        border-bottom: 1px solid #ede8e0;
        justify-content: flex-start;
        min-height: auto;
    }
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
    background: var(--cream);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testi {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    border-top: 3px solid var(--gold);
}

.testi-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--gold2);
    opacity: .2;
    position: absolute;
    top: .8rem;
    right: 1.5rem;
    pointer-events: none;
}

.testi-body {
    font-size: .87rem;
    color: #4b5563;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    font-weight: 600;
    color: var(--ink);
    font-size: .87rem;
}

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

/* ── COURSES ────────────────────────────────────────── */
.courses {
    background: var(--cream);
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.course {
    background: var(--white);
    border: 1px solid #ddd7cc;
    border-radius: 6px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background .2s, box-shadow .2s;
}

.course:hover {
    background: #fdfaf6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.course-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 151, 58, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.course-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: .6rem;
}

.course-sub {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: .8rem;
    margin-top: 1rem;
    font-size: .75rem;
    letter-spacing: .03em;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .6rem;
    border: 1px solid var(--border);
    color: var(--gold);
    border-radius: 3px;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    transition: color .2s;
}

.course-link:hover {
    color: var(--gold2);
}

.course-link svg {
    transition: transform .2s;
}

.course-link:hover svg {
    transform: translateX(3px);
}

/* ── CONTACT ────────────────────────────────────────── */
.contact {
    background: var(--ink);
}

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

.contact .section-lead {
    color: rgba(255, 255, 255, .45);
    max-width: 480px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.cmethod {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 3px;
    transition: background .2s, border-color .2s;
}

.cmethod:hover {
    background: rgba(200, 151, 58, .08);
    border-color: var(--border);
}

.cmethod-ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(200, 151, 58, .12);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.cmethod-lbl {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .2rem;
}

.cmethod-val {
    color: var(--white);
    font-size: .9rem;
}

.contact-box {
    background: rgba(200, 151, 58, .08);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 2.5rem;
}

.contact-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-box-text {
    font-size: .87rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--navy);
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
}

.footer-left {
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold2);
}

.footer-brand-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .15rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    transition: color .2s;
}

.footer-link:hover {
    color: var(--gold2);
}

/* ── SCROLL ANIMATION ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.shown {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid, .master-top, .contact-grid, .testi-grid, .courses-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid, .pkgs {
        grid-template-columns: 1fr 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 1.2rem;
    }

    .hero-stat:last-child {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .services-grid, .pkgs {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

    nav {
        display: none;
    }

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

/* ── CERTIFICATES ───────────────────────────────────── */
.certs {
    background: var(--navy);
}

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

.certs .section-lead {
    color: rgba(255, 255, 255, .45);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.cert-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
}

.cert-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.cert-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.cert-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.cert-card:hover .cert-img-wrap img {
    transform: scale(1.04);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 26, 39, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    color: var(--white);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-info {
    padding: .9rem 1rem;
    flex: 1;
    border-top: 1px solid var(--border-light);
}

.cert-org {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}

.cert-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lightbox.open {
    display: flex;
}

.lb-img {
    max-height: 88vh;
    max-width: min(600px, 90vw);
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}

.lb-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .7);
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    padding: .5rem 1.1rem;
    border-radius: 20px;
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    border: none;
    cursor: pointer;
    color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(255, 255, 255, .2);
}

.lb-close {
    top: 1.2rem;
    right: 1.2rem;
}

.lb-prev {
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lb-next {
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cert-grid {
        grid-template-columns: 1fr 1fr;
        gap: .8rem;
    }
}

/* ── ABOUT PHOTO ─────────────────────────────────────── */
.about-photo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-avatar {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 3px solid var(--border);
    object-fit: cover;
    box-shadow: 0 0 0 6px rgba(200, 151, 58, .08);
}