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

:root {
    --gold: #C9A87C;
    --gold-light: #E8D5B0;
    --gold-dark: #A07850;
    --black: #080808;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --white: #FAFAFA;
    --muted: #888888;
    --border: rgba(201, 168, 124, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ─── SELECTION ─── */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 60px;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-logo-text {
    line-height: 1.2;
}

.nav-logo-text .studio {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-logo-text .tagline {
    font-size: 9px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 28px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 124, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 100%, rgba(201, 168, 124, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #080808 0%, #0E0A07 50%, #080808 100%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    border: 1px solid var(--border);
}

.hero-lines::before {
    top: 15%;
    left: 5%;
    right: 5%;
    bottom: 15%;
}

.hero-lines::after {
    top: 20%;
    left: 8%;
    right: 8%;
    bottom: 20%;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 8px;
}

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

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0.85;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-academy {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 48px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-badge-icon {
    font-size: 16px;
}

.hero-badge-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 124, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    border: 1px solid rgba(201, 168, 124, 0.5);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 124, 0.08);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ─── SECTION BASE ─── */
section {
    padding: 120px 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
}

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

.section-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-style: italic;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
    background: var(--gold);
    padding: 16px 0;
    overflow: hidden;
    border-top: none;
    border-bottom: none;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── STATS ─── */
#stats {
    background: var(--dark2);
    padding: 80px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: var(--dark2);
    padding: 50px 40px;
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.stat-num sup {
    font-size: 24px;
    vertical-align: super;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
}

/* ─── ABOUT ─── */
#about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrap {
    position: relative;
}

.about-img-box {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 440px;
    background: var(--dark2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--muted);
    padding: 40px;
}

.about-img-placeholder .icon {
    font-size: 48px;
    opacity: 0.3;
}

.about-img-placeholder p {
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.4;
}

.about-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.4;
}

.about-corner-tl {
    top: -12px;
    left: -12px;
    border-width: 1px 0 0 1px;
}

.about-corner-br {
    bottom: -12px;
    right: -12px;
    border-width: 0 1px 1px 0;
}

.about-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    padding: 28px 32px;
    text-align: center;
}

.about-accent-box .num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--black);
    font-weight: 700;
    line-height: 1;
}

.about-accent-box .lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
}

.about-text {}

.about-para {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(250, 250, 250, 0.75);
    margin-bottom: 20px;
}

.cert-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cert-pill {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── COURSES ─── */
#courses {
    background: var(--dark);
}

.courses-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.courses-header .section-label {
    justify-content: center;
}

.courses-header .gold-divider {
    margin: 28px auto;
}

.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.course-tab {
    padding: 14px 48px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    transition: all 0.3s;
    margin: 0 -0.5px;
}

.course-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.course-tab:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: var(--dark);
    padding: 48px 40px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.course-card:hover {
    background: var(--dark2);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-duration {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 5px 14px;
    margin-bottom: 24px;
}

.course-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.course-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 28px;
}

.course-modules {
    list-style: none;
}

.course-modules li {
    font-size: 12px;
    color: rgba(250, 250, 250, 0.6);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-modules li::before {
    content: '—';
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
}

.course-badge {
    position: absolute;
    top: 48px;
    right: 40px;
    background: var(--gold);
    color: var(--black);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ─── FACULTY ─── */
#faculty {
    background: var(--black);
}

.faculty-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.faculty-header .gold-divider {
    margin: 28px auto;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faculty-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 48px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
    transition: border-color 0.3s;
}

.faculty-card:hover {
    border-color: var(--gold);
}

.faculty-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    position: relative;
}

.faculty-avatar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
}

.faculty-info {
    flex: 1;
}

.faculty-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.faculty-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.faculty-bio {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
}

.faculty-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.faculty-specialty {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
}

/* ─── EXPERIENCE ─── */
#experience {
    background: var(--dark);
    overflow: hidden;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
}

.exp-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.exp-feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
}

.exp-feature-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.exp-feature-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
}

.exp-visual {
    position: relative;
}

.exp-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.exp-tile {
    background: var(--dark2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 36px 20px;
    text-align: center;
}

.exp-tile:first-child {
    grid-column: span 2;
    padding: 48px;
}

.exp-tile-icon {
    font-size: 28px;
    opacity: 0.6;
}

.exp-tile-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─── CERTIFICATIONS ─── */
#certifications {
    background: linear-gradient(135deg, #0A0806 0%, #111008 50%, #0A0806 100%);
    text-align: center;
    padding: 120px 60px;
}

.cert-header {
    max-width: 600px;
    margin: 0 auto 80px;
}

.cert-header .section-label {
    justify-content: center;
}

.cert-header .gold-divider {
    margin: 28px auto;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.cert-card {
    border: 1px solid var(--border);
    padding: 48px 36px;
    background: rgba(201, 168, 124, 0.03);
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 124, 0.07);
}

.cert-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.cert-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
}

.cert-quote {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    opacity: 0.85;
}

.cert-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    margin-bottom: 20px;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    background: var(--dark2);
}

.test-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.test-header .gold-divider {
    margin: 28px auto;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 40px 36px;
    transition: border-color 0.3s;
}

.test-card:hover {
    border-color: rgba(201, 168, 124, 0.4);
}

.test-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.test-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 28px;
}

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

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--gold);
}

.test-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.test-course {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* ─── GALLERY ─── */
#gallery {
    background: var(--black);
    padding: 120px 0;
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 60px;
}

.gallery-header .gold-divider {
    margin: 28px auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 240px 240px;
    gap: 4px;
    padding: 0;
}

.gallery-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 124, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-icon {
    font-size: 24px;
    color: var(--gold);
}

.gallery-placeholder {
    font-size: 24px;
    opacity: 0.15;
}

.gallery-note {
    text-align: center;
    padding: 32px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* ─── LOCATION ─── */
#location {
    background: var(--dark);
    padding: 120px 60px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-map {
    aspect-ratio: 4/3;
    background: var(--dark2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--muted);
}

.location-map-icon {
    font-size: 48px;
    opacity: 0.3;
}

.location-map p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}

.location-info {}

.location-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.location-detail-icon {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.location-detail-value {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.5;
}

.location-branches {
    margin-top: 40px;
}

.location-branch-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.branch-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    padding: 8px 20px;
    margin: 4px;
    font-size: 12px;
    color: var(--white);
}

.branch-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ─── CTA ─── */
#cta {
    background: var(--gold);
    padding: 100px 60px;
    text-align: center;
}

#cta .section-title {
    color: var(--black);
    font-size: clamp(36px, 4vw, 60px);
}

#cta p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
    margin: 20px auto 48px;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.7;
}

