:root {
    --black: #080909;
    --black-soft: #101111;
    --black-card: #141515;
    --ivory: #f4efe6;
    --white: #ffffff;
    --gold: #c9a66b;
    --gold-light: #e1c58f;
    --muted: #a7a49d;
    --line: rgba(201, 166, 107, 0.22);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --container: 1240px;
    --radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

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

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 80px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--black-soft);
}

.eyebrow {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow span {
    margin: 0 5px;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 0.98;
}

h2 {
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: -0.025em;
}

h2 em,
.hero__title span {
    color: var(--gold-light);
    font-style: italic;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

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

.btn--gold {
    background: var(--gold-light);
    color: #111;
}

.btn--gold:hover {
    background: #f0d7a5;
}

.btn--outline {
    border-color: rgba(244,239,230,.45);
    color: var(--ivory);
}

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

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--gold-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    white-space: nowrap;
}

.text-link span {
    transition: transform .3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }

/* Hero */
.hero {
    min-height: 820px;
    height: 100svh;
    max-height: 980px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 12s ease-out forwards;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,5,5,.95) 0%, rgba(4,5,5,.78) 35%, rgba(4,5,5,.18) 75%, rgba(4,5,5,.35) 100%),
        linear-gradient(0deg, rgba(4,5,5,.75), transparent 35%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero__title {
    max-width: 760px;
    font-size: clamp(68px, 8vw, 120px);
    letter-spacing: -0.045em;
    margin-bottom: 28px;
}

.hero__description {
    max-width: 480px;
    color: rgba(244,239,230,.72);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.play-icon {
    font-size: 9px;
}

.hero__bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    position: absolute;
    left: 0;
    bottom: -210px;
    font-size: 10px;
    letter-spacing: .12em;
    color: rgba(244,239,230,.65);
    text-transform: uppercase;
}

.hero__line {
    width: 70px;
    height: 1px;
    background: var(--gold);
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.09); }
}

/* Story */
.story {
    background: var(--black);
}

.story__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.story__content > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 570px;
    margin: 28px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 38px 0;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature__icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 10px;
}

.feature strong,
.feature small {
    display: block;
}

.feature strong {
    font-size: 11px;
}

.feature small {
    color: var(--muted);
    font-size: 10px;
}

.image-stack {
    position: relative;
    min-height: 580px;
}

.image-stack > img:first-child {
    width: 70%;
    height: 500px;
    object-fit: cover;
}

.image-stack > img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 330px;
    object-fit: cover;
    border: 8px solid var(--black);
}

.image-note {
    position: absolute;
    right: 22%;
    bottom: 95px;
    padding: 28px;
    background: rgba(8,9,9,.94);
    border: 1px solid var(--line);
}

.image-note span {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.05;
    display: block;
}

.image-note small {
    display: block;
    color: var(--gold-light);
    margin-top: 10px;
    font-size: 10px;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 12px;
}

.category-card {
    position: relative;
    height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}

.category-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 55%);
}

.category-card__content {
    position: absolute;
    inset: auto 22px 20px;
}

.category-card__content > span {
    color: var(--gold-light);
    font-size: 9px;
}

.category-card h3 {
    font-size: 28px;
    margin: 6px 0;
}

.category-card p {
    color: rgba(244,239,230,.7);
    font-size: 11px;
}

.category-card b {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-weight: 400;
}

/* Services */
.services {
    background: #0b0c0c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service-card {
    min-height: 250px;
    padding: 28px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.07);
    position: relative;
    transition: border-color .35s ease, transform .35s ease;
}

.service-card:hover {
    border-color: var(--line);
    transform: translateY(-5px);
}

.service-card--accent {
    background: linear-gradient(145deg, #17130e, #121212);
}

.service-card__number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #565653;
    font-size: 10px;
}

.service-card__icon {
    display: block;
    color: var(--gold-light);
    font-size: 28px;
    margin: 30px 0 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 11px;
    max-width: 210px;
}

.service-card__arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: var(--gold-light);
}

/* Special */
.special {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}

.special__background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,9,9,.98) 0%, rgba(8,9,9,.88) 35%, rgba(8,9,9,.25)),
        url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
    opacity: .8;
}

.special__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 55px;
    align-items: center;
}

.special__intro > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 430px;
    margin: 25px 0 30px;
}

.special__items {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    align-items: stretch;
}

.special-item {
    height: 330px;
    position: relative;
    overflow: hidden;
}

.special-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.special-item:hover img {
    transform: scale(1.07);
}

.special-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 55%);
}

