/* ============================================================
   BLOSSOM EVENTS & DECOR — Editorial / Cinematic Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Italiana&family=Inter:wght@200;300;400;500;600&family=Cormorant:ital,wght@1,300;1,400&display=swap');

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

:root {
    --paper: #f5efe6;
    --paper-soft: #ede4d3;
    --ink: #14110f;
    --ink-soft: #2a2520;
    --maroon: #6b2c34;
    --maroon-deep: #3e1a1f;
    --rose: #b76e79;
    --rose-light: #d4a5ad;
    --gold: #c9a26b;
    --gold-light: #e2c89e;
    --muted: #8a7e6e;
    --line: rgba(20, 17, 15, 0.12);
    --line-light: rgba(245, 239, 230, 0.18);

    --display: 'Cormorant Garamond', 'Times New Roman', serif;
    --thin: 'Italiana', 'Cormorant Garamond', serif;
    --body: 'Inter', -apple-system, sans-serif;
    --script: 'Cormorant Garamond', serif;

    --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

img, video {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s var(--ease);
}

button {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: none;
}

::selection { background: var(--maroon); color: var(--paper); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.gone { opacity: 0; visibility: hidden; }

.preloader__inner { text-align: center; }
.preloader__mark {
    font-family: var(--thin);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--paper);
    letter-spacing: 0.5em;
    margin-right: -0.5em;
    opacity: 0;
    animation: fadeIn 1s var(--ease) forwards 0.2s;
}
.preloader__sub {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease) forwards 0.7s;
}
.preloader__bar {
    width: 240px;
    height: 1px;
    background: rgba(245, 239, 230, 0.15);
    margin: 2.5rem auto 0;
    overflow: hidden;
    position: relative;
}
.preloader__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform-origin: left;
    animation: loadFill 1.6s var(--ease) forwards 0.4s;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes loadFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--maroon);
    border-radius: 50%;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid var(--maroon);
    border-radius: 50%;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.dark-cursor .cursor-dot { background: var(--paper); }
body.dark-cursor .cursor-ring { border-color: var(--paper); }
.cursor-dot.grow { width: 14px; height: 14px; }
.cursor-ring.grow { width: 70px; height: 70px; border-color: var(--gold); }

@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9997;
    transform: translateY(100%);
    pointer-events: none;
}
.page-transition.in {
    animation: transIn 0.7s var(--ease) forwards;
}
.page-transition.out {
    animation: transOut 0.7s var(--ease) forwards;
}
@keyframes transIn {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}
@keyframes transOut {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* ============================================================
   NAVIGATION (horizontal top bar + sub-bar)
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: background 0.5s var(--ease), padding 0.4s var(--ease), border 0.4s var(--ease);
    background: linear-gradient(to bottom, rgba(20,17,15,0.55), rgba(20,17,15,0));
}
.nav.solid {
    background: rgba(20, 17, 15, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.7rem 2.4rem;
    border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

/* Brand block: round B + name */
.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--paper);
    flex-shrink: 0;
}
.nav__logo {
    width: 52px; height: 52px;
    border: 1px solid rgba(245, 239, 230, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('logo.jpg') center / 220% no-repeat #fff;
    color: transparent;
    font-size: 0;
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
}
.nav__brand:hover .nav__logo {
    border-color: var(--gold);
}
.nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav__brand-name {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--paper);
    line-height: 1;
}
.nav__brand-sub {
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.85);
    margin-top: 5px;
}

/* Horizontal page links */
.nav__links {
    display: flex;
    gap: 2.1rem;
    align-items: center;
    flex-wrap: nowrap;
}
.nav__links a {
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--paper);
    position: relative;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--gold-light); }
.nav__links a.active::after { transform: scaleX(1); }

/* Mobile burger (hidden on desktop) */
.nav__toggle {
    display: none;
    align-items: center;
    gap: 0.7rem;
    color: var(--paper);
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.nav__lines {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}
.nav__lines span {
    height: 1px;
    background: currentColor;
}
.nav__lines span:nth-child(1) { width: 26px; }
.nav__lines span:nth-child(2) { width: 16px; align-self: flex-end; }

/* Sub-bar below nav with location line */
.nav__sub {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    padding: 0.4rem 2rem 1rem;
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.78);
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    pointer-events: none;
    transition: opacity 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__sub-line {
    width: 56px; height: 1px;
    background: var(--gold);
    opacity: 0.55;
}
.nav.solid ~ .nav__sub {
    opacity: 0;
    pointer-events: none;
}

/* Mobile-responsive: hide horizontal links, show burger */
@media (max-width: 1180px) {
    .nav { padding: 0.9rem 1.4rem; }
    .nav.solid { padding: 0.7rem 1.4rem; }
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .nav__sub { display: none; }
    .nav__brand-name { font-size: 1.2rem; }
    .nav__logo { width: 44px; height: 44px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .nav__brand-sub { font-size: 0.52rem; letter-spacing: 0.22em; }
    .nav__brand-name { font-size: 1.05rem; }
}

/* Full-screen menu overlay */
.menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.85s var(--ease);
    overflow: hidden;
}
.menu.open { transform: translateY(0); }

.menu__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.18;
}
.menu__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}