.btn-dark {
    display: inline-block;
    padding: 18px 52px;
    background: var(--black);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin: 8px;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-dark {
    display: inline-block;
    padding: 18px 52px;
    border: 2px solid var(--black);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin: 8px;
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    padding: 80px 60px 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ─── MOBILE HAMBURGER ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    nav {
        padding: 20px 32px;
    }

    nav.scrolled {
        padding: 14px 32px;
    }

    .nav-links {
        gap: 24px;
    }

    section {
        padding: 80px 32px;
    }

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

    .about-img-box {
        max-width: 100%;
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    nav {
        padding: 18px 24px;
    }

    section {
        padding: 64px 24px;
    }

    #stats {
        padding: 60px 24px;
    }

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

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

    .faculty-card {
        flex-direction: column;
        gap: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-title {
        font-size: 42px;
    }

    .courses-tabs {
        flex-wrap: wrap;
    }

    .course-tab {
        padding: 12px 24px;
    }
}

/* Premium visual layer */
:root {
    --gold: #d7b89c;
    --gold-light: #f3e3d5;
    --gold-dark: #9d7256;
    --black: #060606;
    --dark: #0c0b0b;
    --dark2: #131111;
    --dark3: #1d1917;
    --white: #fbf7f2;
    --muted: #a59a92;
    --border: rgba(215, 184, 156, 0.2);
    --glass: rgba(13, 11, 10, 0.68);
    --panel: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(215, 184, 156, 0.025));
    --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.42);
    --shadow-gold: 0 18px 48px rgba(215, 184, 156, 0.18);
}

body {
    background:
        radial-gradient(circle at 14% 6%, rgba(215, 184, 156, 0.07), transparent 28%),
        linear-gradient(180deg, #060606 0%, #0a0807 48%, #060606 100%);
    color: var(--white);
    text-rendering: geometricPrecision;
}

nav {
    top: 16px;
    left: clamp(16px, 4vw, 44px);
    right: clamp(16px, 4vw, 44px);
    padding: 12px 18px;
    border: 1px solid rgba(215, 184, 156, 0.16);
    background: linear-gradient(180deg, rgba(9, 8, 8, 0.68), rgba(9, 8, 8, 0.42));
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

nav.scrolled {
    padding: 10px 18px;
    background: rgba(7, 7, 7, 0.9);
    border-color: rgba(215, 184, 156, 0.3);
}

.nav-logo img {
    width: 38px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(215, 184, 156, .18));
}

.nav-links {
    gap: clamp(16px, 2vw, 32px);
}

.nav-links a {
    position: relative;
    opacity: .72;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--gold);
    opacity: 1;
}

.nav-links a.active::after {
    transform: scaleX(1);
}

#hero {
    justify-content: flex-start;
    min-height: 100svh;
    background: #050505;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% 25%;
    z-index: 0;
    filter: saturate(.86) contrast(1.04);
    pointer-events: none;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .99) 0%, rgba(5, 5, 5, .88) 34%, rgba(5, 5, 5, .18) 68%, rgba(5, 5, 5, .68) 100%),
        linear-gradient(0deg, #060606 0%, transparent 30%),
        radial-gradient(circle at 74% 40%, rgba(215, 184, 156, .18), transparent 24%);
    transform: scale(1.015);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 70%);
}

.hero-lines {
    opacity: .35;
}

.hero-content {
    text-align: left;
    max-width: 760px;
    margin-left: max(6vw, 72px);
    padding-top: 80px;
}

.hero-eyebrow::before {
    display: none;
}

.hero-title {
    font-size: clamp(58px, 7.2vw, 112px);
    line-height: .95;
    letter-spacing: 0;
    text-shadow: 0 12px 50px rgba(0, 0, 0, .45);
}

.hero-subtitle {
    font-size: clamp(21px, 2.2vw, 31px);
}

.hero-actions,
.hero-badges {
    justify-content: flex-start;
}

.hero-badges {
    margin-bottom: 40px;
}

.hero-badge {
    padding: 9px 13px;
    border: 1px solid rgba(215, 184, 156, 0.17);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    border-radius: 999px;
}

.hero-badge-sep {
    display: none;
}

.hero-academy {
    color: rgba(250, 250, 250, .58);
}

.btn-primary,
.btn-secondary,
.nav-cta {
    border-radius: 999px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 48%, #b98763);
    box-shadow: var(--shadow-gold);
}

.btn-secondary,
.nav-cta {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
}

.marquee-wrap {
    background: linear-gradient(90deg, #b98e67, var(--gold-light), #b98e67);
    box-shadow: inset 0 1px rgba(255, 255, 255, .25), inset 0 -1px rgba(0, 0, 0, .22);
}

section {
    position: relative;
}

.section-title {
    letter-spacing: 0;
}

.section-sub,
.about-para,
.course-desc,
.faculty-bio,
.exp-feature-desc,
.cert-desc,
.location-detail-value,
.footer-brand p {
    color: rgba(251, 247, 242, 0.68);
}

#stats {
    background: linear-gradient(180deg, #100e0d, #0a0908);
}

.stats-grid,
.courses-grid {
    gap: 12px;
    background: transparent;
}

.stat-card,
.course-card,
.faculty-card,
.cert-card,
.test-card,
.exp-tile,
.location-map {
    background: var(--panel);
    border: 1px solid rgba(215, 184, 156, 0.16);
    box-shadow: var(--shadow-soft);
}

.stat-card,
.course-card,
.cert-card,
.test-card,
.exp-tile {
    border-radius: 8px;
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after,
.course-card::after,
.test-card::after,
.cert-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 34%);
    opacity: .36;
    pointer-events: none;
}

.about-img-box {
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 240px 240px 12px 12px;
    border-color: rgba(215, 184, 156, .42);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(.84) contrast(1.05);
}

.about-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 6, 6, .28), transparent 55%);
    pointer-events: none;
}

.about-accent-box {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 20px 54px rgba(0, 0, 0, .42);
}

.cert-pill,
.course-duration,
.faculty-specialty,
.branch-pill {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.course-card {
    min-height: 100%;
    border-radius: 8px;
}

.course-card:hover,
.test-card:hover,
.cert-card:hover,
.exp-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 184, 156, 0.42);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .5);
}

.course-card,
.test-card,
.cert-card,
.exp-tile {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.courses-tabs {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    border: 1px solid rgba(215, 184, 156, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.course-tab {
    border: 0;
    border-radius: 999px;
    margin: 0;
}

.course-tab.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.faculty-avatar {
    width: 100%;
    height: 410px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: #181414;
}

.faculty-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(.82) contrast(1.04);
    transition: transform .7s ease;
}

.faculty-card:hover .faculty-avatar img {
    transform: scale(1.035);
}

.faculty-card {
    padding: 0;
    overflow: hidden;
    display: block;
    border-radius: 8px;
}

.faculty-info {
    padding: 34px;
}

.faculty-grid {
    align-items: stretch;
}

.gallery-item {
    background: #171414;
    border-color: rgba(215, 184, 156, 0.14);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    filter: saturate(.9) contrast(1.03);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .5s;
}

.gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1);
}