.special-item span {
    position: absolute;
    z-index: 1;
    left: 12px;
    bottom: 13px;
    font-family: var(--serif);
    font-size: 18px;
}

/* Stats */
.stats {
    background: #050606;
    border-block: 1px solid rgba(255,255,255,.06);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 55px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}

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

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 60px;
    color: var(--gold-light);
    line-height: 1;
}

.stat strong span {
    font-size: .6em;
}

.stat small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .08em;
}

/* Why */
.why {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.why-card {
    min-height: 220px;
    padding: 28px 20px;
    border: 1px solid rgba(255,255,255,.07);
    background: #0d0e0e;
}

.why-card > span {
    color: var(--gold-light);
    font-size: 27px;
}

.why-card h3 {
    font-size: 22px;
    margin: 30px 0 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 11px;
}

/* Founder */
.founder {
    background: #0c0d0d;
}

.founder__grid {
    display: grid;
    grid-template-columns: .8fr 1fr .8fr;
    gap: 45px;
    align-items: center;
}

.founder__image {
    height: 470px;
}

.founder__placeholder {
    height: 100%;
    background: linear-gradient(145deg, #24221e, #121313);
    border: 1px solid var(--line);
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .1em;
}

.founder__placeholder small {
    color: var(--muted);
    margin-top: 8px;
    font-size: 9px;
}

.founder__content h2 {
    font-size: 58px;
}

.founder__role {
    color: var(--gold-light);
    margin: 8px 0 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.founder__content > p:not(.eyebrow):not(.founder__role) {
    color: var(--muted);
    margin-bottom: 28px;
}

.founder__quote {
    padding: 35px;
    border: 1px solid rgba(255,255,255,.08);
    background: #111212;
}

.founder__quote > span {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 60px;
    line-height: .5;
}

.founder__quote p {
    font-family: var(--serif);
    font-size: 25px;
    font-style: italic;
    line-height: 1.2;
    margin: 20px 0;
}

.founder__quote small {
    color: var(--gold-light);
}

/* Work */
.work {
    background: #0a0b0b;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 10px;
}

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

.work-card--tall {
    grid-row: 1 / 3;
}

.work-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.work-card:hover img {
    transform: scale(1.06);
}

.work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 55%);
}

.work-card > div {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
    bottom: 20px;
}

.work-card span {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .12em;
}

.work-card h3 {
    font-size: 24px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.testimonial {
    min-height: 230px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.08);
    background: #111212;
}

.stars {
    color: var(--gold-light);
    letter-spacing: 4px;
    font-size: 10px;
    margin-bottom: 25px;
}

.testimonial p {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.testimonial strong,
.testimonial small {
    display: block;
}

.testimonial strong {
    font-size: 11px;
}

.testimonial small {
    color: var(--gold-light);
    font-size: 9px;
}

/* CTA */
.cta {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,8,8,.94), rgba(7,8,8,.48)),
        url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
}

.cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta h2 {
    font-size: clamp(42px, 5vw, 66px);
}

.cta p:not(.eyebrow) {
    color: rgba(244,239,230,.72);
    margin-top: 12px;
}

.cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==========================================================================
   REUSABLE INNER HERO COMPONENT
   ========================================================================== */
.inner-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 150px 0 85px;
}

.inner-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,6,6,.94) 0%, rgba(5,6,6,.65) 50%, rgba(5,6,6,.42) 100%),
        center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 14s ease-out forwards;
}

.inner-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.inner-hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    letter-spacing: -.045em;
    line-height: 1;
    margin-bottom: 20px;
}

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

.inner-hero__desc {
    color: rgba(244, 239, 230, 0.76);
    font-size: 15px;
    max-width: 580px;
    line-height: 1.8;
}

/* ==========================================================================
   ABOUT PAGE SHARED STYLES
   ========================================================================== */
.about-intro {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
    align-items: start;
}

.about-intro__statement {
    position: sticky;
    top: 130px;
}

.about-intro__statement h2 {
    font-size: clamp(45px, 5vw, 70px);
}

.about-intro__copy {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.about-intro__copy p + p {
    margin-top: 22px;
}

.about-highlight {
    margin-top: 45px;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.2;
}

.philosophy {
    background: #0a0b0b;
}

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

.philosophy-card {
    min-height: 340px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
    background: var(--black-card);
}

.philosophy-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid var(--line);
    right: -70px;
    top: -70px;
}

.philosophy-card__number {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .12em;
}

.philosophy-card h3 {
    font-size: 36px;
    margin: 75px 0 18px;
}

.philosophy-card p {
    color: var(--muted);
    max-width: 280px;
    font-size: 12px;
}

