/* ==========================================================================
   Luxelink Experiences
   assets/css/style.css
   Brand palette taken from the official logo (black serif wordmark on ivory)
   with the gold detailing seen throughout the event photography.
   ========================================================================== */

:root {
    --primary: #0d0d0d;          /* logo black */
    --primary-soft: #1c1c1c;
    --secondary: #f6f3ee;        /* ivory / paper */
    --accent: #c8a349;           /* brand gold */
    --accent-soft: #e2c987;
    --background: #ffffff;
    --surface: #faf8f4;
    --text: #171614;
    --muted: #6d6862;
    --line: rgba(13, 13, 13, .12);
    --line-light: rgba(255, 255, 255, .16);

    --serif: "Cormorant Garamond", "Didot", "Georgia", "Times New Roman", serif;
    --sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

    --wrap: 1240px;
    --radius: 2px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, .12);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, .18);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --header-h: 84px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    font-weight: 300;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; }

.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--muted);
    max-width: 62ch;
}

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-dark { background: var(--primary); color: var(--secondary); }
.section-dark .lede, .section-dark p { color: rgba(246, 243, 238, .74); }
.section-tint { background: var(--surface); }

.rule {
    width: 56px; height: 1px; background: var(--accent);
    margin: 0 0 26px;
}
.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .35s var(--ease), color .35s var(--ease),
                border-color .35s var(--ease), transform .25s var(--ease),
                box-shadow .35s var(--ease);
}
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }
.btn:active { transform: translateY(1px) scale(.995); }