.gallery-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent 65%);
}

.gallery-caption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 3;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(8px);
    transition: .35s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.location-map {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .18)),
        url('assets/images/editorial.webp') center 24% / cover no-repeat;
    border-radius: 8px;
}

.location-map-icon,
.location-map p {
    display: none;
}

.social-proof {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 22px;
}

@media (max-width: 900px) {
    nav {
        top: 12px;
        left: 16px;
        right: 16px;
    }

    .hero-content {
        margin-left: 0;
        padding: 120px 28px 70px;
    }

    .hero-bg {
        background:
            linear-gradient(0deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .68) 58%, rgba(5, 5, 5, .22) 100%);
    }

    .hero-video {
        object-position: 58% 20%;
    }

    .hero-content {
        align-self: flex-end;
    }

    .faculty-avatar {
        height: 360px;
    }

    .gallery-grid {
        gap: 8px;
        padding: 0 16px;
    }
}

@media (max-width: 600px) {
    nav,
    nav.scrolled {
        top: 10px;
        left: 12px;
        right: 12px;
        padding: 10px 14px;
    }

    .nav-logo img {
        width: 32px;
        height: 40px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-badge-sep,
    .hero-scroll {
        display: none;
    }

    .hero-badges {
        gap: 14px 20px;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-logo-text .tagline {
        display: none;
    }

    .about-img-box {
        border-radius: 180px 180px 10px 10px;
    }

    .about-accent-box {
        right: 12px;
        bottom: -22px;
    }

    .courses-tabs {
        width: 100%;
    }

    .course-tab {
        flex: 1;
        padding: 12px 14px;
    }

    .course-card,
    .faculty-info,
    .test-card,
    .cert-card {
        padding: 30px 24px;
    }

    .faculty-avatar {
        height: 320px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-item {
        min-height: 320px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Luxury footer expansion */
footer {
    padding-top: 0;
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .68) 48%, rgba(6, 6, 6, .94)),
        radial-gradient(circle at 70% 18%, rgba(215, 184, 156, 0.2), transparent 25%),
        url('assets/images/bride-7.webp') right center / auto 112% no-repeat,
        linear-gradient(180deg, #100b09 0%, #050505 70%);
}

footer::after {
    content: '';
    position: absolute;
    top: 82px;
    bottom: 34px;
    left: clamp(22px, 5vw, 70px);
    right: clamp(22px, 5vw, 70px);
    border: 1px solid rgba(215, 184, 156, 0.16);
    border-radius: 10px;
    pointer-events: none;
}

.footer-signature {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 28px auto 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(64px, 12vw, 168px);
    line-height: .82;
    color: transparent;
    -webkit-text-stroke: 1px rgba(215, 184, 156, 0.28);
    text-transform: uppercase;
    letter-spacing: 0;
    opacity: .82;
}

.footer-grid {
    grid-template-columns: minmax(300px, 1.15fr) minmax(250px, 0.95fr) repeat(3, minmax(118px, 0.58fr));
    align-items: stretch;
    padding-top: 38px;
}

.footer-brand {
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(215, 184, 156, .03)),
        rgba(10, 9, 8, .74);
    backdrop-filter: blur(16px);
}

.footer-brand .nav-logo-text .studio {
    font-size: 24px;
}

.footer-brand .nav-logo-text .tagline {
    color: rgba(251, 247, 242, .58);
}

.footer-enquiry {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(215, 184, 156, .28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(215, 184, 156, .22), rgba(255, 255, 255, .035)),
        rgba(8, 7, 7, .68);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.footer-enquiry::before {
    content: 'A1';
    position: absolute;
    right: -12px;
    bottom: -28px;
    font-family: 'Playfair Display', serif;
    font-size: 132px;
    line-height: 1;
    color: rgba(215, 184, 156, .1);
}

.footer-enquiry-label {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer-enquiry strong {
    display: block;
    max-width: 290px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
}

.footer-enquiry-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.footer-enquiry-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(215, 184, 156, .34);
    border-radius: 999px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.footer-enquiry-actions a:first-child {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: transparent;
}

.footer-enquiry-actions a:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--black);
}

.footer-col {
    padding: 26px 0 0 0;
}

.footer-col h4 {
    color: var(--gold);
}

.footer-bottom {
    margin-bottom: 4px;
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: 1.1fr .9fr;
    }

    .footer-col {
        padding-top: 0;
    }
}

@media (max-width: 700px) {
    footer {
        background:
            linear-gradient(180deg, rgba(6, 6, 6, .74), #050505 44%),
            url('assets/images/bride-7.webp') center top / 100% auto no-repeat,
            #050505;
    }

    footer::after {
        top: 74px;
        left: 14px;
        right: 14px;
    }

    .footer-signature {
        margin-top: 24px;
        font-size: 68px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

    .footer-enquiry strong {
        font-size: 30px;
    }
}

/* Final hero presence fix */
#hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 110px;
}

#hero .hero-content {
    padding-top: 0;
}

.inner-page .page-hero,
.courses-page .page-hero {
    min-height: 82vh;
    padding: 180px 60px 118px;
    align-items: center;
}

.page-hero-inner {
    transform: translateY(28px);
}

.page-hero .section-title {
    font-size: clamp(56px, 7vw, 104px);
    line-height: 1.02;
}

.page-hero .section-sub {
    margin-top: 24px;
    font-size: clamp(19px, 2vw, 25px);
}

.inner-page .page-hero + section {
    margin-top: 0;
}

@media (max-width: 768px) {
    #hero {
        min-height: 100svh;
        padding-top: 96px;
    }

    .inner-page .page-hero,
    .courses-page .page-hero {
        min-height: 78vh;
        padding: 144px 24px 86px;
    }

    .page-hero-inner {
        transform: translateY(18px);
    }

    .page-hero .section-title {
        font-size: clamp(46px, 13vw, 62px);
    }
}

/* Premium CTA section */
#cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(92px, 10vw, 140px) 60px;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .94), rgba(6, 6, 6, .62) 48%, rgba(6, 6, 6, .94)),
        radial-gradient(circle at 50% 34%, rgba(215, 184, 156, .26), transparent 32%),
        url('assets/images/bride-1.webp') center 34% / cover no-repeat,
        #080706;
}