.menu__inner {
    position: relative;
    flex: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    padding: 8rem 4rem 4rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.menu__nav { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__link {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    color: var(--paper);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow: hidden;
    display: inline-block;
    position: relative;
    transition: color 0.4s var(--ease), letter-spacing 0.5s var(--ease);
    width: max-content;
}
.menu__link span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s var(--ease);
}
.menu.open .menu__link span { transform: translateY(0); }
.menu__link:nth-child(1) span { transition-delay: 0.2s; }
.menu__link:nth-child(2) span { transition-delay: 0.27s; }
.menu__link:nth-child(3) span { transition-delay: 0.34s; }
.menu__link:nth-child(4) span { transition-delay: 0.41s; }
.menu__link:nth-child(5) span { transition-delay: 0.48s; }
.menu__link:nth-child(6) span { transition-delay: 0.55s; }
.menu__link:nth-child(7) span { transition-delay: 0.62s; }
.menu__link:nth-child(8) span { transition-delay: 0.69s; }
.menu__link:nth-child(9) span { transition-delay: 0.76s; }

.menu__link:hover {
    color: var(--gold);
    letter-spacing: 0.02em;
    font-style: italic;
}

.menu__aside {
    border-left: 1px solid var(--line-light);
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--paper);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.7s var(--ease) 0.6s, transform 0.7s var(--ease) 0.6s;
}
.menu.open .menu__aside { opacity: 1; transform: translateX(0); }

.menu__aside h6 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}
.menu__aside p, .menu__aside a { font-size: 0.95rem; line-height: 1.7; }
.menu__aside a:hover { color: var(--gold); }
.menu__block { margin-bottom: 2.5rem; }

.menu__close {
    position: fixed !important;
    top: 1.2rem !important;
    right: 1.2rem !important;
    color: var(--paper) !important;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: none;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem !important;
    z-index: 99999 !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 999px;
    touch-action: manipulation;
    pointer-events: auto !important;
}
.menu.open ~ .menu__close,
body.menu-open .menu__close,
.menu.open .menu__close { display: inline-flex !important; }
.menu__close .menu__close-x {
    position: relative;
    width: 22px; height: 22px;
    display: inline-block;
    flex-shrink: 0;
}
.menu__close .menu__close-x::before,
.menu__close .menu__close-x::after {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 22px; height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.4s var(--ease);
}
.menu__close .menu__close-x::before { transform: rotate(45deg); }
.menu__close .menu__close-x::after { transform: rotate(-45deg); }
.menu__close:hover { color: var(--gold-light); }
.menu__close:hover .menu__close-x::before { transform: rotate(135deg); }
.menu__close:hover .menu__close-x::after { transform: rotate(45deg); }

body.menu-open .nav__toggle { display: none; }
body.menu-open .nav { pointer-events: none !important; z-index: 1 !important; }
body.menu-open .nav__sub { pointer-events: none !important; }

@media (max-width: 900px) {
    .nav { padding: 1rem 1.4rem; }
    .nav.solid { padding: 0.8rem 1.4rem; }
    .menu__inner { grid-template-columns: 1fr; padding: 6rem 1.6rem 2rem; gap: 2rem; }
    .menu__aside { border-left: none; padding-left: 0; border-top: 1px solid var(--line-light); padding-top: 2rem; }
    .menu__close { right: 1.4rem; top: 1rem; }
}

/* ============================================================
   GENERIC LAYOUT
   ============================================================ */
.section {
    position: relative;
    padding: 8rem 3rem;
}
.section--dark { background: var(--ink); color: var(--paper); }
.section--soft { background: var(--paper-soft); }

.container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}
.container--narrow { max-width: 980px; }

@media (max-width: 900px) {
    .section { padding: 5rem 1.4rem; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}
.section--dark .eyebrow { color: var(--gold); }
.eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: currentColor;
}

.h-display {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.015em;
    font-size: clamp(2.6rem, 6.5vw, 6rem);
}
.h-display em {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    color: var(--maroon);
}
.section--dark .h-display em { color: var(--gold); }