.founder-about {
    background: var(--black);
}

.founder-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.founder-about__photo {
    min-height: 620px;
    background: linear-gradient(145deg, #24221e, #101111);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    text-align: center;
    letter-spacing: .12em;
    font-size: 11px;
}

.founder-about__photo small {
    display: block;
    color: var(--muted);
    margin-top: 8px;
    letter-spacing: 0;
}

.founder-about__content h2 {
    font-size: clamp(55px, 7vw, 88px);
}

.founder-about__role {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 10px;
    margin: 12px 0 28px;
}

.founder-about__content > p:not(.eyebrow):not(.founder-about__role) {
    color: var(--muted);
    line-height: 1.9;
    max-width: 560px;
}

.signature {
    margin-top: 45px;
    color: var(--gold-light);
    font-family: "Brush Script MT", cursive;
    font-size: 40px;
}

.service-area {
    background: #0c0d0d;
}

.service-area__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-area__copy {
    color: var(--muted);
    max-width: 550px;
    line-height: 1.8;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.location-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 20px;
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: .08em;
}

.about-quote {
    padding: 65px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-quote p {
    max-width: 850px;
    margin: auto;
    font-family: var(--serif);
    font-size: clamp(35px, 5vw, 62px);
    line-height: 1.1;
}

.about-quote em {
    color: var(--gold-light);
}

/* ==========================================================================
   SERVICES DETAILED SECTION
   ========================================================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}

.service-detail-card__media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-detail-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.service-detail-card:hover .service-detail-card__media img {
    transform: scale(1.06);
}

.service-detail-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--black-card) 0%, rgba(20,21,21,.4) 60%, transparent 100%);
}

.service-detail-card__number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: .15em;
    background: rgba(8,9,9,.8);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.service-detail-card__body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
    color: var(--ivory);
}

.service-detail-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}

.service-detail-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.service-detail-card__cta {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s ease;
}

.service-detail-card:hover .service-detail-card__cta {
    gap: 12px;
}

/* Dedicated Special Entries Showcase */
.special-showcase {
    background: var(--black-soft);
}

.special-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.special-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #000;
}

.special-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.special-card:hover img {
    transform: scale(1.08);
}

.special-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,6,6,.92) 0%, rgba(5,6,6,.45) 50%, transparent 100%);
}

.special-card__content {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 2;
}

.special-card__content span {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.special-card__content h3 {
    font-size: 26px;
    margin: 8px 0 6px;
    color: var(--ivory);
}

.special-card__content p {
    color: rgba(244,239,230,.72);
    font-size: 12px;
    line-height: 1.5;
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,.12);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    cursor: pointer;
    transition: all .3s ease;
}

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

.filter-btn.active {
    background: var(--gold-light);
    color: #111;
    border-color: var(--gold-light);
    font-weight: 600;
}

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

.gallery-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    cursor: pointer;
    background: #000;
    transition: transform .4s ease, border-color .4s ease, opacity .4s ease;
}

.gallery-card.is-hidden {
    display: none;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,6,6,.92) 0%, rgba(5,6,6,.3) 60%, transparent 100%);
    opacity: .9;
    transition: opacity .35s ease;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.gallery-card__content {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 2;
    transition: transform .35s ease;
}

.gallery-card:hover .gallery-card__content {
    transform: translateY(-4px);
}

.gallery-card__tag {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gallery-card__title {
    font-size: 24px;
    margin: 6px 0 0;
    color: var(--ivory);
}

.gallery-card__zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(8,9,9,.75);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 14px;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

.gallery-card:hover .gallery-card__zoom {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.contact-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.08);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color .3s ease, transform .3s ease;
}

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

.contact-card--primary {
    border-color: rgba(225,197,143,.4);
    background: linear-gradient(145deg, #17140e, #121313);
}

.contact-card__badge {
    align-self: flex-start;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111;
    background: var(--gold-light);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 14px;
}

.contact-card__label {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--ivory);
    word-break: break-word;
    line-height: 1.4;
}

.contact-card__sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
}

.contact-form-container {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.08);
    padding: 45px;
}

.contact-form-container h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.contact-form-container p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 30px;
}

.placeholder-box {
    border: 1px dashed rgba(201, 166, 107, 0.35);
    background: #0b0c0c;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    margin-top: 24px;
}

.placeholder-box h4 {
    font-size: 14px;
    font-family: var(--sans);
    color: var(--gold-light);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.placeholder-box p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

/* ==========================================================================
   ACCESSIBILITY: PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .inner-hero__bg,
    .hero__media {
        animation: none !important;
        transform: none !important;
    }
}

