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

:root {
    --black: #080808;
    --deep: #0d0d0d;
    --surface: #131313;
    --surface-2: #1a1a1a;
    --border: rgba(255, 255, 255, .07);
    --border-light: rgba(255, 255, 255, .14);
    --gold: #c9a96e;
    --gold-light: #e2c99a;
    --gold-dim: rgba(201, 169, 110, .18);
    --white: #f5f0e8;
    --muted: rgba(245, 240, 232, .45);
    --muted-2: rgba(245, 240, 232, .25);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --font-italic: 'Playfair Display', Georgia, serif;

    --ease-expo: cubic-bezier(.16, 1, .3, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);

    --section-gap: clamp(6rem, 12vw, 10rem);
    --container: min(90rem, 94vw);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(.85rem, 1.1vw, 1rem);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    font-family: var(--font-body);
}



/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 1.6rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .5s var(--ease-smooth), padding .4s;
}

#nav.scrolled {
    background: rgba(8, 8, 8, .92);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--white);
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: .6rem;
    letter-spacing: .35em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.8rem);
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease-expo);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .75rem 2.4rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: .75rem;
    transition: background .3s, color .3s !important;
}

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

.nav-cta::after {
    display: none !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--white);
    transition: transform .35s, opacity .35s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(8, 8, 8, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: .08em;
    transition: color .3s;
}

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

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(160deg,
            rgba(8, 8, 8, .15) 0%,
            rgba(8, 8, 8, .4) 40%,
            rgba(8, 8, 8, .88) 100%);
}

/* Fallback cinematic bg */
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201, 169, 110, .08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201, 169, 110, .04) 0%, transparent 50%),
        linear-gradient(175deg, #111 0%, #080808 50%, #050505 100%);
}

.hero-bg-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
    padding-bottom: clamp(3.5rem, 8vw, 6rem);
    max-width: 800px;
}

.hero-eyebrow {
    font-size: .68rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .9s var(--ease-expo) .3s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8.5vw, 7.5rem);
    font-weight: 300;
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s var(--ease-expo) .5s forwards;
}

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

.hero-sub {
    margin-top: 1.8rem;
    font-size: clamp(.82rem, 1.2vw, .95rem);
    font-weight: 300;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.85;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .9s var(--ease-expo) .8s forwards;
}

.hero-actions {
    margin-top: 2.8rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .9s var(--ease-expo) 1s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: var(--gold);
    color: var(--black);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1.1rem 2.8rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-expo);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    transform: translateX(-100%);
    transition: transform .4s var(--ease-expo);
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
    transition: color .3s;
}

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

.btn-ghost i {
    transition: transform .3s var(--ease-expo);
}

.btn-ghost:hover i {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: clamp(1.5rem, 5vw, 4rem);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-expo) 1.4s forwards;
}

.hero-scroll span {
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted-2);
    writing-mode: vertical-rl;
}

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

/* Awards strip */
.hero-awards {
    position: absolute;
    bottom: 2.5rem;
    left: clamp(1.5rem, 6vw, 5rem);
    z-index: 10;
    display: flex;
    gap: 2.5rem;
    opacity: 0;
    animation: fadeUp .8s var(--ease-expo) 1.3s forwards;
}

.award-item {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.award-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.award-label {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 500;
}

/* ─────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────── */
.marquee-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    white-space: nowrap;
    padding: .9rem 0;
}

.marquee-inner {
    display: inline-flex;
    gap: 0;
    animation: marquee 30s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2.5rem;
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 500;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SECTION UTILITY
───────────────────────────────────────── */
.section {
    padding: var(--section-gap) 0;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .62rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.4rem;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.01em;
}

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

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}

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

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .24s;
}

.reveal-delay-3 {
    transition-delay: .36s;
}

.reveal-delay-4 {
    transition-delay: .48s;
}

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
#portfolio {
    background: var(--deep);
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.portfolio-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
    background: none;
    border: 1px solid transparent;
    padding: .5rem 1.2rem;
    transition: color .3s, border-color .3s;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--gold);
    border-color: var(--border-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
}

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