#cta::before {
    content: '';
    position: absolute;
    inset: clamp(22px, 4vw, 46px);
    z-index: -1;
    border: 1px solid rgba(215, 184, 156, .24);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(215, 184, 156, .025)),
        rgba(6, 6, 6, .52);
    backdrop-filter: blur(10px);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .42);
}

#cta::after {
    content: 'Studio A1';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    color: transparent;
    -webkit-text-stroke: 1px rgba(215, 184, 156, .16);
    font-family: 'Playfair Display', serif;
    font-size: clamp(68px, 14vw, 190px);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

#cta .section-title {
    max-width: 860px;
    margin: 0 auto;
    color: var(--white);
    font-size: clamp(42px, 5.6vw, 82px);
    line-height: 1.02;
    text-shadow: 0 20px 70px rgba(0, 0, 0, .52);
}

#cta .section-title em {
    color: var(--gold-light);
}

#cta p {
    max-width: 620px;
    margin: 28px auto 42px;
    color: rgba(251, 247, 242, .76);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.65;
}

#cta .btn-dark,
#cta .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 8px 6px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 2.4px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .26);
}

#cta .btn-dark {
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 52%, #b98e67);
    color: var(--black);
}

#cta .btn-outline-dark {
    border: 1px solid rgba(215, 184, 156, .42);
    background: rgba(255, 255, 255, .035);
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}

#cta .btn-dark:hover,
#cta .btn-outline-dark:hover {
    transform: translateY(-3px);
}

#cta .btn-outline-dark:hover {
    background: rgba(215, 184, 156, .11);
}

@media (max-width: 700px) {
    #cta {
        padding: 86px 24px;
    }

    #cta::before {
        inset: 16px;
    }

    #cta .section-title {
        font-size: 42px;
    }

    #cta .btn-dark,
    #cta .btn-outline-dark {
        width: min(100%, 320px);
    }
}

/* Courses page premium finish */
.courses-page .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .7) 48%, rgba(6, 6, 6, .92)),
        radial-gradient(circle at 72% 28%, rgba(215, 184, 156, .2), transparent 28%),
        url('assets/images/bride-3.webp') right 18% / cover no-repeat;
}

.courses-page #courses {
    padding: 110px 60px 130px;
    background:
        radial-gradient(circle at 12% 8%, rgba(215, 184, 156, .1), transparent 28%),
        radial-gradient(circle at 84% 36%, rgba(255, 255, 255, .04), transparent 24%),
        linear-gradient(180deg, #060606, #120f0d 48%, #060606);
}

.courses-page #courses::after {
    content: '';
    position: absolute;
    inset: 34px clamp(18px, 4vw, 56px);
    border: 1px solid rgba(215, 184, 156, .12);
    border-radius: 12px;
    pointer-events: none;
}

.courses-page .courses-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto 34px;
    padding: 22px 26px;
    text-align: left;
    border-color: rgba(215, 184, 156, .22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(215, 184, 156, .025)),
        rgba(9, 8, 8, .72);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.courses-page .courses-header::before {
    content: 'A1';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(215, 184, 156, .34);
    border-radius: 50%;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.courses-page .courses-header .section-sub {
    max-width: 780px;
}

.courses-page .courses-tabs {
    position: sticky;
    top: 92px;
    z-index: 20;
    margin-bottom: 52px;
    border-color: rgba(215, 184, 156, .26);
    background: rgba(9, 8, 8, .82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.courses-page .course-tab {
    min-width: 152px;
    color: rgba(251, 247, 242, .66);
}

.courses-page .courses-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1220px;
}

.courses-page #tab-female .course-card {
    grid-column: span 2;
}

.courses-page #tab-female .course-card:nth-child(2),
.courses-page #tab-female .course-card:nth-child(3) {
    grid-column: span 3;
}

.courses-page #tab-male .course-card {
    grid-column: span 3;
}

.courses-page .course-card {
    min-height: 430px;
    padding: 36px;
    border: 1px solid rgba(215, 184, 156, .18);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(215, 184, 156, .022)),
        rgba(12, 10, 9, .86);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.courses-page .course-card::before {
    height: 100%;
    width: 3px;
    right: auto;
    bottom: 0;
    background: linear-gradient(180deg, var(--gold-light), var(--gold), transparent);
    transform: scaleY(.18);
    transform-origin: top;
}

.courses-page .course-card:hover::before {
    transform: scaleY(1);
}

.courses-page .course-card::after {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(215, 184, 156, .12), transparent 24%);
}

.courses-page .course-duration {
    margin-bottom: 26px;
    border-color: rgba(215, 184, 156, .28);
    color: var(--gold-light);
}

.courses-page .course-name {
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.courses-page .course-desc {
    font-size: 14px;
    color: rgba(251, 247, 242, .68);
}

.courses-page .course-modules {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.courses-page .course-modules li {
    padding: 9px 0;
    border-bottom-color: rgba(215, 184, 156, .09);
    color: rgba(251, 247, 242, .66);
}

.courses-page .course-modules li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(215, 184, 156, .45);
}

.courses-page .course-badge {
    top: 30px;
    right: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 14px 38px rgba(215, 184, 156, .18);
}

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

    .courses-page #tab-female .course-card,
    .courses-page #tab-female .course-card:nth-child(2),
    .courses-page #tab-female .course-card:nth-child(3),
    .courses-page #tab-male .course-card {
        grid-column: span 1;
    }
}

@media (max-width: 700px) {
    .courses-page #courses {
        padding: 78px 24px 92px;
    }

    .courses-page .courses-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .courses-page .courses-header::before {
        margin: 0 auto;
    }

    .courses-page .courses-tabs {
        top: 84px;
    }

    .courses-page .courses-grid {
        grid-template-columns: 1fr;
    }

    .courses-page .course-card {
        min-height: 0;
        padding: 32px 24px;
    }
}

/* Courses page final refinement */
.courses-page .page-hero {
    min-height: 62vh;
}

.courses-page .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .96), rgba(6, 6, 6, .72) 44%, rgba(6, 6, 6, .9)),
        linear-gradient(0deg, #060606 0%, transparent 34%),
        url('assets/images/bride-3.webp') center 18% / cover no-repeat;
}

.courses-page #courses {
    padding: 86px 60px 118px;
    background:
        linear-gradient(180deg, #060606 0%, #0c0a09 48%, #060606 100%);
}

.courses-page #courses::after {
    display: none;
}