.btn-gold { background: var(--accent); color: #12100b; }
.btn-gold:hover { background: var(--accent-soft); box-shadow: 0 12px 28px rgba(200, 163, 73, .32); transform: translateY(-2px); }

.btn-dark { background: var(--primary); color: var(--secondary); }
.btn-dark:hover { background: var(--primary-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-line { border-color: var(--line); color: var(--text); background: transparent; }
.btn-line:hover { border-color: var(--primary); background: var(--primary); color: var(--secondary); transform: translateY(-2px); }

.btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: .7rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- text link ---------- */
.tlink {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 500; color: var(--primary);
    padding-bottom: 4px; border-bottom: 1px solid var(--accent);
    transition: color .3s var(--ease), gap .3s var(--ease);
}
.tlink:hover { color: var(--accent); gap: 14px; }
.section-dark .tlink { color: var(--secondary); }
.section-dark .tlink:hover { color: var(--accent-soft); }

/* ---------- scroll progress ---------- */
.progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: var(--accent); z-index: 1200; transition: width .12s linear;
}

/* ---------- page load reveal ---------- */
.page-loader {
    position: fixed; inset: 0; z-index: 2000;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader img { width: 120px; opacity: 0; animation: loaderIn .8s var(--ease) forwards; }
.page-loader.done { opacity: 0; visibility: hidden; }
@keyframes loaderIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

body { animation: pageIn .5s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- top information bar ---------- */
.topbar {
    background: var(--primary); color: rgba(246, 243, 238, .8);
    font-size: .76rem; letter-spacing: .06em;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative; z-index: 1001;
}
.topbar-in {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; min-height: 44px; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px;
}
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact a, .topbar-contact span { display: inline-flex; align-items: center; gap: 7px; transition: color .3s var(--ease); }
.topbar-contact a:hover { color: var(--accent-soft); }
.topbar svg { width: 14px; height: 14px; flex: none; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { transition: color .3s var(--ease), transform .3s var(--ease); }
.topbar-social a:hover { color: var(--accent-soft); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(13, 13, 13, .28);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.header-in {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; min-height: var(--header-h);
}
.site-header.solid {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
}

.logo, .nav-brand img, .footer-brand img, .site-logo {
    border-radius: 16px;
    background: #fff;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.nav-brand img { width: 132px; transition: width .35s var(--ease); }
.site-header.solid .nav-brand img { width: 116px; }

.mainnav { display: flex; align-items: center; gap: 34px; margin: 0 auto; }
.mainnav a {
    position: relative; font-size: .78rem; letter-spacing: .17em;
    text-transform: uppercase; font-weight: 400; color: #fff;
    padding: 6px 0; transition: color .3s var(--ease);
}
.mainnav a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width .35s var(--ease);
}
.mainnav a:hover::after, .mainnav a.active::after { width: 100%; }
.mainnav a.active { color: var(--accent-soft); }
.site-header.solid .mainnav a { color: var(--text); }
.site-header.solid .mainnav a.active { color: var(--accent); }

.nav-cta { flex: none; }
.site-header:not(.solid) .nav-cta { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.site-header:not(.solid) .nav-cta:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* hamburger */
.hamburger {
    display: none; width: 46px; height: 40px; border: 1px solid rgba(255, 255, 255, .4);
    background: transparent; border-radius: var(--radius); position: relative; cursor: pointer;
    transition: border-color .3s var(--ease);
}
.site-header.solid .hamburger { border-color: var(--line); }
.hamburger span {
    position: absolute; left: 12px; width: 22px; height: 1.5px; background: #fff;
    transition: transform .35s var(--ease), opacity .25s var(--ease), background .3s var(--ease);
}
.site-header.solid .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19.5px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 1500;
    background: var(--primary); color: var(--secondary);
    padding: 90px 26px 40px;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .mm-close {
    position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
    border: 1px solid rgba(255, 255, 255, .3); background: transparent; color: #fff;
    font-size: 1.3rem; line-height: 1; border-radius: var(--radius); cursor: pointer;
}
.mobile-menu img.site-logo { width: 130px; margin-bottom: 34px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
    font-family: var(--serif); font-size: 1.9rem; padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--accent-soft); padding-left: 10px; }
.mm-contact { margin-top: 30px; font-size: .88rem; color: rgba(246, 243, 238, .7); display: grid; gap: 10px; }
.mm-contact a:hover { color: var(--accent-soft); }
body.nav-open { overflow: hidden; }

/* ---------- hero slider ---------- */
.hero {
    position: relative; min-height: calc(100svh - var(--header-h) - 44px);
    display: flex; align-items: center;
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 70px) 0 90px;
    overflow: hidden; background: var(--primary); color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.5s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    transition: transform 9s linear;
}
.hero-slide.active img { transform: scale(1.16); }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(8, 8, 8, .82) 0%, rgba(8, 8, 8, .58) 45%, rgba(8, 8, 8, .3) 100%);
}
.hero .wrap { position: relative; z-index: 3; }
.hero-copy { max-width: 730px; }
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .76rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--accent-soft);
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2.9rem, 8.4vw, 6.2rem);
    text-transform: uppercase; letter-spacing: .02em; line-height: .96;
    margin-bottom: .3em;
}
.hero .tagline {
    font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    font-style: italic; color: #fff; margin-bottom: .5em; line-height: 1.25;
}
.hero .sub { font-size: 1.05rem; color: rgba(255, 255, 255, .82); max-width: 56ch; margin-bottom: 34px; }

.hero-dots { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4; }
.hero-dots .wrap { display: flex; gap: 12px; }
.hero-dots button {
    width: 44px; height: 2px; border: 0; padding: 0; cursor: pointer;
    background: rgba(255, 255, 255, .32); transition: background .35s var(--ease);
}
.hero-dots button.on { background: var(--accent); }