.portfolio-item:nth-child(2) {
    grid-column: span 5;
}

.portfolio-item:nth-child(3) {
    grid-column: span 5;
}

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

.portfolio-item:nth-child(5) {
    grid-column: span 4;
}

.portfolio-item:nth-child(6) {
    grid-column: span 4;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    transition: transform .8s var(--ease-expo), filter .5s;
    filter: brightness(.85) saturate(.9);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.06);
    filter: brightness(.7) saturate(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    background: linear-gradient(to top, rgba(8, 8, 8, .85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}

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

.portfolio-cat {
    font-size: .6rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: .4rem;
}

.portfolio-name {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}

/* Placeholder images via CSS gradients */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-p1 {
    background: linear-gradient(135deg, #1c1510 0%, #2e1f0e 40%, #1a120a 100%);
}

.img-p2 {
    background: linear-gradient(135deg, #0e0e12 0%, #1a1622 40%, #0a080f 100%);
}

.img-p3 {
    background: linear-gradient(135deg, #101510 0%, #1a2a1a 40%, #080f08 100%);
}

.img-p4 {
    background: linear-gradient(135deg, #16100e 0%, #2a1a14 40%, #0f0a08 100%);
}

.img-p5 {
    background: linear-gradient(135deg, #0e1016 0%, #14202e 40%, #080a0f 100%);
}

.img-p6 {
    background: linear-gradient(135deg, #140f10 0%, #261218 40%, #0f080a 100%);
}

.img-placeholder::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(201, 169, 110, .07);
    letter-spacing: .1em;
    position: absolute;
    white-space: nowrap;
}

.img-placeholder .scene-icon {
    width: 40px;
    height: 40px;
    opacity: .2;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
#services {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, .04) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5px;
    margin-top: clamp(3rem, 6vw, 5rem);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--surface);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background .4s;
}

.service-card:last-child {
    border-right: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-expo);
}

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

.service-card:hover {
    background: var(--surface-2);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.4rem;
    color: var(--gold);
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    letter-spacing: .02em;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.service-list li {
    font-size: .72rem;
    color: var(--muted-2);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.service-list li::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   PHILOSOPHY / ABOUT
───────────────────────────────────────── */
#about {
    background: var(--deep);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 3/4;
}

.about-main-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1c1510 0%, #2e2010 50%, #0f0c08 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.about-main-img::before {
    content: 'Aarambh';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 6vw;
    font-style: italic;
    font-weight: 300;
    color: rgba(201, 169, 110, .08);
    white-space: nowrap;
}

.about-accent-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 169, 110, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    backdrop-filter: blur(8px);
}

.about-accent-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.about-accent-text {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    padding: 0 1rem;
}

.about-content {
    padding-right: 0;
}

.about-body {
    font-size: clamp(.88rem, 1.15vw, 1rem);
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
    margin-top: 2rem;
}

.about-body p+p {
    margin-top: 1.2rem;
}

.about-body strong {
    color: var(--white);
    font-weight: 400;
}

.about-signature {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.about-signature-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.about-signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 300;
}

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

.testimonials-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.testimonial-card {
    background: var(--surface);
    padding: clamp(2rem, 3.5vw, 2.8rem);
    border: 1px solid var(--border);
    position: relative;
    transition: border-color .4s;
}

.testimonial-card:hover {
    border-color: var(--border-light);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
    border-color: rgba(201, 169, 110, .2);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: .8;
    color: var(--gold-dim);
    font-weight: 300;
    margin-bottom: .5rem;
    display: block;
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.55;
}

.testimonial-card.featured .testimonial-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.testimonial-author {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    background: linear-gradient(135deg, #2a1a0e, #1a1008);
}

.author-info-name {
    font-size: .82rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .06em;
}

.author-info-role {
    font-size: .68rem;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 400;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

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

/* ─────────────────────────────────────────
   BOOKING / INQUIRY
───────────────────────────────────────── */
#booking {
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

#booking::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(201, 169, 110, .03) 0%, transparent 70%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

.booking-info {
    padding-top: 1rem;
}

.booking-contact {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-label {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 500;
    margin-bottom: .2rem;
}

.contact-value {
    font-size: .9rem;
    color: var(--white);
    font-weight: 300;
}

/* Form */
.inquiry-form {
    background: var(--surface);
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
}

.form-title span {
    color: var(--gold);
    font-style: italic;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}

.form-label {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 300;
    padding: .85rem 1.1rem;
    outline: none;
    transition: border-color .3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--surface);
}

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

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1.1rem;
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .5rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-expo);
}

.form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: transform .4s var(--ease-expo);
}

.form-submit:hover::after {
    transform: translateX(0);
}

.form-submit:hover {
    transform: translateY(-2px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-submit:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-input-date::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s, filter 0.3s;
}

.form-input-date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(0.8) sepia(1) saturate(4) hue-rotate(10deg);
}

.form-input-date::-webkit-datetime-edit {
    color: var(--white);
}

.form-input-date::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.form-input-date::-webkit-datetime-edit-text {
    color: var(--muted-2);
}

.form-input-date::-webkit-datetime-edit-month-field:focus,
.form-input-date::-webkit-datetime-edit-day-field:focus,
.form-input-date::-webkit-datetime-edit-year-field:focus {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.form-input-date:invalid {
    color: var(--muted-2);
}

.form-input-date::-moz-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
}

.form-success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold-light);
    font-size: 0.85rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.form-success-message.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    min-height: 1rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s, transform 0.2s;
}

.form-error.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.3);
}