.courses-page .courses-header {
    display: block;
    max-width: 760px;
    margin: 0 auto 34px;
    padding: 0;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.courses-page .courses-header::before {
    display: none;
}

.courses-page .courses-header .section-sub {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(251, 247, 242, .7);
}

.courses-page .courses-tabs {
    position: relative;
    top: auto;
    z-index: 1;
    width: fit-content;
    margin: 0 auto 46px;
    padding: 6px;
    border: 1px solid rgba(215, 184, 156, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    box-shadow: none;
}

.courses-page .course-tab {
    min-width: 150px;
    min-height: 44px;
    padding: 0 26px;
    color: rgba(251, 247, 242, .62);
    border-radius: 999px;
}

.courses-page .course-tab.active {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.courses-page .courses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
}

.courses-page #tab-female .course-card,
.courses-page #tab-female .course-card:nth-child(2),
.courses-page #tab-female .course-card:nth-child(3),
.courses-page #tab-male .course-card {
    grid-column: auto;
}

.courses-page #tab-female .course-card:nth-child(4),
.courses-page #tab-female .course-card:nth-child(5) {
    grid-column: span 1;
}

.courses-page .course-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 32px;
    border: 1px solid rgba(215, 184, 156, .16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
        #11100f;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.courses-page .course-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 184, 156, .34);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.courses-page .course-card::before {
    width: auto;
    height: 2px;
    right: 28px;
    left: 28px;
    bottom: auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(.22);
    transform-origin: center;
}

.courses-page .course-card:hover::before {
    transform: scaleX(1);
}

.courses-page .course-card::after {
    display: none;
}

.courses-page .course-duration {
    width: fit-content;
    margin-bottom: 22px;
    padding: 6px 14px;
    color: var(--gold);
    background: rgba(215, 184, 156, .055);
    border-color: rgba(215, 184, 156, .22);
}

.courses-page .course-name {
    min-height: 78px;
    margin-bottom: 16px;
    font-size: clamp(25px, 2vw, 31px);
    line-height: 1.12;
}

.courses-page .course-desc {
    min-height: 98px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.75;
}

.courses-page .course-modules {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(215, 184, 156, .1);
}

.courses-page .course-modules li {
    padding: 8px 0;
    font-size: 12px;
}

.courses-page .course-badge {
    top: 28px;
    right: 28px;
    color: var(--black);
}

.course-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 22px;
    padding: 0 22px;
    border: 1px solid rgba(215, 184, 156, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: var(--gold-light);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.course-enroll:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    box-shadow: 0 16px 42px rgba(215, 184, 156, .16);
}

.courses-page .course-enroll {
    width: 100%;
}

.courses-page #tab-male .courses-grid {
    max-width: 780px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .courses-page .courses-grid,
    .courses-page #tab-male .courses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .courses-page #courses {
        padding: 70px 24px 90px;
    }

    .courses-page .courses-tabs {
        width: 100%;
    }

    .courses-page .course-tab {
        min-width: 0;
        flex: 1;
    }

    .courses-page .courses-grid,
    .courses-page #tab-male .courses-grid {
        grid-template-columns: 1fr;
    }

    .courses-page .course-card {
        min-height: 0;
        padding: 28px 22px;
    }

    .courses-page .course-name,
    .courses-page .course-desc {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    nav.menu-open {
        border-radius: 24px;
    }

    nav.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: fixed;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 18px;
        border: 1px solid rgba(215, 184, 156, 0.2);
        border-radius: 22px;
        background: rgba(8, 7, 7, 0.96);
        backdrop-filter: blur(18px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
    }

    nav.menu-open .nav-links a {
        display: block;
        padding: 13px 14px;
        border-radius: 999px;
    }

    nav.menu-open .nav-links a:hover {
        background: rgba(215, 184, 156, 0.08);
    }

    nav.menu-open .nav-cta {
        display: inline-flex;
        position: fixed;
        top: calc(100% + 318px);
        left: 18px;
        right: 18px;
        width: auto;
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        color: var(--black);
        border-color: transparent;
    }
}

#cta {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .36), transparent 28%),
        linear-gradient(135deg, var(--gold-light), var(--gold) 52%, #b98e67);
}

footer {
    background:
        linear-gradient(180deg, #090807, #050505);
}

/* Multi-page layout */
.inner-page {
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 184, 156, .08), transparent 34%),
        var(--black);
}

.page-hero {
    min-height: 64vh;
    padding: 170px 60px 96px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #060606;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .78) 46%, rgba(6, 6, 6, .92)),
        radial-gradient(circle at 74% 26%, rgba(215, 184, 156, .18), transparent 26%),
        url('assets/images/hero.webp') right 24% / cover no-repeat;
    transform: scale(1.02);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .76), transparent 86%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    margin: 0 auto;
    text-align: center;
}

.page-hero .section-label {
    justify-content: center;
}

.page-hero .section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.page-hero .section-title {
    font-size: clamp(48px, 6vw, 86px);
}

.page-hero .section-sub {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.inner-page #about,
.inner-page #courses,
.inner-page #faculty,
.inner-page #certifications,
.inner-page #testimonials,
.inner-page #gallery,
.inner-page #location {
    padding-top: 82px;
}

.inner-page .page-hero {
    min-height: 58vh;
}

.inner-page .page-hero + section {
    position: relative;
}

.inner-page .page-hero + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: clamp(24px, 6vw, 90px);
    right: clamp(24px, 6vw, 90px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 184, 156, .45), transparent);
    opacity: .75;
}

.inner-page #about .about-text > .section-label,
.inner-page #about .about-text > .section-title,
.inner-page #about .about-text > .gold-divider,
.inner-page #courses .courses-header > .section-label,
.inner-page #courses .courses-header > .section-title,
.inner-page #courses .courses-header > .gold-divider,
.inner-page #certifications .cert-header > .section-label,
.inner-page #certifications .cert-header > .section-title,
.inner-page #certifications .cert-header > .gold-divider,
.inner-page #testimonials .test-header,
.contact-page .contact-panel > .section-label,
.contact-page .contact-panel > .section-title,
.contact-page .contact-panel > .gold-divider {
    display: none;
}

.inner-page #about .about-text {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(215, 184, 156, .14);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(215, 184, 156, .022));
}

.inner-page #courses .courses-header,
.inner-page #certifications .cert-header {
    max-width: 860px;
    margin-bottom: 46px;
    padding: 24px 30px;
    border: 1px solid rgba(215, 184, 156, .16);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(215, 184, 156, .025));
}

.inner-page #courses .courses-header .section-sub,
.inner-page #certifications .cert-header .section-sub,
.contact-page .contact-panel > .section-sub {
    margin-top: 0;
    color: rgba(251, 247, 242, .78);
    font-size: clamp(17px, 2vw, 22px);
}

.inner-page #testimonials .test-grid {
    padding-top: 16px;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 56vh;
        padding: 140px 24px 70px;
    }

    .page-hero .section-title {
        font-size: 44px;
    }
}