.h-thin {
    font-family: var(--thin);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
    font-size: clamp(2rem, 5vw, 4.5rem);
}

.lead {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.7vw, 1.4rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 60ch;
}
.section--dark .lead { color: rgba(245, 239, 230, 0.78); }

.body-text {
    font-family: var(--body);
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--ink-soft);
    font-weight: 300;
}
.section--dark .body-text { color: rgba(245, 239, 230, 0.7); }

/* Reveal animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s var(--ease-out);
}
.reveal-fade.is-visible { opacity: 1; }

.reveal-mask {
    position: relative;
    overflow: hidden;
}
.reveal-mask::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--paper);
    transform-origin: right;
    transition: transform 1.2s var(--ease);
}
.section--dark .reveal-mask::after { background: var(--ink); }
.reveal-mask.is-visible::after { transform: scaleX(0); }

.reveal-clip {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s var(--ease-out), transform 1.4s var(--ease-out);
}
.reveal-clip.is-visible {
    opacity: 1;
    transform: scale(1);
}

.split-line {
    overflow: hidden;
    display: block;
}
.split-line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease);
}
.split-line.is-visible > span { transform: translateY(0); }
.split-line.delay-1 > span { transition-delay: 0.1s; }
.split-line.delay-2 > span { transition-delay: 0.2s; }
.split-line.delay-3 > span { transition-delay: 0.3s; }
.split-line.delay-4 > span { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 2rem;
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper);
    background: var(--maroon);
    border: 1px solid var(--maroon);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
    z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn span { position: relative; z-index: 1; }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); }
.section--dark .btn--ghost { color: var(--paper); border-color: var(--paper); }
.section--dark .btn--ghost::before { background: var(--paper); }
.section--dark .btn--ghost:hover { color: var(--ink); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--maroon);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid currentColor;
    transition: gap 0.4s var(--ease), color 0.4s var(--ease);
}
.section--dark .link-arrow { color: var(--gold); }
.link-arrow:hover { gap: 1.4rem; }
.link-arrow svg { width: 14px; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--paper);
    display: flex;
    align-items: flex-end;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero__media video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
}
.hero__media video.is-playing { opacity: 1; }
.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 28% 88%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, transparent 75%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.78) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}
.hero__eyebrow {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    color: #f3d9a8;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0, 0, 0, 0.4);
}
.hero__title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.2rem, 5.4vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #ffffff;
    text-shadow:
        0 4px 36px rgba(0, 0, 0, 0.85),
        0 2px 12px rgba(0, 0, 0, 0.65),
        0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__title em {
    font-style: italic;
    font-weight: 500;
    color: #f7e2b6;
}
.hero__sub {
    margin-top: 1.4rem !important;
}
.hero__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
}
.hero__sub {
    margin-top: 2rem;
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    max-width: 540px;
    line-height: 2;
    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.85),
        0 1px 6px rgba(0, 0, 0, 0.65),
        0 0 3px rgba(0, 0, 0, 0.5);
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(245, 239, 230, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}
.hero__scroll::after {
    content: '';
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-top: 1rem;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; transform-origin: top; }
}

.hero__corner {
    position: absolute;
    z-index: 3;
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    color: #f3d9a8;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75), 0 0 4px rgba(0, 0, 0, 0.5);
}
.hero__corner span { color: #f5efe6 !important; }
.hero__corner--tl { top: 7rem; left: 3rem; }
.hero__corner--br { bottom: 2rem; right: 3rem; text-align: right; }

/* Sub-page hero (shorter) */
.subhero {
    position: relative;
    height: 75vh;
    min-height: 520px;
    overflow: hidden;
    color: var(--paper);
}
.subhero__media { position: absolute; inset: 0; }
.subhero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 14s var(--ease) forwards;
}
.subhero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6) 100%);
}
.subhero__content {
    position: absolute;
    bottom: 4rem;
    left: 0; right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}
.subhero__eyebrow {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}
.subhero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.015em;
}
.subhero__title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}

@media (max-width: 900px) {
    .hero__content { padding: 0 1.4rem 7rem; }
    .hero__corner--tl { left: 1.4rem; top: 5.5rem; }
    .hero__corner--br { right: 1.4rem; bottom: 5.5rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.6rem 0;
    background: var(--paper);
}
.section--dark + .marquee, .marquee--dark {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--line-light);
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeMove 36s linear infinite;
}
.marquee__item {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    letter-spacing: 0.04em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}
.marquee--dark .marquee__item { color: var(--paper); }
.marquee__item span:not(.dot) {}
.marquee__item .dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO BLOCK (text + meta)
   ============================================================ */
.intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.intro__title { font-family: var(--display); }
@media (max-width: 900px) {
    .intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   STAGGERED ASYMMETRIC GRID (signature wedding-filmer feel)
   ============================================================ */
.stagger {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}
.stagger__item { position: relative; overflow: hidden; }
.stagger__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.stagger__item:hover img { transform: scale(1.06); }
.stagger__item figcaption {
    position: absolute;
    left: 1.2rem; bottom: 1.2rem;
    color: var(--paper);
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 0.4rem 0.8rem;
}

.stagger__item--a { grid-column: 1 / span 6; aspect-ratio: 4/5; margin-top: 2rem; }
.stagger__item--b { grid-column: 7 / span 6; aspect-ratio: 4/5; }
.stagger__item--c { grid-column: 1 / span 4; aspect-ratio: 3/4; }
.stagger__item--d { grid-column: 5 / span 4; aspect-ratio: 3/4; margin-top: 4rem; }
.stagger__item--f { grid-column: 9 / span 4; aspect-ratio: 3/4; margin-top: 1rem; }
.stagger__item--e { grid-column: 1 / span 12; aspect-ratio: 16/10; margin-top: 3rem; }
.stagger__item--e img { object-position: center 35%; }
.stagger__item--b img { object-position: center 40%; }
.stagger__item--a img,
.stagger__item--c img,
.stagger__item--d img,
.stagger__item--f img { object-position: center 30%; }

@media (max-width: 900px) {
    .stagger { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
    .stagger__item { grid-column: 1 / -1 !important; margin-top: 0 !important; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 5rem;
    border-top: 1px solid var(--line);
}
.section--dark .services { border-color: var(--line-light); }
.service {
    padding: 3rem 2.4rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transition: background 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.section--dark .service { border-color: var(--line-light); }
.service:nth-child(3n) { border-right: none; }
.service:hover { background: var(--paper-soft); }
.section--dark .service:hover { background: var(--ink-soft); }

.service__num {
    font-family: var(--display);
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.6rem;
}
.service__title {
    font-family: var(--display);
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 400;
}
.service__desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
}
.section--dark .service__desc { color: rgba(245, 239, 230, 0.62); }

@media (max-width: 900px) {
    .services { grid-template-columns: 1fr; }
    .service { border-right: none !important; padding: 2.2rem 1.2rem; }
}

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.split__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
}
.split__media:hover img { transform: scale(1.05); }

.split__sig {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 2rem;
}
.split__sig::before {
    content: '— ';
}

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split--reverse .split__media { order: 0; }
}

/* ============================================================
   CHAUNKI FEATURE (multi-photo editorial layout)
   ============================================================ */
.chaunki-feature__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: start;
}
.chaunki-feature__main {
    grid-column: 1 / span 7;
    grid-row: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.chaunki-feature__text {
    grid-column: 8 / span 5;
    grid-row: 1;
    align-self: center;
    padding-left: 0.5rem;
}
.chaunki-feature__det-1 {
    grid-column: 2 / span 4;
    grid-row: 2;
    margin-top: -3rem;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.chaunki-feature__det-2 {
    grid-column: 7 / span 5;
    grid-row: 2;
    margin-top: 3rem;
    aspect-ratio: 5/4;
    overflow: hidden;
    position: relative;
}
.chaunki-feature__main img,
.chaunki-feature__det-1 img,
.chaunki-feature__det-2 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease);
}
.chaunki-feature__main:hover img,
.chaunki-feature__det-1:hover img,
.chaunki-feature__det-2:hover img {
    transform: scale(1.05);
}
.chaunki-feature__main figcaption,
.chaunki-feature__det-1 figcaption,
.chaunki-feature__det-2 figcaption {
    position: absolute;
    left: 1rem; bottom: 1rem;
    color: var(--paper);
    font-family: var(--display);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    padding: 0.4rem 0.8rem;
}
@media (max-width: 900px) {
    .chaunki-feature__grid { grid-template-columns: 1fr; gap: 1.4rem; }
    .chaunki-feature__main, .chaunki-feature__text,
    .chaunki-feature__det-1, .chaunki-feature__det-2 {
        grid-column: 1 / -1;
        grid-row: auto;
        margin-top: 0;
        padding-left: 0;
    }
}

/* ============================================================
   FEATURE QUOTE
   ============================================================ */
.quote {
    text-align: center;
    padding: 9rem 2rem;
}
.quote__text {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.6rem, 3.4vw, 3.4rem);
    line-height: 1.3;
    max-width: 30ch;
    margin: 0 auto;
}
.quote__text::before, .quote__text::after {
    color: var(--gold);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.4em;
}
.quote__text::before { content: '“'; margin-right: 0.1em; }
.quote__text::after { content: '”'; margin-left: 0.1em; }
.quote__attr {
    margin-top: 2.4rem;
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
}
.section--dark .quote__attr { color: rgba(245, 239, 230, 0.55); }