/* fade-up on load */
.rise { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease) forwards; }
.rise.d1 { animation-delay: .12s; }
.rise.d2 { animation-delay: .26s; }
.rise.d3 { animation-delay: .4s; }
.rise.d4 { animation-delay: .54s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- marquee ---------- */
.marquee {
    background: var(--primary); color: rgba(246, 243, 238, .55);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee-track span {
    font-family: var(--serif); font-size: 1.15rem; letter-spacing: .12em;
    text-transform: uppercase; padding: 0 30px; white-space: nowrap;
}
.marquee-track span::after { content: "·"; color: var(--accent); margin-left: 30px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- internal page banner ---------- */
.banner {
    position: relative; min-height: 430px; display: flex; align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 70px) 0 56px;
    background: var(--primary); color: #fff; overflow: hidden;
}
.banner img.bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    animation: bannerZoom 14s var(--ease) forwards;
}
@keyframes bannerZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.banner::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, .58) 0%, rgba(8, 8, 8, .5) 40%, rgba(8, 8, 8, .82) 100%);
}
.banner .wrap { position: relative; z-index: 3; }
.banner h1 { margin-bottom: .2em; }
.banner p { color: rgba(255, 255, 255, .82); max-width: 58ch; margin: 0; }
.crumbs {
    font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255, 255, 255, .6); margin-bottom: 18px;
}
.crumbs a:hover { color: var(--accent-soft); }
.crumbs span { color: var(--accent-soft); }

/* ---------- layout helpers ---------- */
.split {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: clamp(36px, 6vw, 86px); align-items: center;
}
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media.wide img { aspect-ratio: 4 / 3; }
.frame { position: relative; }
.frame::before {
    content: ""; position: absolute; inset: 18px -18px -18px 18px;
    border: 1px solid var(--accent); z-index: -1;
}

.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- service cards ---------- */
.card {
    background: #fff; border: 1px solid var(--line);
    display: flex; flex-direction: column; overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card-media { overflow: hidden; }
.card-media img {
    width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
    transition: transform .8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45em; }
.card-body p { color: var(--muted); font-size: .96rem; }
.card-body .tlink { margin-top: auto; align-self: flex-start; }
.card-list { list-style: none; margin: 0 0 22px; padding: 0; font-size: .94rem; color: var(--muted); }
.card-list li { padding-left: 18px; position: relative; }
.card-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 7px; height: 1px; background: var(--accent); }