/* Contact page premium layout */
.contact-page .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .74) 48%, rgba(6, 6, 6, .9)),
        radial-gradient(circle at 72% 28%, rgba(215, 184, 156, .18), transparent 28%),
        url('assets/images/hero.webp') right 24% / cover no-repeat;
}

.contact-page #location {
    padding: 120px 60px;
    background:
        radial-gradient(circle at 18% 8%, rgba(215, 184, 156, .1), transparent 30%),
        linear-gradient(180deg, #060606, #110e0c 54%, #060606);
}

.contact-suite {
    display: grid;
    grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr);
    gap: clamp(36px, 6vw, 84px);
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-visual,
.contact-panel {
    position: relative;
    border: 1px solid rgba(215, 184, 156, .22);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 38px 110px rgba(0, 0, 0, .48);
}

.contact-visual {
    min-height: 680px;
    background: var(--dark2);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    display: block;
    filter: saturate(.9) contrast(1.04);
}

.contact-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(6, 6, 6, .72), transparent 52%),
        linear-gradient(90deg, transparent 58%, rgba(6, 6, 6, .34));
}

.contact-visual-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 24px;
    border: 1px solid rgba(215, 184, 156, .32);
    border-radius: 8px;
    background: rgba(7, 6, 6, .72);
    backdrop-filter: blur(14px);
}

.contact-visual-card span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.contact-visual-card strong {
    display: block;
    margin-top: 8px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
}

.contact-panel {
    padding: clamp(36px, 6vw, 72px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(215, 184, 156, .025)),
        rgba(10, 9, 8, .82);
}

.contact-panel::before {
    content: 'Contact';
    position: absolute;
    right: 28px;
    top: 20px;
    color: rgba(215, 184, 156, .12);
    font-family: 'Playfair Display', serif;
    font-size: clamp(54px, 8vw, 112px);
    line-height: 1;
    pointer-events: none;
}

.contact-panel > * {
    position: relative;
    z-index: 1;
}

.contact-detail-grid {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(215, 184, 156, .17);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
    text-decoration: none;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 184, 156, .42);
    background: rgba(215, 184, 156, .06);
}

.contact-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(215, 184, 156, .26);
    border-radius: 50%;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.contact-detail-card small {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contact-detail-card strong {
    display: block;
    color: rgba(251, 247, 242, .82);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(215, 184, 156, .34);
    border-radius: 999px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-actions a:first-child {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: transparent;
}

.contact-page .location-branches {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(215, 184, 156, .18);
}

@media (max-width: 900px) {
    .contact-page #location {
        padding: 80px 24px;
    }

    .contact-suite {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        min-height: 460px;
    }
}

@media (max-width: 600px) {
    .contact-panel {
        padding: 32px 22px;
    }

    .contact-detail-card {
        grid-template-columns: 44px 1fr;
        padding: 15px;
    }

    .contact-detail-icon {
        width: 44px;
        height: 44px;
    }

    .contact-actions a {
        width: 100%;
    }
}

/* Enrollment map + form */
.enroll-section {
    padding: 120px 60px;
    background:
        radial-gradient(circle at 18% 12%, rgba(215, 184, 156, .1), transparent 28%),
        linear-gradient(180deg, #060606, #0f0c0b 52%, #060606);
}

.enroll-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.enroll-map-panel,
.enroll-form-panel {
    position: relative;
    min-height: 620px;
    border: 1px solid rgba(215, 184, 156, .22);
    border-radius: 10px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(215, 184, 156, .025)),
        rgba(10, 9, 8, .84);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .42);
}

.form-submit-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(6, 6, 6, .9), rgba(20, 15, 12, .94)),
        radial-gradient(circle at 50% 42%, rgba(215, 184, 156, .18), transparent 34%);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: scale(.985);
    transition: opacity .35s ease, transform .35s ease;
}

.form-submit-overlay span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(215, 184, 156, .2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: submitSpin .8s linear infinite;
}

.form-submit-overlay strong {
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
}

.enroll-form-panel.is-submitting .form-submit-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.enroll-form-panel.is-submitting .form-row,
.enroll-form-panel.is-submitting .enroll-submit {
    opacity: .2;
}

.page-is-leaving .site-header,
.page-is-leaving main,
.page-is-leaving footer {
    opacity: .72;
    filter: saturate(.8);
    transition: opacity .45s ease, filter .45s ease;
}

.enroll-map-panel {
    position: relative;
}

.enroll-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
    filter: brightness(.72);
}

.enroll-map-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(6, 6, 6, .52), transparent 45%);
}

.enroll-map-label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 20px 22px;
    border: 1px solid rgba(215, 184, 156, .28);
    border-radius: 8px;
    background: rgba(7, 6, 6, .76);
    backdrop-filter: blur(14px);
}

.enroll-map-label span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.enroll-map-label strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
}

.enroll-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: clamp(28px, 4vw, 46px);
}

.form-row {
    display: grid;
    gap: 9px;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row.two-col span {
    display: grid;
    gap: 9px;
}

.enroll-form-panel label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.enroll-form-panel input,
.enroll-form-panel select,
.enroll-form-panel textarea {
    width: 100%;
    border: 1px solid rgba(215, 184, 156, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: var(--white);
    font: inherit;
    font-size: 14px;
    outline: none;
    padding: 15px 16px;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.enroll-form-panel select {
    color: rgba(251, 247, 242, .76);
}

.enroll-form-panel option {
    background: #111;
    color: var(--white);
}

.enroll-form-panel textarea {
    resize: vertical;
    min-height: 118px;
}

.enroll-form-panel input:focus,
.enroll-form-panel select:focus,
.enroll-form-panel textarea:focus {
    border-color: rgba(215, 184, 156, .58);
    background: rgba(215, 184, 156, .055);
    box-shadow: 0 0 0 3px rgba(215, 184, 156, .08);
}

.enroll-submit {
    min-height: 52px;
    margin-top: 4px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease;
}

.enroll-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(215, 184, 156, .18);
}

@media (max-width: 900px) {
    .enroll-section {
        padding: 80px 24px;
    }

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

    .enroll-map-panel,
    .enroll-form-panel,
    .enroll-map-panel iframe {
        min-height: 520px;
    }
}

@media (max-width: 600px) {
    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .enroll-map-panel,
    .enroll-map-panel iframe {
        min-height: 420px;
    }

    .enroll-form-panel {
        min-height: 0;
        padding: 28px 20px;
    }
}

/* Certificate visuals */
.home-certificate,
.certificate-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
    padding: 120px 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(215, 184, 156, .14), transparent 30%),
        linear-gradient(180deg, #070606, #120f0d 52%, #070606);
}

.home-certificate::before,
.certificate-showcase::before {
    content: '';
    position: absolute;
    inset: 40px clamp(22px, 5vw, 70px);
    /* border: 1px solid rgba(215, 184, 156, .16); */
    border-radius: 10px;
    pointer-events: none;
}

.home-certificate-copy,
.certificate-showcase-copy,
.home-certificate-frame,
.certificate-main-frame {
    position: relative;
    z-index: 1;
}

.home-certificate-copy,
.certificate-showcase-copy {
    max-width: 560px;
}

.home-certificate-frame,
.certificate-main-frame {
    padding: clamp(14px, 2vw, 24px);
    border: 1px solid rgba(215, 184, 156, .24);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(215, 184, 156, .035)),
        rgba(8, 7, 7, .74);
    box-shadow: 0 38px 110px rgba(0, 0, 0, .52);
}