/* ─────────────────────────────────────────
   CLOSING CTA
───────────────────────────────────────── */
#cta-close {
    position: relative;
    padding: clamp(5rem, 12vw, 10rem) 0;
    overflow: hidden;
    background: var(--black);
    text-align: center;
}

#cta-close::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 169, 110, .07) 0%, transparent 70%);
}

.cta-close-eyebrow {
    font-size: .68rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.cta-close-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -.01em;
}

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

.cta-close-sub {
    font-size: clamp(.82rem, 1.2vw, .95rem);
    color: var(--muted);
    max-width: 480px;
    margin: 1.8rem auto;
    line-height: 1.85;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--white);
    text-transform: uppercase;
}

.footer-brand-sub {
    font-size: .6rem;
    letter-spacing: .35em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-tagline {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: .8rem;
    margin-top: 1.8rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: border-color .3s, color .3s, background .3s;
}

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

.social-link i {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.4rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-links a {
    font-size: .82rem;
    color: var(--muted);
    transition: color .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: .72rem;
    color: var(--muted-2);
    letter-spacing: .08em;
}

.footer-credit {
    width: 100%;
    text-align: center;
    font-size: .7rem;
    color: var(--muted-2);
    letter-spacing: .06em;
    margin-top: .5rem;
}

.footer-credit a {
    color: var(--muted);
    text-decoration: none;
    transition: color .3s;
}

.footer-credit a:hover {
    color: var(--accent);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: .72rem;
    color: var(--muted-2);
    transition: color .3s;
}

.footer-legal a:hover {
    color: var(--muted);
}

/* ─────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    50% {
        opacity: .4;
        transform: scaleY(.6);
        transform-origin: top;
    }
}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.gold {
    color: var(--gold);
}

.muted {
    color: var(--muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .portfolio-item:nth-child(1) {
        grid-column: span 12;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(2) {
        grid-column: span 6;
    }

    .portfolio-item:nth-child(3) {
        grid-column: span 6;
    }

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

    .portfolio-item:nth-child(5) {
        grid-column: span 4;
    }

    .portfolio-item:nth-child(6) {
        grid-column: span 4;
    }

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

    .about-visual {
        max-width: 480px;
        aspect-ratio: 4/3;
    }

    .about-accent-box {
        right: -1rem;
        bottom: -1rem;
    }

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

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

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

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-awards {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

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

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

    .portfolio-item:nth-child(3) {
        grid-column: span 1;
    }

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

    .portfolio-item:nth-child(5) {
        grid-column: span 1;
    }

    .portfolio-item:nth-child(6) {
        grid-column: span 1;
    }

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

    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .testimonials-wrap {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(n) {
        grid-column: span 1;
    }
}