/* numbered pillar cards */
.pillar {
    padding: 34px 30px; border: 1px solid var(--line-light);
    transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.pillar .num {
    font-family: var(--serif); font-size: 2.4rem; color: var(--accent);
    display: block; margin-bottom: 14px; line-height: 1;
}
.pillar:hover { background: rgba(255, 255, 255, .04); transform: translateY(-6px); border-color: var(--accent); }
.pillar h3 { color: var(--secondary); }

/* chips list of all services */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li {
    border: 1px solid var(--line); padding: 9px 18px; font-size: .82rem;
    letter-spacing: .06em; color: var(--text);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.chips li:hover { background: var(--primary); color: var(--secondary); border-color: var(--primary); transform: translateY(-3px); }
.section-dark .chips li { border-color: var(--line-light); color: rgba(246, 243, 238, .82); }
.section-dark .chips li:hover { background: var(--accent); color: #12100b; border-color: var(--accent); }

/* ---------- process steps ---------- */
.steps { counter-reset: st; display: grid; gap: 0; }
.step {
    display: grid; grid-template-columns: 120px 1fr; gap: 30px;
    padding: 34px 0; border-top: 1px solid var(--line);
    transition: background .4s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { background: rgba(200, 163, 73, .06); }
.step .st-no {
    font-family: var(--serif); font-size: 1rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--accent); padding-top: 6px;
}
.step h3 { margin-bottom: .35em; }
.step p { margin: 0; color: var(--muted); }
.section-dark .step { border-color: var(--line-light); }
.section-dark .step:hover { background: rgba(255, 255, 255, .04); }
.section-dark .step p { color: rgba(246, 243, 238, .7); }

/* ---------- value columns ---------- */
.value { border-top: 2px solid var(--accent); padding-top: 24px; }
.value h3 { margin-bottom: .5em; }
.value ul { list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: .96rem; }
.value li { padding-left: 18px; position: relative; }
.value li::before { content: ""; position: absolute; left: 0; top: 13px; width: 7px; height: 1px; background: var(--accent); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filters button {
    background: transparent; border: 1px solid var(--line); padding: 10px 20px;
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
    color: var(--muted);
    transition: all .3s var(--ease);
}
.filters button:hover { border-color: var(--primary); color: var(--text); }
.filters button.on { background: var(--primary); border-color: var(--primary); color: var(--secondary); }

.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item {
    position: relative; overflow: hidden; cursor: pointer; background: var(--primary);
    opacity: 1; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item img {
    width: 100%; height: 100%; object-fit: cover; min-height: 260px;
    transition: transform .9s var(--ease), opacity .5s var(--ease);
}
.gal-item.tall img { min-height: 538px; }
.gal-item:hover img { transform: scale(1.06); opacity: .8; }
.gal-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
    color: #fff; font-family: var(--serif); font-size: 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(8, 8, 8, .8));
    transform: translateY(8px); opacity: 0;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-item.hide { display: none; }

.lightbox {
    position: fixed; inset: 0; z-index: 1800; background: rgba(8, 8, 8, .95);
    display: flex; align-items: center; justify-content: center; padding: 60px 20px;
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; object-fit: contain; }
.lb-cap { color: rgba(255, 255, 255, .8); text-align: center; margin-top: 18px; font-size: .9rem; letter-spacing: .1em; }
.lb-btn {
    position: absolute; background: transparent; border: 1px solid rgba(255, 255, 255, .35);
    color: #fff; width: 48px; height: 48px; cursor: pointer; font-size: 1.2rem;
    transition: background .3s var(--ease);
}
.lb-btn:hover { background: rgba(255, 255, 255, .14); }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 20px; right: 20px; }

/* ---------- testimonials ---------- */
.quotes { position: relative; min-height: 250px; }
.quote {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transform: translateY(12px); text-align: center;
}
.quote.on { opacity: 1; visibility: visible; transform: none; position: relative; }
.stars { color: var(--accent); letter-spacing: .3em; margin-bottom: 20px; }
.quote blockquote {
    font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.45; margin: 0 auto 22px; max-width: 26ch + 20ch; font-style: italic;
    max-width: 46ch;
}
.quote cite {
    font-style: normal; font-size: .76rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--accent);
}
.q-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.q-dots button {
    width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--accent);
    background: transparent; padding: 0; cursor: pointer; transition: background .3s var(--ease);
}
.q-dots button.on { background: var(--accent); }

/* ---------- accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
    width: 100%; background: transparent; border: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 24px 0; text-align: left;
    font-family: var(--serif); font-size: 1.2rem; color: var(--text);
    transition: color .3s var(--ease);
}
.acc-head:hover { color: var(--accent); }
.acc-head .ic { font-size: 1.3rem; color: var(--accent); transition: transform .35s var(--ease); flex: none; }
.acc-item.open .acc-head .ic { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body p { color: var(--muted); padding-bottom: 22px; margin: 0; }

/* ---------- CTA strip ---------- */
.cta-strip { position: relative; overflow: hidden; background: var(--primary); color: #fff; }
.cta-strip img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cta-strip::after { content: ""; position: absolute; inset: 0; background: rgba(8, 8, 8, .58); }
.cta-strip .wrap { position: relative; z-index: 3; }
.cta-strip h2 { color: #fff; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); padding: clamp(26px, 4vw, 46px); }
.field { margin-bottom: 20px; }
.field label {
    display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 1rem;
    color: var(--text); background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius);
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 163, 73, .16);
}
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-msg { display: none; padding: 14px 16px; margin-bottom: 18px; font-size: .92rem; border-left: 2px solid var(--accent); background: var(--surface); }
.form-msg.show { display: block; }
.form-msg.err { border-left-color: #b4402f; }
.btn.loading { opacity: .65; pointer-events: none; }

.newsletter { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input {
    flex: 1 1 220px; padding: 14px 16px; background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-light); color: #fff; font-family: var(--sans); border-radius: var(--radius);
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
.newsletter input:focus { outline: none; border-color: var(--accent); }

/* ---------- contact tiles ---------- */
.ctile {
    border: 1px solid var(--line); padding: 30px 26px;
    transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.ctile:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.ctile svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 16px; }
.ctile h3 { font-size: 1.15rem; margin-bottom: .4em; }
.ctile a, .ctile p { color: var(--muted); font-size: .96rem; margin: 0; }
.ctile a:hover { color: var(--accent); }

/* ---------- legal pages ---------- */
.legal { max-width: 860px; }
.legal h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2em; }
.legal h2:first-child { margin-top: 0; }
.legal ul { color: var(--muted); padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal .note {
    border-left: 2px solid var(--accent); background: var(--surface);
    padding: 20px 24px; color: var(--muted); font-size: .94rem; margin: 34px 0 0;
}
.legal .updated { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* ---------- footer ---------- */
.site-footer { background: var(--primary); color: rgba(246, 243, 238, .72); padding: 86px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
    padding-bottom: 60px;
}
.footer-brand img { width: 150px; margin-bottom: 22px; }
.site-footer h4 {
    font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
    color: #fff; margin: 0 0 22px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .95rem; }
.site-footer a { transition: color .3s var(--ease), padding-left .3s var(--ease); }
.site-footer ul a:hover { color: var(--accent-soft); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
    width: 40px; height: 40px; border: 1px solid var(--line-light);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #12100b; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(200, 163, 73, .25); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1); padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    font-size: .84rem;
}
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- floating buttons ---------- */
.fab {
    position: fixed; right: 20px; z-index: 1100;
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); cursor: pointer; border: 0;
    transition: transform .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease), visibility .3s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab-wa { bottom: 88px; background: #25d366; color: #fff; }
.fab-top { bottom: 24px; background: var(--primary); color: #fff; opacity: 0; visibility: hidden; }
.fab-top.show { opacity: 1; visibility: visible; }
.fab svg { width: 25px; height: 25px; }
.fab-top svg { width: 19px; height: 19px; }

/* ---------- cookie banner ---------- */
.cookie {
    position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1300;
    background: rgba(13, 13, 13, .97); color: rgba(246, 243, 238, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 24px; display: none; gap: 22px;
    align-items: center; justify-content: space-between; flex-wrap: wrap;
    max-width: 760px; margin: 0 auto; box-shadow: var(--shadow-lg);
}
.cookie.show { display: flex; animation: rise .6s var(--ease) both; }
.cookie p { margin: 0; font-size: .9rem; }
.cookie a { color: var(--accent-soft); text-decoration: underline; }

/* ---------- scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-l { transform: translateX(-34px); }
.rv-r { transform: translateX(34px); }
.rv-s { transform: scale(.96); }
.rv-l.in, .rv-r.in, .rv-s.in { transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .g4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
    .mainnav, .nav-cta { display: none; }
    .hamburger { display: block; }
    .split { grid-template-columns: 1fr; }
    .split.flip .split-media { order: 0; }
    .frame::before { display: none; }
    .g3, .g2 { grid-template-columns: 1fr; }
    .gal { grid-template-columns: repeat(2, 1fr); }
    .gal-item.tall { grid-row: span 1; }
    .gal-item.tall img { min-height: 260px; }
    .gal-item.wide { grid-column: span 2; }
    .topbar-contact { gap: 14px; font-size: .72rem; }
    .step { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .gal { grid-template-columns: 1fr; }
    .gal-item.wide { grid-column: span 1; }
    .field.two { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .btn { width: 100%; justify-content: center; }
    .btn-sm, .newsletter .btn { width: auto; }
    .topbar-in { justify-content: center; }
    .hero { min-height: auto; padding-bottom: 110px; }
    .banner { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .rv { opacity: 1; transform: none; }
    .hero-slide img, .hero-slide.active img { transform: none; }
    .marquee-track { animation: none; }
}