/* ============================================================
   GALLERY GRID (masonry-ish via columns)
   ============================================================ */
.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1100px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .masonry { grid-template-columns: 1fr; } }
.masonry__item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}
.masonry__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
    filter: saturate(0.95);
}
.masonry__item:hover img { transform: scale(1.05); filter: saturate(1.1); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 4rem;
}
.gallery-filter {
    padding: 0.7rem 1.4rem;
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.gallery-filter:hover, .gallery-filter.active {
    color: var(--paper);
    background: var(--maroon);
    border-color: var(--maroon);
}

/* ============================================================
   TESTIMONIALS GRID
   ============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-top: 4rem;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    padding: 3rem 2.4rem;
    border: 1px solid var(--line);
    background: var(--paper);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem; left: 1.6rem;
    font-family: var(--display);
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20, 17, 15, 0.06);
}
.testimonial-card__text {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ink-soft);
    position: relative;
}
.testimonial-card__meta {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}
.testimonial-card__name {
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--maroon);
}
.testimonial-card__sub {
    font-family: var(--display);
    font-style: italic;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}
.testimonial-card__stars {
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* ============================================================
   RENTAL CATALOG
   ============================================================ */
.rentals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
@media (max-width: 900px) { .rentals { grid-template-columns: 1fr; } }
.rental {
    position: relative;
    overflow: hidden;
}
.rental__media {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--paper-soft);
}
.rental__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.rental:hover .rental__media img { transform: scale(1.06); }

.rental__info {
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
}
.rental__name {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 400;
}
.rental__cat {
    font-family: var(--body);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   STAT BAND
   ============================================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}
.stat {
    padding: 4rem 2rem;
    text-align: center;
    border-right: 1px solid var(--line-light);
}
.stat:last-child { border-right: none; }
.stat__num {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--gold);
    line-height: 1;
    font-weight: 400;
}
.stat__num em { font-style: italic; }
.stat__label {
    margin-top: 1rem;
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.6);
}
@media (max-width: 900px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 2.4rem 1rem; }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-light); }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    text-align: center;
    padding: 8rem 2rem;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.cta-band::before, .cta-band::after {
    content: '';
    position: absolute;
    width: 1px; height: 60%; top: 20%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.cta-band::before { left: 8%; }
.cta-band::after { right: 8%; }

.cta-band__title {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.15;
    max-width: 22ch;
    margin: 0 auto 2.6rem;
}
.cta-band__title em { color: var(--gold); }

/* ============================================================
   FORM
   ============================================================ */
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.form__field { display: flex; flex-direction: column; gap: 0.6rem; }
.form__field--full { grid-column: 1 / -1; }
.form__label {
    font-family: var(--body);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
}
.form__input, .form__textarea {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s var(--ease);
}
.form__input:focus, .form__textarea:focus { border-color: var(--maroon); }
.form__textarea { resize: vertical; min-height: 80px; }
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(245, 239, 230, 0.78);
    padding: 5rem 3rem 2rem;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line-light);
}
.footer__brand {
    font-family: var(--thin);
    font-size: 1.4rem;
    letter-spacing: 0.32em;
    color: var(--paper);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.footer__tag {
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
}
.footer__col h6 {
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-family: var(--display); font-size: 1rem; opacity: 0.8; }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__bottom {
    padding-top: 1.6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.5);
}
@media (max-width: 900px) {
    .footer { padding: 4rem 1.4rem 1.6rem; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   FLOATING CONTACT TAB
   ============================================================ */
.float-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background: var(--maroon);
    color: var(--paper);
    padding: 1rem 1.4rem;
    font-family: var(--body);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), background 0.4s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.float-cta.show { transform: translateY(0); opacity: 1; }
.float-cta:hover { background: var(--ink); }
@media (max-width: 700px) { .float-cta { bottom: 1rem; right: 1rem; padding: 0.8rem 1rem; font-size: 0.62rem; } }

/* ============================================================
   PARALLAX & MISC
   ============================================================ */
.parallax {
    will-change: transform;
}

.divider-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 2rem 0;
}
.divider-center { margin-left: auto; margin-right: auto; }

.script-accent {
    font-family: var(--display);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 15, 0.96);
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
    position: absolute;
    top: 1.6rem; right: 2rem;
    color: var(--paper);
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    border: 1px solid var(--paper);
    padding: 0.6rem 1rem;
}