.home-certificate-frame img,
.certificate-main-frame img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 4px;
    filter: saturate(.96) contrast(1.03);
}

.certificate-showcase {
    grid-template-columns: minmax(320px, .75fr) minmax(420px, 1.25fr);
}

.certificate-main-frame {
    transform: rotate(.6deg);
}

.student-certificate-moments {
    padding: 120px 60px;
    background:
        radial-gradient(circle at 18% 12%, rgba(215, 184, 156, .1), transparent 28%),
        var(--black);
}

.student-moments-head {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.student-moments-head .gold-divider {
    margin: 28px auto;
}

.student-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 12px;
    max-width: 1220px;
    margin: 0 auto;
}

.student-moment {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 184, 156, .18);
    border-radius: 8px;
    background: var(--dark2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.student-moment:first-child,
.student-moment:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}

.student-moment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.9) contrast(1.04);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.student-moment::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .78), transparent 54%);
    opacity: .86;
}

.student-moment figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.student-moment:hover img {
    transform: scale(1.045);
    filter: saturate(1.03);
}

@media (max-width: 1024px) {
    .home-certificate,
    .certificate-showcase {
        grid-template-columns: 1fr;
    }

    .student-moments-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }
}

@media (max-width: 600px) {
    .home-certificate,
    .certificate-showcase,
    .student-certificate-moments {
        padding: 76px 24px;
    }

    .home-certificate::before,
    .certificate-showcase::before {
        inset: 24px 14px;
    }

    .student-moments-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
    }

    .student-moment:first-child,
    .student-moment:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Certificate section overflow/fit fix */
.home-certificate,
.certificate-showcase {
    box-sizing: border-box;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.certificate-showcase {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
}

.home-certificate > *,
.certificate-showcase > * {
    min-width: 0;
}

.certificate-showcase-copy,
.home-certificate-copy {
    align-self: center;
}

.certificate-main-frame,
.home-certificate-frame {
    width: min(100%, 760px);
    justify-self: end;
    transform: none;
}

.certificate-main-frame img,
.home-certificate-frame img {
    width: 100%;
    height: auto;
    max-height: min(58vh, 560px);
    object-fit: contain;
}

.certificate-showcase .section-title,
.certificate-showcase .section-sub,
.certificate-showcase .section-label,
.certificate-showcase .gold-divider {
    opacity: 1;
}

.certificate-showcase-copy {
    padding: 8px 0;
}

.student-certificate-moments {
    overflow: hidden;
}

.student-moments-grid {
    width: min(100%, 1220px);
}

@media (max-width: 1024px) {
    .home-certificate,
    .certificate-showcase {
        grid-template-columns: 1fr;
    }

    .certificate-main-frame,
    .home-certificate-frame {
        justify-self: center;
        width: min(100%, 780px);
    }

    .certificate-main-frame img,
    .home-certificate-frame img {
        max-height: none;
    }
}

@media (max-width: 600px) {
    .certificate-showcase {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .certificate-main-frame,
    .home-certificate-frame {
        padding: 12px;
    }
}

/* Faculty page premium lead instructor */
.faculty-page .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .74) 46%, rgba(6, 6, 6, .9)),
        radial-gradient(circle at 72% 28%, rgba(215, 184, 156, .2), transparent 28%),
        url('assets/images/instructor.webp') right 18% / auto 110% no-repeat,
        #060606;
}

.faculty-page #faculty {
    padding: 120px 60px;
    background:
        radial-gradient(circle at 18% 8%, rgba(215, 184, 156, .09), transparent 30%),
        linear-gradient(180deg, #060606, #100d0b 52%, #060606);
}

.lead-instructor-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.lead-instructor-card {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
    gap: 0;
    min-height: 660px;
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(215, 184, 156, .025)),
        rgba(11, 10, 9, .86);
    border: 1px solid rgba(215, 184, 156, .24);
    box-shadow: 0 38px 110px rgba(0, 0, 0, .48);
}

.lead-instructor-card::before {
    content: 'Lead Instructor';
    position: absolute;
    right: 34px;
    top: 26px;
    z-index: 3;
    color: rgba(215, 184, 156, .16);
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 92px);
    line-height: 1;
    pointer-events: none;
}

.lead-instructor-card .faculty-avatar {
    width: 100%;
    height: 100%;
    min-height: 660px;
    border: 0;
    border-radius: 10px 0 0 10px;
}

.lead-instructor-card .faculty-avatar::after {
    inset: 22px;
    width: auto;
    height: auto;
    border-color: rgba(215, 184, 156, .32);
    opacity: 1;
}

.lead-instructor-media img {
    object-position: center top;
    filter: saturate(.88) contrast(1.05);
}

.lead-instructor-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(6, 6, 6, .48), transparent 55%),
        linear-gradient(90deg, transparent 54%, rgba(6, 6, 6, .28));
    pointer-events: none;
}

.lead-instructor-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    padding: 18px 22px;
    border: 1px solid rgba(215, 184, 156, .38);
    border-radius: 8px;
    background: rgba(7, 6, 6, .72);
    backdrop-filter: blur(14px);
}

.lead-instructor-badge span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.lead-instructor-badge strong {
    display: block;
    margin-top: 4px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
}

.lead-instructor-card .faculty-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 82px);
}

.lead-instructor-card .faculty-name {
    font-size: clamp(48px, 6vw, 82px);
    line-height: .95;
    margin-bottom: 18px;
}

.lead-instructor-card .faculty-title {
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(215, 184, 156, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
}

.lead-instructor-card .faculty-bio {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.9;
}

.lead-instructor-card .faculty-specialties {
    margin-top: 28px;
}

.lead-instructor-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(215, 184, 156, .18);
}

.lead-instructor-note span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lead-instructor-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .faculty-page .page-hero-bg {
        background:
            linear-gradient(0deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .58)),
            url('assets/images/instructor.webp') center top / cover no-repeat;
    }

    .faculty-page #faculty {
        padding: 80px 24px;
    }

    .lead-instructor-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .lead-instructor-card .faculty-avatar {
        min-height: 520px;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 600px) {
    .lead-instructor-card .faculty-avatar {
        min-height: 430px;
    }

    .lead-instructor-card .faculty-info {
        padding: 34px 24px;
    }

    .lead-instructor-card .faculty-name {
        font-size: 46px;
    }

    .lead-instructor-note {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Premium footer redesign */
footer {
    position: relative;
    overflow: hidden;
    padding: 0 clamp(22px, 5vw, 70px) 34px;
    border-top: 1px solid rgba(215, 184, 156, 0.22);
    background:
        radial-gradient(circle at 18% 8%, rgba(215, 184, 156, 0.12), transparent 30%),
        radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.045), transparent 24%),
        linear-gradient(180deg, #0f0c0b 0%, #070606 58%, #040404 100%);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 72%);
    pointer-events: none;
}

.footer-topline,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

.footer-topline {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(215, 184, 156, 0.16);
    color: rgba(251, 247, 242, 0.58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.footer-grid {
    grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(150px, .72fr));
    gap: clamp(28px, 5vw, 78px);
    padding: 66px 0 54px;
    margin-bottom: 0;
}

.footer-brand {
    padding: 30px;
    border: 1px solid rgba(215, 184, 156, 0.16);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(215, 184, 156, 0.025));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.footer-brand .nav-logo {
    align-items: center;
}

.footer-brand .nav-logo img {
    width: 46px;
    height: 58px;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
}

.footer-social {
    gap: 10px;
    margin-top: 28px;
}

.footer-social a {
    width: 42px;
    min-width: 42px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    border-color: rgba(215, 184, 156, 0.22);
    background: rgba(255, 255, 255, 0.025);
    color: var(--gold-light);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Thank-you page */
.thank-you-page {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .96), rgba(6, 6, 6, .72), rgba(6, 6, 6, .96)),
        radial-gradient(circle at 50% 28%, rgba(215, 184, 156, .22), transparent 32%),
        url('assets/images/hero.webp') center / cover no-repeat;
    animation: thankPageIn .7s ease both;
}

.thank-you-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.thank-you-card {
    width: min(820px, 100%);
    padding: clamp(34px, 6vw, 70px);
    text-align: center;
    border: 1px solid rgba(215, 184, 156, .24);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(215, 184, 156, .03)),
        rgba(6, 6, 6, .72);
    backdrop-filter: blur(16px);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .5);
    animation: thankCardIn .85s cubic-bezier(.2, .8, .2, 1) .12s both;
}

.thank-you-card .nav-logo {
    justify-content: center;
    margin-bottom: 34px;
}

.thank-you-card .section-label {
    justify-content: center;
}

.thank-you-card .section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.thank-you-card .section-title {
    font-size: clamp(42px, 6vw, 74px);
}

.thank-you-card .section-sub {
    max-width: 620px;
    margin: 24px auto 0;
    color: rgba(251, 247, 242, .76);
}

.thank-you-timer {
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: 34px auto 28px;
    padding: 12px 20px;
    border: 1px solid rgba(215, 184, 156, .24);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.thank-you-timer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform-origin: left;
    animation: timerDrain 10s linear forwards;
}

.thank-you-timer strong {
    color: var(--gold);
    font-size: 16px;
}

@keyframes submitSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes thankPageIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes thankCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.975);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes timerDrain {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .form-submit-overlay span,
    .thank-you-page,
    .thank-you-card,
    .thank-you-timer::after {
        animation: none;
    }
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(215, 184, 156, .18);
}

.footer-col {
    padding-top: 8px;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 28px;
    color: var(--gold-light);
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 13px;
    background: var(--gold);
    opacity: .72;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(251, 247, 242, 0.62);
    font-size: 13px;
    line-height: 1.45;
}

.footer-col ul li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid rgba(215, 184, 156, 0.5);
    border-radius: 50%;
    transition: background .3s ease, transform .3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-col ul li a:hover::before {
    background: var(--gold);
    transform: scale(1.15);
}

.footer-bottom {
    padding: 22px 0 0;
    border-top: 1px solid rgba(215, 184, 156, 0.16);
}

.footer-bottom span,
.footer-bottom-links a {
    color: rgba(251, 247, 242, 0.48);
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .footer-topline {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-topline {
        align-items: center;
        flex-direction: column;
        letter-spacing: 2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 42px 0 36px;
    }

    .footer-brand {
        padding: 24px;
    }

    .footer-bottom {
        gap: 18px;
    }
}

/* Final dramatic footer override */
footer {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(6, 6, 6, .68) 48%, rgba(6, 6, 6, .94)),
        radial-gradient(circle at 70% 18%, rgba(215, 184, 156, 0.2), transparent 25%),
        url('assets/images/bride-7.webp') right center / auto 112% no-repeat,
        linear-gradient(180deg, #100b09 0%, #050505 70%);
}

.footer-signature {
    max-width: 1220px;
    margin: 28px auto 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(64px, 12vw, 168px);
    line-height: .82;
    color: transparent;
    -webkit-text-stroke: 1px rgba(215, 184, 156, 0.28);
    text-transform: uppercase;
    opacity: .82;
}

.footer-grid {
    grid-template-columns: minmax(300px, 1.15fr) minmax(250px, 0.95fr) repeat(3, minmax(118px, 0.58fr));
    align-items: stretch;
    padding-top: 38px;
}

.footer-enquiry {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(215, 184, 156, .28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(215, 184, 156, .22), rgba(255, 255, 255, .035)),
        rgba(8, 7, 7, .68);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.footer-enquiry::before {
    content: 'A1';
    position: absolute;
    right: -12px;
    bottom: -28px;
    font-family: 'Playfair Display', serif;
    font-size: 132px;
    line-height: 1;
    color: rgba(215, 184, 156, .1);
}

.footer-enquiry-label {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer-enquiry strong {
    display: block;
    max-width: 290px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
}

.footer-enquiry-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.footer-enquiry-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(215, 184, 156, .34);
    border-radius: 999px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.footer-enquiry-actions a:first-child {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: transparent;
}

.footer-enquiry-actions a:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: 1.1fr .9fr;
    }
}

@media (max-width: 700px) {
    footer {
        background:
            linear-gradient(180deg, rgba(6, 6, 6, .74), #050505 44%),
            url('assets/images/bride-7.webp') center top / 100% auto no-repeat,
            #050505;
    }

    .footer-signature {
        margin-top: 24px;
        font-size: 68px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }
}
