/* HIME & SAMURAI STUDIO — Dark Luxury Theme */
:root {
    --color-bg: #0c0a0a;
    --color-bg-alt: #141010;
    --color-bg-card: #1a1414;
    --color-bg-elevated: #221818;
    --color-surface: #1e1616;
    --color-dark: #ffffff;
    --color-dark-soft: #e8e0dc;
    --color-primary: #b91c1c;
    --color-primary-light: #dc2626;
    --color-primary-dark: #991b1b;
    --color-gold: #c9a962;
    --color-gold-light: #e0c882;
    --color-gold-dim: rgba(201, 169, 98, 0.15);
    --color-text: #f5f0eb;
    --color-text-muted: #a89890;
    --color-border: rgba(201, 169, 98, 0.12);
    --color-border-strong: rgba(201, 169, 98, 0.25);
    --color-line: #06c755;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Sukhumvit Set', 'Noto Sans Thai', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(185, 28, 28, 0.2);

    --navtop-brand-h: calc(clamp(38px, 4.2vw, 48px) + 1.3rem);
    --navtop-nav-h: 52px;
    --header-height: calc(var(--navtop-brand-h) + var(--navtop-nav-h));
    --header-total: var(--header-height);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    font-size: 125%; /* 20px base */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(185, 28, 28, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#main {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition); }
ul { list-style: none; }

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Typography — Sukhumvit Set สำหรับข้อความไทย, Cormorant เฉพาะชื่อแบรนด์ภาษาอังกฤษ */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
}

.font-display {
    font-family: var(--font-display);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 560px;
    font-size: 0.95rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-header .section-desc { margin: 0 auto; }

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
    flex-wrap: wrap;
}
.section-header--row .section-desc { margin: 0; }

.section-link {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    white-space: nowrap;
}
.section-link:hover { color: var(--color-gold-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn--outline-gold {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.btn--outline-gold:hover {
    background: var(--color-gold-dim);
}

.btn--line {
    background: var(--color-line);
    color: #fff;
    border-color: var(--color-line);
}
.btn--line:hover { filter: brightness(1.1); transform: translateY(-2px); }

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn--sm { padding: 0.45rem 1rem; font-size: 0.78rem; }
.btn--block { width: 100%; }

/* ═══════════════════════════════════════════
   NAVBAR — Two-tier Editorial
   ═══════════════════════════════════════════ */

/* Shell */
.site-header-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    overflow: visible;
}
.site-header-wrap.scrolled {
    background: rgba(6,4,4,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(201,169,98,0.18);
}

/* ── TIER 1: Brand bar ───────────────────── */
.nbrand {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                padding 0.42s ease;
    max-height: 200px;
    opacity: 1;
}
.site-header-wrap.brand-hidden .nbrand {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
.nbrand__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.65rem clamp(1rem, 3vw, 2.5rem);
}
.nbrand__logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.22s ease;
}
.nbrand__logo-link:hover { opacity: 0.85; }
.nbrand__logo {
    height: clamp(38px, 4.2vw, 48px);
    width: auto;
    max-width: min(320px, 55vw);
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.nbrand__logo-link:hover .nbrand__logo { transform: scale(1.02); }

.nbrand__tagline {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.nbrand__right {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-shrink: 0;
}
.nbrand__social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.nbrand__social a {
    width: 34px;
    height: 34px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    transition: color 0.22s ease, transform 0.22s ease;
}
.nbrand__social a svg {
    width: 18px;
    height: 18px;
}
.nbrand__social a:hover {
    color: var(--color-gold-light, #e8c97a);
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-2px);
}
.nbrand__sep {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── TIER 2: Nav bar ─────────────────────── */
.nbar {
    position: relative;
}
.nbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,6,6,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,169,98,0.18);
    border-bottom: 1px solid rgba(201,169,98,0.1);
    pointer-events: none;
    transition: background 0.4s ease;
}
.site-header-wrap.scrolled .nbar::before {
    background: rgba(8,6,6,0.12);
    border-top-color: rgba(201,169,98,0.25);
}
.nbar__inner {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    min-height: 58px;
    gap: 0.85rem;
}

/* Nav list */
.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0; padding: 0;
}
.site-nav__item { position: relative; }
.site-nav__link {
    display: flex;
    align-items: center;
    gap: 0.22rem;
    padding: 0.58rem 0.92rem;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    transition: background 0.22s ease;
    white-space: nowrap;
}
.site-nav__link::before {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2rem);
    height: 1.5px;
    background: var(--color-gold, #c9a962);
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.site-nav__link:hover { background: rgba(255,255,255,0.05); }
.site-nav__link:hover::before,
.site-nav__link.active::before { transform: translateX(-50%) scaleX(1); }

.site-nav__link span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    line-height: 1;
    transition: color 0.22s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.site-nav__link:hover span { color: #fff; }
.site-nav__link.active span { color: var(--color-gold-light, #e8c97a); font-weight: 600; }
.site-nav__link-en { display: none; }

.site-nav__chevron {
    color: rgba(201,169,98,0.6);
    flex-shrink: 0;
    transition: transform 0.22s ease;
}
.site-nav__item--has-dropdown:hover .site-nav__chevron,
.site-nav__item--has-dropdown:focus-within .site-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.62rem);
    left: 50%;
    min-width: 246px;
    padding: 0.48rem;
    background:
        linear-gradient(180deg, rgba(37,28,22,0.97) 0%, rgba(11,8,8,0.98) 100%);
    border: 1px solid rgba(221,190,112,0.28);
    border-radius: 16px;
    box-shadow:
        0 22px 54px rgba(0,0,0,0.45),
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 -1px 0 rgba(201,169,98,0.12) inset;
    backdrop-filter: blur(18px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1100;
    list-style: none;
    overflow: hidden;
}
.site-nav__dropdown::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    left: 0.7rem;
    right: 0.7rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,201,122,0.72), transparent);
}
.site-nav__item--has-dropdown:hover > .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within > .site-nav__dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
.site-nav__dropdown-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 1rem 0.72rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: rgba(255,255,255,0.84);
    white-space: nowrap;
    border-radius: 11px;
    isolation: isolate;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.site-nav__dropdown-link::before {
    content: '';
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: rgba(201,169,98,0.38);
    box-shadow: 0 0 0 4px rgba(201,169,98,0.07);
    flex: 0 0 auto;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}
.site-nav__dropdown-link::after {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: 0;
    transform: translateX(-4px) rotate(45deg);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.active {
    background: linear-gradient(90deg, rgba(201,169,98,0.18), rgba(255,255,255,0.055));
    color: var(--color-gold-light, #e8c97a);
    transform: translateX(2px);
}
.site-nav__dropdown-link:hover::before,
.site-nav__dropdown-link.active::before {
    background: var(--color-gold-light, #e8c97a);
    box-shadow: 0 0 0 4px rgba(201,169,98,0.14), 0 0 14px rgba(232,201,122,0.24);
}
.site-nav__dropdown-link:hover::after,
.site-nav__dropdown-link.active::after {
    opacity: 0.75;
    transform: translateX(0) rotate(45deg);
}

/* CTA Book button */
.nbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.44rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8882a 0%, #d4a843 55%, #c9a962 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: filter 0.22s ease, transform 0.22s ease;
    box-shadow: 0 2px 14px rgba(180,130,30,0.4);
    flex-shrink: 0;
}
.nbar__cta svg {
    width: 11px;
    height: 11px;
}
.nbar__cta::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.nbar__cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nbar__cta:hover::after { transform: translateX(100%); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    transition: all 0.28s ease;
}

/* Mobile CTA bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: rgba(10,8,8,0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
    gap: 0.5rem;
}
.mobile-cta-bar .btn { flex: 1; padding: 0.75rem; font-size: 0.85rem; }

/* Legacy / compat */
.navbar, .navbar__brand, .navbar__utils, .navbar__social, .navbar__sep, .navbar__cta, .navbar__logo { display: none; }
.navtop__brand-logo { display: none; }
.site-logo__img { height: clamp(44px,5vw,56px); width: auto; max-width: min(380px,90vw); display: block; object-fit: contain; }
.site-logo--footer .site-logo__img { height: clamp(52px,6vw,64px); max-width: min(420px,92vw); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }

/* Language picker */
.navtop__lang-wrap {
    position: relative;
    z-index: 1200;
}
.navtop__lang {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.navtop__lang:hover,
.navtop__lang-wrap.open .navtop__lang {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,98,0.3);
    color: #fff;
}
.navtop__lang-badge { display: inline-flex; align-items: center; }
.navtop__lang-flag {
    width: 24px; height: 17px;
    object-fit: cover; border-radius: 2px;
    display: block; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.navtop__lang-abbr { min-width: 1.65rem; text-align: center; }
.navtop__lang-chevron {
    width: 12px; height: 12px;
    color: var(--color-gold, #c9a962); opacity: 0.8;
    transition: transform 0.22s ease;
}
.navtop__lang-wrap.open .navtop__lang-chevron { transform: rotate(180deg); }
.navtop__lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem); right: 0;
    min-width: 252px; padding: 0.62rem;
    background:
        linear-gradient(180deg, rgba(38,29,23,0.98) 0%, rgba(10,8,8,0.98) 100%);
    border: 1px solid rgba(221,190,112,0.3);
    border-radius: 16px;
    box-shadow:
        0 22px 54px rgba(0,0,0,0.45),
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 -1px 0 rgba(201,169,98,0.12) inset;
    backdrop-filter: blur(18px) saturate(1.2);
    opacity: 0; visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none; z-index: 1201;
    overflow: hidden;
}
.navtop__lang-menu::before {
    content: '';
    position: absolute;
    top: 0.38rem;
    left: 0.8rem;
    right: 0.8rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,201,122,0.7), transparent);
}
.navtop__lang-wrap.open .navtop__lang-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1); pointer-events: auto;
}
.navtop__lang-menu-head {
    padding: 0.5rem 0.62rem 0.62rem;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(232,201,122,0.84);
    border-bottom: 1px solid rgba(201,169,98,0.16);
    margin: 0 0 0.45rem;
}
.navtop__lang-list { list-style: none; margin: 0; padding: 0; }
.navtop__lang-option {
    position: relative;
    display: flex; align-items: center; gap: 0.78rem;
    width: 100%; padding: 0.7rem 0.78rem;
    background: transparent; border: none; border-radius: 11px;
    color: rgba(255,255,255,0.88); font-family: var(--font-body);
    text-align: left; cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.navtop__lang-option-badge {
    display: block; width: 30px; height: 21px;
    object-fit: cover; border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.18);
    flex-shrink: 0;
}
.navtop__lang-option-copy {
    display: flex; flex-direction: column; gap: 0.06rem; flex: 1; min-width: 0;
}
.navtop__lang-option-label { font-size: 0.92rem; font-weight: 700; line-height: 1.2; }
.navtop__lang-option-code {
    font-size: 0.7rem; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.navtop__lang-option-check {
    flex-shrink: 0; color: var(--color-gold-light, #e8c97a);
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.navtop__lang-option:hover {
    background: linear-gradient(90deg, rgba(201,169,98,0.16), rgba(255,255,255,0.055));
    color: #fff;
    transform: translateX(2px);
}
.navtop__lang-option.is-active {
    background: rgba(201,169,98,0.13); color: var(--color-gold-light, #e8c97a);
    box-shadow: inset 0 0 0 1px rgba(201,169,98,0.28);
}
.navtop__lang-option.is-active .navtop__lang-option-code { color: rgba(201,169,98,0.7); }
.navtop__lang-option.is-active .navtop__lang-option-check { opacity: 1; transform: scale(1); }

.gtranslate_wrapper {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate > iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

@keyframes navtopBrandIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

body.page-home .hero {
    margin-top: 0;
    padding-top: var(--header-total);
    min-height: clamp(700px, 92vh, 920px);
    isolation: isolate;
    align-items: stretch;
    transition: margin-top 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-home .hero__bg {
    top: 0;
}

body:not(.page-home) .hero {
    padding-top: var(--header-total);
}

body.page-home .hero__scroll {
    display: none;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: #0a0806;
}

body.page-home .hero__bg {
    background: #0a0806;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

body.page-home .hero__video {
    object-position: center 35%;
}

.hero__pattern {
    display: none;
}

body.page-home .hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.54) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.38) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 580px);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
    width: min(1280px, 94vw);
    min-height: inherit;
    padding: 1.5rem 0 2rem;
}

body.page-home .hero__inner {
    align-self: stretch;
    align-content: center;
    min-height: 100%;
    padding-top: clamp(1.5rem, 4.5vh, 2.5rem);
    padding-bottom: clamp(1rem, 2.5vh, 1.5rem);
}

.hero__spacer {
    min-height: 1px;
}

.hero__panel {
    color: #fff;
    max-width: 580px;
    justify-self: end;
    width: 100%;
}

.hero__logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.hero__logo .site-logo__img {
    height: clamp(52px, 6.5vw, 68px);
    width: auto;
    max-width: min(440px, 92vw);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.hero__title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.65rem);
    font-weight: 600;
    line-height: 1.06;
    margin-bottom: 0.55rem;
    color: var(--color-gold-light);
    letter-spacing: 0.025em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-shadow:
        0 0 22px rgba(185, 28, 28, 0.45),
        0 0 48px rgba(185, 28, 28, 0.18),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero__title-line {
    display: block;
    white-space: nowrap;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.hero__subtitle {
    font-size: clamp(0.9rem, 1.18vw, 1rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.55rem;
    font-weight: 300;
    max-width: 510px;
    line-height: 1.7;
}

.hero__cta-wrap {
    width: 100%;
    max-width: 510px;
}

.hero__cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0.6rem;
}

.hero__btn {
    min-width: 0;
    padding: 0.78rem 0.78rem;
    font-size: clamp(0.76rem, 1.05vw, 0.88rem);
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero__btn svg,
.hero__btn .hero__line-icon {
    flex-shrink: 0;
}

.hero__btn svg {
    width: 17px;
    height: 17px;
}

.hero__btn .hero__line-icon {
    line-height: 1;
}

.hero__btn.btn--primary {
    background: linear-gradient(180deg, #b01818 0%, #7a0f0f 100%);
    border-color: #8f1212;
}

.hero__btn.btn--primary:hover {
    background: linear-gradient(180deg, #c41f1f 0%, #8f1212 100%);
    border-color: #a31616;
    transform: translateY(-1px);
    box-shadow:
        0 5px 16px rgba(185, 28, 28, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__btn.btn--line {
    background: linear-gradient(180deg, #07b84d 0%, #058a3a 100%);
    border-color: #069940;
}

.hero__btn.btn--line:hover {
    filter: none;
    background: linear-gradient(180deg, #0ad158 0%, #069940 100%);
    transform: translateY(-1px);
    box-shadow:
        0 5px 16px rgba(6, 199, 85, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__line-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--transition);
}

.hero__line-id .hero__line-icon {
    color: #fff;
    opacity: 0.9;
    line-height: 1;
}

.hero__line-id:hover {
    color: var(--color-line);
}

.hero__line-id:hover .hero__line-icon {
    color: var(--color-line);
    opacity: 1;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Features Strip */
.features-strip {
    background: transparent;
    padding: 3rem 0;
}

.features-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 0.5rem;
}

.feature-item__icon {
    width: 52px; height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    border: 1px solid var(--color-border-strong);
    border-radius: 50%;
    background: var(--color-gold-dim);
}

.feature-item h4 {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.feature-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Sections */
section { padding: 3.5rem 0; }

/* Theme Carousel (legacy — kept for compat) */
.theme-carousel-wrap { position: relative; }
.theme-carousel { display: flex; gap: 1.25rem; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.theme-carousel::-webkit-scrollbar { display: none; }
.theme-carousel .theme-card { flex: 0 0 220px; }

/* ─── Themes Editorial Strip ─── */
.themes-strip {
    display: flex;
    height: 600px;
    gap: 3px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.themes-strip__card {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.themes-strip__card:hover { flex: 1.65; }

/* The photo */
.themes-strip__card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.themes-strip__card:hover img { transform: scale(1.04); }

/* Gradient overlay — always dark at bottom, lighten slightly on hover */
.themes-strip__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(4, 2, 2, 0.92) 0%,
            rgba(4, 2, 2, 0.35) 40%,
            rgba(4, 2, 2, 0.08) 70%,
            transparent 100%),
        linear-gradient(to bottom,
            rgba(4, 2, 2, 0.35) 0%,
            transparent 30%);
    transition: background 0.4s ease;
}

/* Gold top line — appears on hover */
.themes-strip__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.themes-strip__card:hover::after { opacity: 1; }

/* ── Static label (always visible top-left) ── */
.themes-strip__static {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.themes-strip__num {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.themes-strip__count {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    white-space: nowrap;
    display: block;
}

/* ── Hover body ── */
.themes-strip__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1.15rem 1.4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.themes-strip__en {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.themes-strip__card:hover .themes-strip__en {
    opacity: 0.85;
    transform: translateY(0);
}

.themes-strip__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    transition: font-size 0.3s ease, white-space 0.1s;
}

.themes-strip__card:hover .themes-strip__title {
    white-space: normal;
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

/* Description — hidden, slides in on hover */
.themes-strip__desc {
    font-size: 0.73rem;
    color: rgba(245, 240, 235, 0.72);
    line-height: 1.65;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s 0.08s ease;
    margin-bottom: 0;
}

.themes-strip__card:hover .themes-strip__desc {
    max-height: 5rem;
    opacity: 1;
    margin-bottom: 0.75rem;
}

/* CTA */
.themes-strip__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s 0.15s ease;
}

.themes-strip__card:hover .themes-strip__cta {
    max-height: 2rem;
    opacity: 1;
}

@media (max-width: 860px) {
    .themes-strip {
        height: 480px;
        gap: 3px;
    }
    .themes-strip__title { font-size: 1rem; }
    .themes-strip__card:hover .themes-strip__title { font-size: 1.15rem; }
}

@media (max-width: 600px) {
    .themes-strip {
        flex-direction: column;
        height: auto;
        gap: 3px;
        border-radius: var(--radius-md);
    }
    .themes-strip__card {
        flex: none;
        height: 160px;
        transition: height 0.4s ease;
    }
    .themes-strip__card:hover {
        flex: none;
        height: 240px;
    }
}

/* ─── Pricing Packages Scroller ─── */
.pricing-packages-section {
    background: transparent;
    padding: 3.5rem 0;
}

.pricing-packages-section .ppkg-showcase {
    margin-bottom: 0;
}

.ppkg-showcase--home .ppkg-card__media {
    min-height: 300px;
}

/* ── Outer wrapper (full bleed) ── */
.pkg-scroller-wrap {
    overflow: hidden;
}

/* ── Header bar ── */
.pkg-scroller-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2.5rem min(4vw, 2rem) 1rem;
    max-width: min(1200px, 92vw);
    margin: 0 auto;
}

.pkg-scroller-nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pkg-scroller-counter {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-right: 0.35rem;
}

.pkg-scroller-counter__cur {
    color: var(--color-gold);
    font-weight: 700;
}

.pkg-scroller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border-strong);
    background: var(--color-bg-card);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.pkg-scroller-btn:hover {
    border-color: var(--color-gold);
    background: var(--color-bg-elevated);
    color: var(--color-gold-light);
}

.pkg-scroller-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pkg-scroller-all {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    margin-left: 0.25rem;
}

.pkg-scroller-all:hover { color: var(--color-gold); }

/* ── Viewport (clips the sliding track) ── */
.pkg-scroller-viewport {
    overflow: hidden;
}

.pkg-scroller-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* ── Individual slide ── */
.pkg-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 46% 1fr;
    min-height: 400px;
    max-height: 440px;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.pkg-slide--featured {
    border-color: rgba(201, 169, 98, 0.22);
}

/* ── Left info panel ── */
.pkg-slide__info {
    display: flex;
    flex-direction: column;
    /* align text with the page container while panel goes edge-to-edge */
    padding: 1.75rem 2.5rem 1.75rem clamp(1.25rem, calc((100vw - 1100px) / 2 + 2rem), 6vw);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.pkg-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(185, 28, 28, 0.85);
    border: 1px solid rgba(201, 169, 98, 0.28);
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.pkg-slide__badge svg { color: var(--color-gold); }

.pkg-slide__name-en {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.pkg-slide__title {
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.pkg-slide__divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 0.65rem 0;
    flex-shrink: 0;
}

.pkg-slide__price-block {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
}

.pkg-slide__price {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--color-gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pkg-slide__currency {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
}

.pkg-slide__vat {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
}

.pkg-slide__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    overflow: hidden;
}

.pkg-slide__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.78);
    line-height: 1.5;
}

.pkg-slide__features li::before {
    content: '';
    width: 13px; height: 13px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
    background: radial-gradient(circle at center, rgba(201,169,98,0.2), transparent);
}

.pkg-slide__ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pkg-slide__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1.5px solid var(--color-border-strong);
    color: var(--color-text);
    background: transparent;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    text-decoration: none;
}

.pkg-slide__cta:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background: rgba(201,169,98,0.06);
}

.pkg-slide__cta--primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pkg-slide__cta--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: #fff;
}

/* Large index number decoration */
.pkg-slide__index-label {
    position: absolute;
    bottom: -0.1em;
    left: -0.05em;
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;
    color: rgba(201, 169, 98, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Right photo collage ── */
.pkg-slide__visual {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 3px;
    overflow: hidden;
}

.pkg-slide__photo {
    overflow: hidden;
    position: relative;
}

.pkg-slide__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

/* Ken-Burns slow drift on active slide */
.pkg-slide.is-active .pkg-slide__photo img {
    animation: pkgDrift 8s ease forwards;
}

@keyframes pkgDrift {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
}

.pkg-slide__photo--main { grid-row: 1 / 2; }

.pkg-slide__photo-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

/* ── Progress dots ── */
.pkg-scroller-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 2.5rem;
}

.pkg-scroller-dot {
    width: 28px; height: 3px;
    border-radius: 2px;
    border: none;
    background: rgba(201, 169, 98, 0.18);
    cursor: pointer;
    transition: background 0.35s ease, width 0.35s ease;
    padding: 0;
}

.pkg-scroller-dot.is-active {
    background: var(--color-gold);
    width: 52px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .pkg-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto 200px;
        min-height: unset;
        max-height: unset;
    }
    .pkg-slide__info { padding: 1.5rem 1.25rem 1rem; }
    .pkg-slide__visual { grid-template-columns: 1fr 80px; }
}

@media (max-width: 560px) {
    .pkg-slide__visual { display: none; }
    .pkg-slide__info { padding: 1.25rem 1rem; }
}

/* New gallery layout */
.pkg-gallery {
    display: flex;
    gap: 0.85rem;
    align-items: flex-end;
}

.pkg-gallery-card {
    flex: 1;
    position: relative;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease,
        height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-gallery-card--featured {
    height: 660px;
    border-color: rgba(201, 169, 98, 0.28);
    box-shadow: 0 0 48px rgba(185, 28, 28, 0.12);
}

.pkg-gallery-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.65);
    border-color: rgba(201, 169, 98, 0.55);
}

/* ── Background images with crossfade ── */
.pkg-gallery-card__bg {
    position: absolute;
    inset: 0;
}

.pkg-gallery-card__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.pkg-gallery-card__img--1 {
    opacity: 1;
    transform: scale(1.04);
}

.pkg-gallery-card:hover .pkg-gallery-card__img--1 {
    opacity: 0;
    transform: scale(1.08);
}

.pkg-gallery-card:hover .pkg-gallery-card__img--2 {
    opacity: 1;
    transform: scale(1.0);
}

.pkg-gallery-card__img--2 {
    transform: scale(1.0);
    transition-delay: 0s, 0s;
}

/* ── Gradient overlay ── */
.pkg-gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 2, 2, 0.98) 0%,
        rgba(4, 2, 2, 0.65) 42%,
        rgba(4, 2, 2, 0.1)  75%,
        transparent 100%
    );
    transition: background 0.5s ease;
}

.pkg-gallery-card:hover .pkg-gallery-card__overlay {
    background: linear-gradient(
        to top,
        rgba(4, 2, 2, 1)    0%,
        rgba(4, 2, 2, 0.82) 48%,
        rgba(4, 2, 2, 0.2)  80%,
        transparent 100%
    );
}

/* ── Shine sweep on hover ── */
.pkg-gallery-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(201, 169, 98, 0.07) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0s;
    pointer-events: none;
}

.pkg-gallery-card:hover .pkg-gallery-card__shine {
    transform: translateX(100%);
    transition: transform 0.75s ease;
}

/* ── Badge ── */
.pkg-gallery-card__badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem 0.3rem 0.7rem;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.92), rgba(153, 27, 27, 0.95));
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.pkg-gallery-card__badge svg { color: var(--color-gold); flex-shrink: 0; }

/* ── Body ── */
.pkg-gallery-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.6rem 1.4rem 1.4rem;
    z-index: 2;
}

.pkg-gallery-card__name-en {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.pkg-gallery-card__title {
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.pkg-gallery-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0;
}

.pkg-gallery-card__price {
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--color-gold-light);
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.pkg-gallery-card__currency {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* ── Reveal section (hidden → visible on hover) ── */
.pkg-gallery-card__reveal {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.4s ease;
}

.pkg-gallery-card:hover .pkg-gallery-card__reveal {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
}

.pkg-gallery-card__vat {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    margin-bottom: 0.6rem;
}

.pkg-gallery-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pkg-gallery-card__features li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.85);
    line-height: 1.5;
}

.pkg-gallery-card__features li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

.pkg-gallery-card__ctas {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    transform: translateY(6px);
    transition: transform 0.35s 0.12s ease;
}

.pkg-gallery-card:hover .pkg-gallery-card__ctas {
    transform: translateY(0);
}

.pkg-gallery-card__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.pkg-gallery-card__cta:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background: rgba(201, 169, 98, 0.08);
}

.pkg-gallery-card__cta--primary {
    background: rgba(185, 28, 28, 0.85);
    border-color: rgba(185, 28, 28, 0.9);
    color: #fff;
}

.pkg-gallery-card__cta--primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

@media (max-width: 860px) {
    .pkg-gallery {
        gap: 0.65rem;
    }
    .pkg-gallery-card { height: 440px; }
    .pkg-gallery-card--featured { height: 520px; }
    .pkg-gallery-card__title { font-size: 1rem; }
    .pkg-gallery-card__price { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .pkg-gallery {
        flex-direction: column;
        align-items: stretch;
    }
    .pkg-gallery-card,
    .pkg-gallery-card--featured { height: 400px; }
    .pkg-gallery-card:hover .pkg-gallery-card__reveal {
        max-height: 220px;
    }
}

/* package-showcase legacy — removed, replaced by .pkg-gallery */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.theme-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.theme-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-strong);
}

.theme-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.theme-card:hover .theme-card__img { transform: scale(1.06); }

.theme-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 6, 6, 0.9) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
}

.theme-card__label {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
}
.theme-card__label-en {
    font-family: var(--font-display);
    font-size: 0.65rem;
    opacity: 0.65;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.theme-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-elevated));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* ══════════════════════════════════════════
   5 Reasons — Full-Width Interactive Showcase
══════════════════════════════════════════ */
.reasons-showcase {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
}

/* ── LEFT tabs panel ── */
.reasons-tabs {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 2.5rem 3.5rem 3rem;
    background: rgba(10, 7, 7, 0.96);
    border-right: 1px solid rgba(201, 169, 98, 0.15);
}

.reasons-tabs__head { margin-bottom: 2.5rem; }

.reasons-tabs__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-text);
    margin-top: 0.5rem;
}

.reasons-tabs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Individual tab item ── */
.reasons-tab {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1rem 1rem 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
    overflow: hidden;
    transition: padding-left 0.35s ease;
}

.reasons-tab:first-child { border-top: 1px solid rgba(201, 169, 98, 0.08); }

/* auto-progress bar */
.reasons-tab__progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 1px;
    width: 0%;
    background: var(--color-gold);
    transition: width linear;
}

.reasons-tab.is-active .reasons-tab__progress {
    width: 100%;
}

/* left gold accent bar */
.reasons-tab::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reasons-tab.is-active::before { transform: scaleY(1); }
.reasons-tab.is-active { padding-left: 1rem; }

.reasons-tab__num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    opacity: 0.5;
    flex-shrink: 0;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.reasons-tab.is-active .reasons-tab__num { opacity: 1; }

.reasons-tab__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(245, 240, 235, 0.45);
    line-height: 1.5;
    transition: color 0.35s ease;
}

.reasons-tab.is-active .reasons-tab__title,
.reasons-tab:hover .reasons-tab__title {
    color: rgba(245, 240, 235, 0.95);
}

/* ── RIGHT visual ── */
.reasons-visual {
    position: relative;
    overflow: hidden;
}

.reasons-panel {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0s;
}

.reasons-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.75s ease;
}

/* Ken Burns on active panel image */
.reasons-panel__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 6s ease;
}

.reasons-panel.is-active .reasons-panel__bg {
    transform: scale(1.0);
}

/* Deep gradient from left (meets tabs) + bottom (for text) */
.reasons-panel__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 6, 6, 0.55) 0%, transparent 45%),
        linear-gradient(to top,  rgba(5, 3, 3, 0.95) 0%, rgba(5, 3, 3, 0.4) 45%, transparent 75%);
}

/* Giant decorative number */
.reasons-panel__deco-num {
    position: absolute;
    top: -0.1em;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(201, 169, 98, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.6s ease;
}

.reasons-panel.is-active .reasons-panel__deco-num {
    color: rgba(201, 169, 98, 0.09);
}

/* Content block at bottom-left */
.reasons-panel__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem 3.5rem;
    max-width: 680px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s 0.2s ease;
}

.reasons-panel.is-active .reasons-panel__content {
    transform: translateY(0);
    opacity: 1;
}

.reasons-panel__en {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.reasons-panel__title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0;
}

.reasons-panel__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 1rem 0;
}

.reasons-panel__body {
    font-size: 0.88rem;
    color: rgba(245, 240, 235, 0.8);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 0.5rem;
}

.reasons-panel__note {
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(245, 240, 235, 0.45);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.reasons-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.55rem 1.5rem;
    border: 1.5px solid rgba(201, 169, 98, 0.55);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 0.04em;
    background: rgba(201, 169, 98, 0.06);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
    text-decoration: none;
}

.reasons-panel__cta:hover {
    background: rgba(201, 169, 98, 0.14);
    border-color: var(--color-gold);
    gap: 0.8rem;
}

/* ── Mobile ── */
@media (max-width: 900px) {
    .reasons-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto 55vw;
        min-height: unset;
    }
    .reasons-tabs {
        padding: 2rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15);
        background: rgba(10, 7, 7, 0.98);
    }
    .reasons-visual { min-height: 55vw; }
    .reasons-panel__content { padding: 1.5rem; }
    .reasons-panel__title { font-size: 1.3rem; }
    .reasons-panel__body { font-size: 0.8rem; }
    .reasons-tabs__heading { font-size: 1.2rem; }
    .reasons-panel__deco-num { font-size: 8rem; }
}

@media (max-width: 560px) {
    .reasons-visual { min-height: 70vw; }
    .reasons-tabs { padding: 1.5rem 1.25rem; }
}

/* About Section */
.about-section {
    position: relative;
    background: transparent;
    padding: clamp(2rem, 3.5vw, 3rem) 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: center;
}

.about-section__heading {
    margin-bottom: 1rem;
}

.about-section__title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    color: var(--color-gold-light);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.about-section__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.about-section__text {
    font-family: var(--font-body);
    font-size: clamp(0.82rem, 1.05vw, 0.9rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
    max-width: 34rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.about-feature {
    text-align: center;
}

.about-feature__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.45);
    border-radius: 50%;
    color: var(--color-gold-light);
    background: rgba(201, 169, 98, 0.06);
}

.about-feature__icon i {
    font-size: 1.15rem;
    line-height: 1;
}

.about-feature__label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    margin-bottom: 0.15rem;
}

.about-feature__label-en {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.btn--about-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.35rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.55);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn--about-more:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--color-gold-light);
    color: #fff;
    transform: translateY(-1px);
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-gallery__row {
    display: grid;
    gap: 0.65rem;
}

.about-gallery__row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-gallery__row--bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-gallery img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 98, 0.15);
    display: block;
}

.about-gallery__row--top img {
    aspect-ratio: 16 / 10;
}

.about-gallery__row--bottom img {
    aspect-ratio: 4 / 5;
}

/* About us page */
.aboutus-story,
.aboutus-belief,
.aboutus-cinema,
.aboutus-dream,
.aboutus-company {
    padding: clamp(2.4rem, 5vw, 3.8rem) 0;
    border-bottom: 1px solid var(--color-border);
}

.aboutus-story {
    background:
        radial-gradient(circle at 78% 12%, rgba(201, 169, 98, 0.1), transparent 32%),
        rgba(255, 255, 255, 0.012);
}
.aboutus-story--quiet,
.aboutus-belief--static,
.aboutus-cinema--static,
.aboutus-dream--static,
.aboutus-company--static {
    background: #0b0a09;
}

.aboutus-eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--color-gold);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.aboutus-manifest,
.aboutus-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.6rem, 3.5vw, 3rem);
    align-items: center;
}

.aboutus-manifest__title,
.aboutus-hero__title {
    max-width: 660px;
    margin: 0 0 0.85rem;
    color: var(--color-text);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 650;
    line-height: 1.28;
}

.aboutus-manifest__copy p,
.aboutus-hero__lead,
.aboutus-intro p,
.aboutus-static-copy p,
.aboutus-belief__card p,
.aboutus-cinema__copy p,
.aboutus-dream__inner p,
.aboutus-company p {
    color: var(--color-text-muted);
    font-size: clamp(0.82rem, 1vw, 0.9rem);
    line-height: 1.78;
}

.aboutus-manifest__copy p {
    max-width: 620px;
    margin: 0 0 0.75rem;
}

.aboutus-manifest__media {
    margin: 0;
    padding: 0.55rem;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}
.aboutus-manifest__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.aboutus-hero__lead {
    max-width: 620px;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

.aboutus-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.aboutus-recommended {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: stretch;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 98, 0.18);
}
.aboutus-recommended__label {
    margin: 0;
    color: var(--color-gold-light);
    font-size: 0.86rem;
    font-weight: 800;
}
.aboutus-recommended__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(201, 169, 98, 0.14);
    border-radius: 8px;
    overflow: hidden;
}
.aboutus-recommended__grid span {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.75rem;
    color: var(--color-text);
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.035);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.aboutus-recommended__grid span:first-child { border-left: 0; }

.aboutus-image-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.aboutus-image-band img,
.aboutus-process-gallery img,
.aboutus-belief-strip img {
    width: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.aboutus-image-band img {
    aspect-ratio: 4 / 3;
}

.aboutus-image-band img:nth-child(2),
.aboutus-image-band img:nth-child(4) {
    object-position: center top;
}

.aboutus-hero__media {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 0.75rem;
    min-height: 460px;
}

.aboutus-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.aboutus-hero__media img:first-child { object-position: center; }
.aboutus-hero__media img:last-child {
    margin-top: 3rem;
    max-height: 390px;
    object-position: center top;
}

.aboutus-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.aboutus-intro p {
    margin: 0;
    padding: 1.35rem;
    background: rgba(15, 13, 11, 0.86);
    border: 1px solid rgba(201, 169, 98, 0.13);
    border-radius: 8px;
}

.aboutus-fit {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.25rem;
    padding: 1.5rem;
    background: rgba(201, 169, 98, 0.055);
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
}

.aboutus-process {
    padding: clamp(2.4rem, 5vw, 3.8rem) 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.012);
}
.aboutus-static-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: clamp(1.6rem, 3.5vw, 3rem);
    align-items: center;
}
.aboutus-static-grid--reverse {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}
.aboutus-static-copy h3 {
    margin: 0 0 0.75rem;
    color: var(--color-text);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 650;
    line-height: 1.32;
}
.aboutus-static-copy p {
    margin: 0 0 0.75rem;
}
.aboutus-process__steps {
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(12, 10, 8, 0.82);
}
.aboutus-process__steps div {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    min-height: 58px;
    color: var(--color-text);
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.aboutus-process__steps div:last-child { border-bottom: 0; }
.aboutus-process__steps span {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.aboutus-process-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.aboutus-process-gallery img {
    aspect-ratio: 16 / 11;
}

.aboutus-fit__head h3,
.aboutus-section-head h3,
.aboutus-cinema__copy h3,
.aboutus-dream__inner h3,
.aboutus-company h3 {
    margin: 0 0 0.65rem;
    color: var(--color-text);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 650;
    line-height: 1.32;
}

.aboutus-section-head {
    max-width: 640px;
    margin: 0 0 1rem;
}

.aboutus-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.aboutus-fit__item {
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    line-height: 1.45;
}

.aboutus-belief__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.aboutus-belief__card {
    position: relative;
    min-height: 240px;
    padding: clamp(1rem, 2.2vw, 1.45rem);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(22, 19, 16, 0.98), rgba(11, 10, 9, 0.98));
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
}

.aboutus-card-num {
    display: block;
    margin-bottom: 0.9rem;
    color: rgba(201, 169, 98, 0.72);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 0.9;
}

.aboutus-belief__card h3 {
    margin: 0 0 0.65rem;
    color: var(--color-text);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    font-weight: 650;
    line-height: 1.3;
}

.aboutus-belief__card p {
    margin: 0;
}

.aboutus-belief-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
    align-items: start;
}

.aboutus-belief-strip img {
    aspect-ratio: 4 / 5;
    object-position: center top;
}

.aboutus-cinema {
    background: rgba(255, 255, 255, 0.015);
}

.aboutus-cinema__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.aboutus-cinema__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.aboutus-cinema__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
}

.aboutus-cinema__media img:last-child {
    margin-top: 3rem;
}

.aboutus-studio-frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.55rem;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}
.aboutus-studio-frame img {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.aboutus-dream__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3.5vw, 2.6rem);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(255, 255, 255, 0.025)),
        rgba(12, 10, 8, 0.92);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
}

.aboutus-dream__inner p {
    max-width: 620px;
    margin: 0 auto 0.75rem;
}
.aboutus-dream__inner p:last-child { margin-bottom: 0; }

.aboutus-company__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 0.9rem;
    align-items: stretch;
}

.aboutus-company__grid > div {
    padding: 1.15rem;
    border: 1px solid rgba(201, 169, 98, 0.14);
    border-radius: 8px;
    background: rgba(15, 13, 11, 0.88);
}

.aboutus-company__panel p {
    margin: 0 0 0.85rem;
}
.aboutus-company__panel p:last-child { margin-bottom: 0; }
.aboutus-company__panel strong {
    color: var(--color-gold-light);
}

@media (max-width: 900px) {
    .aboutus-manifest,
    .aboutus-hero,
    .aboutus-intro,
    .aboutus-fit,
    .aboutus-recommended,
    .aboutus-static-grid,
    .aboutus-static-grid--reverse,
    .aboutus-belief__grid,
    .aboutus-belief-strip,
    .aboutus-cinema__grid,
    .aboutus-company__grid {
        grid-template-columns: 1fr;
    }
    .aboutus-image-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .aboutus-hero__media {
        min-height: 360px;
    }
    .aboutus-recommended__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .aboutus-recommended__grid span {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .aboutus-recommended__grid span:nth-child(-n+2) { border-top: 0; }
}

@media (max-width: 620px) {
    .aboutus-recommended__grid,
    .aboutus-hero__media,
    .aboutus-process-gallery,
    .aboutus-cinema__media,
    .aboutus-studio-frame,
    .aboutus-fit__grid {
        grid-template-columns: 1fr;
    }
    .aboutus-recommended__grid span:nth-child(-n+2) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .aboutus-recommended__grid span:first-child { border-top: 0; }
    .aboutus-hero__media img:last-child,
    .aboutus-cinema__media img:last-child {
        margin-top: 0;
    }
    .aboutus-fit {
        padding: 1rem;
    }
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-md);
}

.blog-card__img {
    aspect-ratio: 16/10;
    background: var(--color-bg-elevated);
    overflow: hidden;
}
.blog-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body { padding: 1.25rem; }

.blog-card__cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
}
.blog-card__cat--blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.blog-card__cat--red { background: rgba(185, 28, 28, 0.2); color: #f87171; }
.blog-card__cat--green { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.blog-card__cat--gold { background: var(--color-gold-dim); color: var(--color-gold); }

.blog-card__title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    color: var(--color-text);
}

.blog-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Home latest articles */
.home-news {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
}

.home-news-feature,
.home-news-item {
    position: relative;
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(22, 19, 16, 0.98), rgba(11, 10, 9, 0.98));
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-news-feature:hover,
.home-news-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.36);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.home-news-feature {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    min-height: 360px;
}

.home-news-feature__media,
.home-news-item__thumb {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.home-news-feature__media img,
.home-news-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.home-news-feature:hover img,
.home-news-item:hover img {
    transform: scale(1.05);
}

.home-news-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.home-news__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 0 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.72rem;
}

.home-news-feature__title {
    margin: 0 0 0.85rem;
    color: var(--color-text);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.25;
}

.home-news-feature__excerpt,
.home-news-item__excerpt {
    color: var(--color-text-muted);
    line-height: 1.65;
}

.home-news-feature__excerpt {
    margin: 0 0 1.4rem;
    font-size: 0.9rem;
}

.home-news__readmore {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: var(--color-gold-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.home-news-list {
    display: grid;
    gap: 1rem;
}

.home-news-item {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 172px;
}

.home-news-item__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1rem;
}

.home-news-item__title {
    margin: 0 0 0.55rem;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.35;
}

.home-news-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 0.78rem;
}

.home-news-empty {
    grid-column: 1 / -1;
    padding: 2.5rem;
    border: 1px dashed rgba(201, 169, 98, 0.22);
    border-radius: 8px;
    color: var(--color-text-muted);
    text-align: center;
}

@media (max-width: 960px) {
    .home-news,
    .home-news-feature {
        grid-template-columns: 1fr;
    }
    .home-news-feature__media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .home-news-item {
        grid-template-columns: 112px minmax(0, 1fr);
    }
    .home-news-item__title {
        font-size: 0.9rem;
    }
    .home-news-item__excerpt {
        display: none;
    }
}

/* Reviews */
.reviews-section {
    background: transparent;
}

.review-carousel-wrap { position: relative; }

.review-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.review-carousel::-webkit-scrollbar { display: none; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.review-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    flex: 0 0 min(340px, 85vw);
    scroll-snap-align: start;
    transition: all var(--transition);
}
.review-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.review-card__text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.65;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.review-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-gold-dim);
    border: 1px solid var(--color-border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-card__author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text);
}
.review-card__theme {
    font-size: 0.72rem;
    color: var(--color-gold);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #7f1d1d 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: var(--shadow-glow);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}
.cta-banner p { opacity: 0.85; margin-bottom: 1.5rem; }
.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: calc(var(--header-total) + 3rem) 0 3rem;
    background: linear-gradient(180deg, rgba(185, 28, 28, 0.08) 0%, transparent 100%);
    border-bottom: none;
    text-align: center;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
}

body.page-about .page-hero {
    padding: calc(var(--header-total) + 2.1rem) 0 2.1rem;
}
body.page-about .page-hero__eyebrow {
    font-size: 0.64rem;
    margin-bottom: 0.45rem;
}
body.page-about .page-hero__title {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 650;
}
body.page-about .page-hero__lead {
    max-width: 560px;
    margin: 0.55rem auto 0;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Page Hero — video variant (homepage feel) */
.page-hero--video {
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    height: clamp(260px, 40vw, 540px);
    aspect-ratio: unset;
    margin: 0;
    min-height: unset;
    overflow: hidden;
    padding: 0;
    text-align: left;
    border-bottom: none;
    border-radius: 0;
    isolation: isolate;
}
.page-hero--video .page-hero__bg,
.page-hero--video .page-hero__video,
.page-hero--video .page-hero__pattern,
.page-hero--video .page-hero__inner {
    grid-area: stack;
}
.page-hero__bg {
    z-index: 0;
    background: #0a0806;
}
.page-hero__video {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    background: #0a0806;
    transform-origin: center 35%;
    animation: pageHeroKenBurns 24s ease-in-out infinite alternate;
}
.page-hero--video .page-hero__pattern {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.55) 68%, rgba(0, 0, 0, 0.88) 100%);
    animation: pageHeroPatternPulse 8s ease-in-out infinite alternate;
}
.page-hero--video .page-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    padding: var(--header-total, 100px) min(5vw, 2.5rem) clamp(6rem, 14vw, 10rem);
    box-sizing: border-box;
}
.page-hero--video .page-hero__panel {
    position: relative;
    width: min(100%, 480px);
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: pageHeroPanelIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-hero--video .page-hero__title {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-gold-light);
    letter-spacing: 0.02em;
    text-shadow:
        0 0 18px rgba(185, 28, 28, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.45);
    animation:
        pageHeroTextIn 0.75s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both,
        pageHeroTitleGlow 3.8s ease-in-out 1.1s infinite alternate;
}
.page-hero--video .page-hero__eyebrow {
    display: block;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: clamp(0.72rem, 1.2vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    animation: pageHeroTextIn 0.65s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-hero--video .page-hero__eyebrow::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    margin-top: 0.45rem;
    background: linear-gradient(90deg, var(--color-gold), rgba(201, 169, 98, 0));
    animation: pageHeroLineGrow 1.1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-hero--video .page-hero__lead {
    font-size: clamp(0.88rem, 1.35vw, 1.05rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    max-width: 100%;
    margin: 0.55rem 0 0;
    line-height: 1.65;
    animation: pageHeroTextIn 0.75s 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageHeroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
}

@keyframes pageHeroPatternPulse {
    from { opacity: 0.92; }
    to { opacity: 1; }
}

@keyframes pageHeroPanelIn {
    from {
        opacity: 0;
        transform: translateX(-22px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pageHeroPanelGlow {
    from {
        border-color: rgba(201, 169, 98, 0.16);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    }
    to {
        border-color: rgba(201, 169, 98, 0.38);
        box-shadow:
            0 12px 36px rgba(0, 0, 0, 0.34),
            0 0 28px rgba(201, 169, 98, 0.14);
    }
}

@keyframes pageHeroTextIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageHeroLineGrow {
    to { width: 52px; }
}

@keyframes pageHeroTitleGlow {
    from {
        text-shadow:
            0 0 16px rgba(185, 28, 28, 0.28),
            0 2px 4px rgba(0, 0, 0, 0.45);
    }
    to {
        text-shadow:
            0 0 28px rgba(185, 28, 28, 0.55),
            0 0 52px rgba(185, 28, 28, 0.18),
            0 2px 4px rgba(0, 0, 0, 0.45);
    }
}

@media (max-width: 768px) {
    .page-hero--video .page-hero__inner {
        align-items: flex-end;
        justify-content: flex-start;
        padding: var(--header-total, 80px) 1.1rem 1.25rem;
    }
    .page-hero--video .page-hero__panel {
        width: 100%;
        max-width: 100%;
        text-align: left;
        animation: pageHeroPanelInMobile 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .page-hero--video .page-hero__title {
        font-size: clamp(1.65rem, 6vw, 2.2rem);
    }
    .page-hero--video .page-hero__lead {
        font-size: 0.82rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Sidebar Layout */
.page-with-sidebar { padding: 3rem 0 5rem; }

.page-with-sidebar__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

.page-sidebar {
    position: sticky;
    top: calc(var(--header-total) + 1.5rem);
}

.sidebar-nav {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    margin-bottom: 1.25rem;
}

.sidebar-nav__title {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-nav__group + .sidebar-nav__group { margin-top: 1.25rem; }

.sidebar-nav ul li a {
    display: block;
    padding: 0.55rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    transition: all var(--transition);
}
.sidebar-nav ul li a small {
    display: block;
    font-size: 0.68rem;
    opacity: 0.7;
}
.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
    background: var(--color-gold-dim);
    color: var(--color-gold);
}

.sidebar-cta {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
}
.sidebar-cta p {
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    color: var(--color-text-muted);
}
.sidebar-cta .btn + .btn { margin-top: 0.5rem; }

.page-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--color-border);
    min-height: 400px;
}

/* Content blocks */
.content-block { margin-bottom: 2rem; }
.content-block:last-child { margin-bottom: 0; }

.content-block h2 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.content-block h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.65rem;
    color: var(--color-gold);
}

.content-block p { margin-bottom: 1rem; color: var(--color-text-muted); }

.content-block ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}
.content-block ul li { margin-bottom: 0.45rem; }

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.photo-gallery__item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
}

.photo-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.photo-gallery__item:hover img { transform: scale(1.04); }

.photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-elevated), var(--color-bg-card));
    color: var(--color-text-muted);
    font-size: 0.78rem;
    text-align: center;
    padding: 1rem;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.875rem;
}

.pricing-table th,
.pricing-table td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
    background: var(--color-bg-elevated);
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-table tr:hover td { background: rgba(201, 169, 98, 0.04); }
.pricing-table td { color: var(--color-text-muted); }
.pricing-table td strong { color: var(--color-text); }

.pricing-table .price {
    font-weight: 700;
    color: var(--color-primary-light);
    font-size: 1rem;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
}

.pricing-table-wrap .pricing-table { margin: 0; }

.pricing-table .price-vat,
.pricing-table .price-note {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 0.2rem;
}

.pricing-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.pricing-section-gap { margin-top: 2.5rem; }

.pricing-section-title {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.pricing-section-sub {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
}

.pricing-footnote {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    line-height: 1.55;
}

.pricing-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════
   PRICING INDEX PAGE — Full-width redesign
   ═══════════════════════════════════════════════ */

/* Section nav pill */
.pnav {
    position: sticky;
    top: var(--header-total, 80px);
    z-index: 50;
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.14);
}
.pnav__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow-x: visible;
    scrollbar-width: none;
}
.pnav__inner::-webkit-scrollbar { display: none; }
.pnav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-width: 0;
    min-height: 76px;
    padding: 0.75rem 1.1rem;
    border-bottom: 2px solid transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: border-color 0.22s, background 0.22s;
}
.pnav__link:first-child { border-left: 0; }
.pnav__link:hover { background: rgba(201, 169, 98, 0.06); }
.pnav__link.is-active { border-bottom-color: var(--color-gold); }
.pnav__label-th {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}
.pnav__link.is-active .pnav__label-th { color: var(--color-gold); }
.pnav__label-en {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* Section wrapper */
.psec {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}
.psec--alt {
    background: rgba(255, 255, 255, 0.018);
}

/* Section header */
.psec__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.psec__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.psec__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}
.psec__lead {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}
.psec__sub-head {
    margin: 2.5rem 0 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}
.psec__sub-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
}
.psec__sub-lead {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Standard package cards */
.ppkg-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.ppkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(21, 18, 15, 0.98), rgba(11, 10, 9, 0.98));
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ppkg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 98, 0.36);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}
.ppkg-card--featured {
    border-color: rgba(201, 169, 98, 0.48);
    background: linear-gradient(180deg, rgba(32, 24, 14, 0.98), rgba(12, 10, 8, 0.98));
}

.ppkg-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 260px;
    overflow: hidden;
    background: #12100d;
}
.ppkg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}
.ppkg-card:hover .ppkg-card__media img { transform: scale(1.06); }
.ppkg-card__media-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(8, 7, 6, 0.88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 55%);
}
.ppkg-card__number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.12em;
}
.ppkg-card__badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--color-gold);
    color: #0b0805;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.ppkg-card__headline {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}
.ppkg-card__headline span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-gold-light);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.ppkg-card__headline h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.25;
}

.ppkg-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.1rem;
}
.ppkg-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.85rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ppkg-card__price {
    display: flex;
    align-items: flex-start;
    gap: 0.15rem;
    line-height: 1;
}
.ppkg-card__currency {
    margin-top: 0.34rem;
    color: var(--color-gold);
    font-size: 0.92rem;
    font-weight: 700;
}
.ppkg-card__amount {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 900;
    line-height: 0.9;
}
.ppkg-card--featured .ppkg-card__amount { color: var(--color-gold-light); }
.ppkg-card__vat {
    max-width: 132px;
    color: var(--color-text-muted);
    font-size: 0.66rem;
    line-height: 1.35;
    text-align: right;
}

.ppkg-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin: 1rem 0;
}
.ppkg-card__metrics div {
    min-width: 0;
    padding: 0.65rem 0.5rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 7px;
}
.ppkg-card__metrics dt {
    margin-bottom: 0.22rem;
    color: var(--color-text-muted);
    font-size: 0.62rem;
    line-height: 1.2;
}
.ppkg-card__metrics dd {
    margin: 0;
    color: var(--color-text);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.ppkg-card__features {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.ppkg-card__features li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ppkg-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

.ppkg-card__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}
.ppkg-card__btn,
.ppkg-card__link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.2;
}
.ppkg-card__btn {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: var(--color-gold);
    color: #0b0805;
    font-size: 0.8rem;
}
.ppkg-card__btn:hover { background: var(--color-gold-light); }
.ppkg-card__link {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    white-space: nowrap;
}
.ppkg-card__link:hover { color: var(--color-gold-light); }

@media (max-width: 1100px) {
    .ppkg-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .ppkg-showcase { grid-template-columns: 1fr; }
    .ppkg-card__media {
        aspect-ratio: 16 / 11;
        min-height: 230px;
    }
    .ppkg-card__price-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .ppkg-card__vat {
        max-width: none;
        text-align: left;
    }
    .ppkg-card__actions { grid-template-columns: 1fr; }
}

/* Add-on row */
.paddon-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.paddr-card {
    padding: 1.25rem 1.35rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}
.paddr-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
}
.paddr-card__note {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
}
.paddr-card__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold-light);
    margin: 0 0 0.2rem;
}
.paddr-card__vat {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Option cards */
.popt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.popt-card {
    padding: 1.35rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.22s;
}
.popt-card:hover { border-color: rgba(201, 169, 98, 0.3); }
.popt-card__title {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--color-text);
    line-height: 1.35;
}
.popt-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.popt-card__price span {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-gold-light);
}
.popt-card__price small {
    font-size: 0.68rem;
    color: var(--color-text-muted);
}
.popt-card__details {
    list-style: none;
    padding: 0; margin: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 0.65rem;
}
.popt-card__details li {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    padding: 0.22rem 0 0.22rem 0.85rem;
    position: relative;
}
.popt-card__details li::before {
    content: '–';
    position: absolute; left: 0;
    color: var(--color-gold);
}

/* Retouch grid */
.pretouch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}
.pretouch-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.pretouch-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
}
.pretouch-card__label {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}
.pretouch-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-gold-light);
}
.pretouch-card__list {
    list-style: none;
    padding: 0; margin: 0;
    counter-reset: none;
}
.pretouch-card__list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pretouch-card__num {
    flex-shrink: 0;
    width: 18px; height: 18px;
    background: rgba(201, 169, 98, 0.15);
    color: var(--color-gold);
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Rental */
.prental-wrap { display: flex; flex-direction: column; gap: 2rem; }
.prental-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.prental-block__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-gold-light);
}
.prental-block__title--sub { margin-top: 1.5rem; }

/* Pre-wedding */
.ppw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.ppw-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ppw-card__head {
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(40, 24, 8, 0.8), rgba(28, 16, 8, 0.5));
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}
.ppw-card__type {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}
.ppw-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
    color: var(--color-text);
}
.ppw-card__persons {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}
.ppw-card__section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.ppw-card__section-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 0.65rem;
}
.ppw-card__list {
    list-style: none; padding: 0; margin: 0;
}
.ppw-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.ppw-card__list li:last-child { border-bottom: none; }
.ppw-card__list li strong { color: var(--color-text); font-size: 0.88rem; }
.ppw-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--color-bg-elevated);
}
.ppw-card__total span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}
.ppw-card__total small { font-size: 0.68rem; }
.ppw-card__total-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-gold-light);
}
.ppw-card__cta {
    margin: 1rem 1.5rem 1.5rem;
    display: block;
    text-align: center;
}

/* LINE Rewards */
.preward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.preward-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    gap: 0.75rem;
    transition: border-color 0.22s, transform 0.22s;
}
.preward-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-3px);
}
.preward-card__icon {
    width: 60px; height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gold);
}
.preward-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}
.preward-card__desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
}
.preward-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border: 1px dashed rgba(201, 169, 98, 0.22);
    border-radius: var(--radius-lg);
    text-align: center;
}
.preward-line p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* CTA Banner */
.pcta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(30, 12, 8, 0.6), rgba(20, 14, 8, 0.4));
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}
.pcta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pcta__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 0.4rem;
}
.pcta__lead {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}
.pcta__btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Split header layout */
.psec__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}
.psec__split--reverse { direction: rtl; }
.psec__split--reverse > * { direction: ltr; }
.psec__split-media {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.psec__split-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Image collage */
.psec__collage {
    position: relative;
    height: 280px;
}
.psec__collage-img {
    position: absolute;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.psec__collage-img--main {
    width: 65%; height: 100%;
    left: 0; top: 0;
    z-index: 1;
}
.psec__collage-img--sm1 {
    width: 38%; height: 55%;
    right: 0; top: 0;
    z-index: 2;
}
.psec__collage-img--sm2 {
    width: 38%; height: 42%;
    right: 0; bottom: 0;
    z-index: 2;
}

/* Studio image banner */
.psec__img-banner {
    position: relative;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.psec__img-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.psec__img-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
}
.psec__title--light { color: #fff; }
.psec__lead--light { color: rgba(255,255,255,0.75); }

/* Gallery strip (between sections) */
.pgallery-strip {
    display: flex;
    gap: 0;
    height: 120px;
    overflow: hidden;
}
.pgallery-strip__item {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.pgallery-strip__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 6s ease;
}
.pgallery-strip__item:hover img { transform: scale(1.08); }

/* Costume image row */
.prental-imgrow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.prental-imgrow__item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.prental-imgrow__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.45s ease;
}
.prental-imgrow__item:hover img { transform: scale(1.06); }

/* Pre-wedding photo strip */
.ppw-photostrip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.ppw-photostrip__item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.ppw-photostrip__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.45s ease;
}
.ppw-photostrip__item:hover img { transform: scale(1.06); }

/* LINE reward wrap */
.preward-wrap { display: flex; flex-direction: column; gap: 1.75rem; }
.preward-line {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-lg);
}
.preward-line__qr {
    width: 120px; height: 120px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: #fff;
    padding: 6px;
}
.preward-line__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}
.preward-line__id {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    margin: 0 0 0.4rem;
}
.preward-line__note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    line-height: 1.55;
}

/* CTA with video bg */
.pcta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
}
.pcta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pcta__bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.pcta__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,8,6,0.82), rgba(20,10,6,0.65));
}
.pcta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pcta__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 0.4rem;
}
.pcta__lead {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
.pcta__btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Pricing detail surfaces */
.paddr-card,
.popt-card,
.pretouch-card,
.prental-block,
.ppw-card,
.preward-card,
.preward-line {
    border-radius: 8px;
}

.paddon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.paddr-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.1rem;
    min-height: 118px;
    padding: 1.15rem 1.25rem;
    text-align: left;
    background:
        linear-gradient(135deg, rgba(201, 169, 98, 0.11), transparent 38%),
        rgba(18, 16, 13, 0.96);
    border-color: rgba(201, 169, 98, 0.18);
}
.paddr-card__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-gold);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.paddr-card__name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.paddr-card__note {
    margin: 0;
    line-height: 1.45;
}
.paddr-card__price-wrap { text-align: right; }
.paddr-card__price {
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
    line-height: 1;
}

.popt-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}
.popt-card {
    position: relative;
    display: grid;
    grid-template-rows: 34px minmax(84px, auto) 72px 1fr;
    row-gap: 0.85rem;
    min-height: 310px;
    padding: 1rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(25, 22, 19, 0.98), rgba(11, 10, 9, 0.98)),
        var(--color-bg-card);
    border-color: rgba(201, 169, 98, 0.14);
}
.popt-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 140px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.12), transparent 68%);
    pointer-events: none;
}
.popt-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.36);
}
.popt-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-height: 34px;
    margin-bottom: 0;
}
.popt-card__num {
    color: rgba(255, 255, 255, 0.34);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}
.popt-card__type {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(201, 169, 98, 0.24);
    border-radius: 999px;
    color: var(--color-gold-light);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.popt-card__title {
    min-height: 84px;
    font-size: 0.92rem;
    line-height: 1.35;
    margin: 0;
}
.popt-card__price {
    display: block;
    align-self: start;
    margin: 0;
}
.popt-card__price span {
    display: block;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    line-height: 1;
}
.popt-card__price small {
    display: block;
    margin-top: 0.25rem;
    line-height: 1.35;
}
.popt-card__details {
    position: relative;
    z-index: 1;
    min-height: 0;
    align-self: start;
}
.popt-card__details li {
    line-height: 1.45;
}

.pretouch-grid {
    gap: 1rem;
}
.pretouch-card {
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.98), rgba(12, 11, 10, 0.98));
    border-color: rgba(201, 169, 98, 0.16);
}
.pretouch-card__head {
    padding: 1.2rem 1.35rem;
    background:
        linear-gradient(135deg, rgba(201, 169, 98, 0.14), rgba(255, 255, 255, 0.025));
    border-bottom-color: rgba(201, 169, 98, 0.14);
}
.pretouch-card__label {
    font-size: 1.02rem;
}
.pretouch-card__price {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(201, 169, 98, 0.12);
    font-size: 0.85rem;
}
.pretouch-card__list {
    padding: 0.55rem 0;
}
.pretouch-card__list li {
    padding: 0.72rem 1.25rem;
    line-height: 1.45;
}
.pretouch-card__num {
    width: 24px;
    height: 24px;
    color: #0b0805;
    background: var(--color-gold);
}

.prental-wrap {
    gap: 1.25rem;
}
.prental-block {
    padding: 1rem;
    background: rgba(15, 13, 11, 0.92);
    border: 1px solid rgba(201, 169, 98, 0.16);
}
.prental-block__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    font-size: 1rem;
}
.prental-block__title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 5px rgba(201, 169, 98, 0.1);
}
.pricing-table-wrap {
    border-color: rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    background: rgba(8, 7, 6, 0.68);
}
.pricing-table {
    border-collapse: separate;
    border-spacing: 0;
}
.pricing-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(201, 169, 98, 0.12);
    color: var(--color-gold-light);
    border-bottom-color: rgba(201, 169, 98, 0.18);
}
.pricing-table td {
    border-bottom-color: rgba(255, 255, 255, 0.06);
    line-height: 1.45;
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover td { background: rgba(201, 169, 98, 0.055); }
.pricing-table .price {
    color: var(--color-gold-light);
    font-size: 1.05rem;
}

.ppw-grid {
    gap: 1rem;
    align-items: stretch;
}
.ppw-card {
    height: 100%;
    border-color: rgba(201, 169, 98, 0.22);
    background: linear-gradient(180deg, rgba(20, 17, 14, 0.98), rgba(11, 10, 9, 0.98));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
}
.ppw-card__head {
    position: relative;
    flex: 0 0 auto;
    height: clamp(250px, 24vw, 320px);
    padding: 0;
    overflow: hidden;
    background: #14110d;
}
.ppw-card__head img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}
.ppw-card__head-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 10%, rgba(8,7,6,0.88) 100%);
}
.ppw-card__head-copy {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
}
.ppw-card__name {
    color: #fff;
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
}
.ppw-card__persons {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}
.ppw-card__section {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 1.1rem 1.25rem;
    border-bottom-color: rgba(255, 255, 255, 0.07);
}
.ppw-card__list li {
    gap: 1rem;
    padding: 0.46rem 0;
    line-height: 1.4;
}
.ppw-card__list li strong {
    color: var(--color-gold-light);
    white-space: nowrap;
}
.ppw-card__total {
    min-height: 86px;
    margin-top: auto;
    background: rgba(201, 169, 98, 0.09);
    border-top: 1px solid rgba(201, 169, 98, 0.14);
}
.ppw-card__cta {
    min-height: 46px;
    border-radius: 999px;
}

.preward-grid {
    gap: 1rem;
}
.preward-card {
    position: relative;
    align-items: flex-start;
    min-height: 190px;
    padding: 1.25rem;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(23, 20, 17, 0.98), rgba(11, 10, 9, 0.98));
    border-color: rgba(201, 169, 98, 0.16);
}
.preward-card__step {
    position: absolute;
    right: 1.1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.16);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.preward-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: rgba(201, 169, 98, 0.12);
}
.preward-card__title {
    font-size: 1.08rem;
}
.preward-card__desc {
    line-height: 1.55;
}
.preward-line {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.25rem;
    text-align: left;
    border-style: solid;
    border-color: rgba(201, 169, 98, 0.2);
    background:
        linear-gradient(135deg, rgba(6, 199, 85, 0.1), transparent 38%),
        rgba(13, 12, 10, 0.96);
}
.preward-line__text {
    min-width: 0;
}
.preward-line__qr {
    width: 118px;
    height: 118px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ppkg-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .popt-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .prental-cols { grid-template-columns: 1fr; }
    .prental-imgrow { grid-template-columns: repeat(5, 1fr); }
    .ppw-photostrip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .psec { padding: 2.5rem 0; }
    .psec__split { grid-template-columns: 1fr; }
    .psec__split--reverse { direction: ltr; }
    .psec__split-media { display: none; }
    .psec__collage { display: none; }
    .psec__img-banner { height: 160px; }
    .ppkg-showcase { grid-template-columns: 1fr; gap: 1rem; }
    .paddon-row,
    .popt-grid { grid-template-columns: 1fr; }
    .paddr-card {
        grid-template-columns: auto 1fr;
    }
    .paddr-card__price-wrap {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .pretouch-grid { grid-template-columns: 1fr; }
    .ppw-grid { grid-template-columns: 1fr; }
    .preward-grid { grid-template-columns: 1fr; }
    .preward-line { flex-direction: column; text-align: center; }
    .pcta__inner { flex-direction: column; text-align: center; }
    .pcta__btns { justify-content: center; }
    .pnav__inner {
        display: flex;
        overflow-x: auto;
    }
    .pnav__link {
        flex: 0 0 auto;
        min-width: 132px;
        min-height: 68px;
        padding: 0.65rem 0.85rem;
    }
    .prental-imgrow { grid-template-columns: repeat(3, 1fr); }
    .ppw-photostrip { grid-template-columns: repeat(3, 1fr); }
    .pgallery-strip { height: 80px; }
}

.pricing-promo-banner {
    margin: 1.5rem 0;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 98, 0.25);
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.15), rgba(201, 169, 98, 0.08));
}

.pricing-promo-banner h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.pricing-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-note-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.2rem;
    color: var(--color-text-muted);
}

.pricing-note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Standard tier cards */
.pricing-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.pricing-tier-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-tier-card__media {
    margin: -1.5rem -1.5rem 1rem;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pricing-tier-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-tier-card--featured {
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: 0 8px 32px rgba(185, 28, 28, 0.15);
}

.pricing-tier-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.65rem;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
}

.pricing-tier-card__name-en {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.pricing-tier-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.pricing-tier-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.pricing-tier-card__features li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.15rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.pricing-tier-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.pricing-tier-card__price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.pricing-tier-card__price-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1.1;
}

.pricing-tier-card__price-vat {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* Add-on cards */
.pricing-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.pricing-addon-card {
    padding: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-addon-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.pricing-addon-card__note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.pricing-addon-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 0.15rem;
}

.pricing-addon-card__vat {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Option cards */
.pricing-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.pricing-option-card {
    padding: 1.35rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.pricing-option-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.pricing-option-card__price span {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold-light);
}

.pricing-option-card__price small {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.pricing-option-card__details {
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 0;
    flex: 1;
}

.pricing-option-card__details li {
    position: relative;
    padding: 0.25rem 0 0.25rem 0.9rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.pricing-option-card__details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Retouch cards */
.pricing-retouch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.pricing-retouch-card {
    padding: 1.35rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.pricing-retouch-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-retouch-card__head h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

.pricing-retouch-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-light);
    white-space: nowrap;
}

.pricing-retouch-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-retouch-card__list li {
    display: flex;
    gap: 0.65rem;
    padding: 0.4rem 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.pricing-retouch-card__list li:last-child { border-bottom: none; }

.pricing-retouch-card__num {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 28, 28, 0.85);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
}

/* Rental panels */
.pricing-rental-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: start;
}

.pricing-rental-panel {
    padding: 1.35rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.pricing-rental-panel__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-rental-panel__title--sub {
    margin-top: 1.75rem;
}

/* Prewedding cards */
.pricing-prewedding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.pricing-prewedding-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-prewedding-card__head {
    padding: 1.25rem 1.35rem;
    background: rgba(185, 28, 28, 0.12);
    border-bottom: 1px solid var(--color-border);
}

.pricing-prewedding-card__head h3 {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.pricing-prewedding-card__head p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
}

.pricing-prewedding-card__section {
    padding: 1rem 1.35rem;
    flex: 1;
}

.pricing-prewedding-card__section h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}

.pricing-prewedding-card__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-prewedding-card__section li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.pricing-prewedding-card__section li strong {
    color: var(--color-primary-light);
    white-space: nowrap;
}

.pricing-prewedding-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.35rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.pricing-prewedding-card__total span {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.pricing-prewedding-card__total strong {
    font-size: 1.35rem;
    color: var(--color-gold-light);
}

@media (max-width: 1024px) {
    .pricing-tier-grid,
    .pricing-rental-grid,
    .pricing-prewedding-grid,
    .pricing-retouch-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pricing-addon-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tier-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
body.page-faq #main {
    background:
        radial-gradient(circle at 14% 8%, rgba(201, 169, 98, 0.08), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(185, 28, 28, 0.1), transparent 30%),
        #0b0a09;
}

.faq-showcase {
    padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
    background: transparent;
}

.faq-showcase__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
}

.faq-showcase__intro {
    position: sticky;
    top: calc(var(--header-total) + 1rem);
}

.faq-showcase__eyebrow {
    display: inline-flex;
    margin-bottom: 0.65rem;
    color: var(--color-gold);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.faq-showcase__intro h2 {
    max-width: 430px;
    margin: 0 0 0.7rem;
    color: var(--color-text);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 650;
    line-height: 1.28;
}

.faq-showcase__intro p {
    max-width: 440px;
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

.faq-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.faq-showcase__chips span {
    padding: 0.35rem 0.7rem;
    color: var(--color-gold-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: var(--radius-full);
    background: rgba(201, 169, 98, 0.07);
}

.faq-showcase__media {
    margin: 0;
    padding: 0.55rem;
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.faq-showcase__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
}

.faq-panel {
    padding: clamp(0.8rem, 1.5vw, 1.05rem);
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(22, 19, 16, 0.96), rgba(11, 10, 9, 0.98));
}

.faq-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.15rem 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.faq-panel__head strong {
    color: var(--color-gold-light);
    font-size: 0.72rem;
}

.faq-list { margin-top: 1.25rem; }

.faq-panel .faq-list {
    margin-top: 0;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.65rem;
    overflow: hidden;
    background: var(--color-bg-card);
    transition: all var(--transition);
}

.faq-panel .faq-item {
    margin-bottom: 0.55rem;
    border-color: rgba(201, 169, 98, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.faq-panel .faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.open {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-sm);
}

.faq-panel .faq-item.open {
    border-color: rgba(201, 169, 98, 0.34);
    background: rgba(201, 169, 98, 0.06);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.35rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
    transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-gold); }

.faq-panel .faq-item__question {
    justify-content: flex-start;
    gap: 0.9rem;
    padding: 1rem 1rem;
}

.faq-item__num {
    width: 36px;
    flex: 0 0 36px;
    color: rgba(201, 169, 98, 0.72);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
}

.faq-item__copy {
    min-width: 0;
    display: grid;
    gap: 0.25rem;
}

.faq-item__tag {
    color: var(--color-gold);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-item__title {
    color: var(--color-text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.faq-item__icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq-panel .faq-item__icon {
    margin-left: auto;
}

.faq-item.open .faq-item__icon {
    background: var(--color-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
    font-family: var(--font-body);
    padding: 0 1.35rem 1.1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.faq-panel .faq-item__answer-inner {
    padding: 0 1rem 1rem 4.85rem;
    font-size: 0.84rem;
    line-height: 1.75;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(201, 169, 98, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.faq-cta span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-gold);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-cta h3 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 650;
}

body.page-faq .page-hero {
    padding-bottom: 1.4rem;
    background: transparent;
}

body.page-faq .page-hero__lead {
    max-width: 620px;
    margin: 0.65rem auto 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 960px) {
    .faq-showcase__grid {
        grid-template-columns: 1fr;
    }
    .faq-showcase__intro {
        position: static;
    }
    .faq-showcase__media img {
        aspect-ratio: 16 / 8;
    }
}

@media (max-width: 640px) {
    .faq-showcase {
        padding-top: 1.6rem;
    }
    .faq-panel .faq-item__question {
        gap: 0.7rem;
        padding: 0.9rem;
    }
    .faq-item__num {
        width: 30px;
        flex-basis: 30px;
        font-size: 0.95rem;
    }
    .faq-panel .faq-item__answer-inner {
        padding: 0 0.9rem 0.95rem 3.55rem;
    }
    .faq-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ─── News / Information — Zeeboon List Style ─── */
.news-section { padding-top: 0; }

/* Category filter tabs */
.news-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}
.news-cat-btn {
    padding: 0.42rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.news-cat-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.news-cat-btn.active {
    background: var(--color-gold);
    color: #0a0a0a;
    border-color: var(--color-gold);
    font-weight: 700;
}

/* Article list */
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each row — separated by a hairline */
.news-item {
    border-bottom: 1px solid var(--color-border);
}
.news-item:first-child {
    border-top: 1px solid var(--color-border);
}

.news-item__link {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.6rem 0.25rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}
.news-item__link:hover { background: rgba(255,255,255,0.03); }

/* Thumbnail */
.news-item__thumb {
    flex: 0 0 200px;
    width: 200px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}
.news-item__thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 0.45s ease;
}
.news-item__link:hover .news-item__thumb img { transform: scale(1.04); }
.news-item__thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
}

/* Text content */
.news-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    padding-top: 0.1rem;
}

.news-item__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
}

/* Category badge */
.news-item__cat {
    display: inline-block;
    padding: 0.18rem 0.7rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.news-item__cat--blue  { background: rgba(59,130,246,0.18); color: #60a5fa; }
.news-item__cat--red   { background: rgba(220,38,38,0.2);   color: #f87171; }
.news-item__cat--green { background: rgba(34,197,94,0.18);  color: #4ade80; }
.news-item__cat--gold  { background: rgba(212,175,55,0.18); color: var(--color-gold); }

.news-item__date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.news-item__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-text);
    margin: 0;
}
.news-item__link:hover .news-item__title { color: var(--color-gold-light, #e8c97a); }

.news-item__excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item__readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    width: fit-content;
    transition: color 0.2s ease;
}
.news-item__readmore::after { content: '→'; font-size: 0.85em; }
.news-item__link:hover .news-item__readmore { color: var(--color-gold); }

/* Responsive */
@media (max-width: 640px) {
    .news-item__link { flex-direction: column; gap: 1rem; padding: 1.25rem 0; }
    .news-item__thumb { flex: none; width: 100%; aspect-ratio: 16 / 9; }
    .news-item__title { font-size: 0.95rem; }
}

/* Blog post */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.blog-cat-tag {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    transition: all var(--transition);
    cursor: pointer;
}
.blog-cat-tag:hover,
.blog-cat-tag.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.blog-post { max-width: 800px; margin: 0 auto; }

.blog-post__header { margin-bottom: 2rem; }

.blog-post__title {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
}

.blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.view-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: var(--color-gold-dim);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gold);
}

.blog-post__featured {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 16/9;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
}

.blog-post__content h2 {
    font-size: 1.4rem;
    margin: 1.75rem 0 0.85rem;
    color: var(--color-text);
}

.blog-post__content p {
    margin-bottom: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.blog-post__actions {
    display: flex;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    transition: all var(--transition);
}
.share-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    padding: 0;
    font: inherit;
    color: inherit;
    width: 100%;
    text-align: left;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-strong);
}

.video-card__thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(185, 28, 28, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    transition: all var(--transition);
    border: 2px solid rgba(201, 169, 98, 0.4);
}
.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-card__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(transparent, rgba(8, 6, 6, 0.92));
    color: #fff;
    font-size: 0.82rem;
}

.video-card--portrait {
    aspect-ratio: 9/16;
}

.video-grid--portrait {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.video-modal[hidden] { display: none; }

body.video-modal-open { overflow: hidden; }

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
}

.video-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.video-modal__title {
    font-size: 1rem;
    margin: 0 2rem 0.75rem 0.25rem;
    color: var(--color-text);
}

.video-modal__player video {
    width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    background: #000;
}

/* ─── Album Portrait Cards ─── */
.album-portrait-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.album-portrait-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 2/3;
    border: 1px solid var(--color-border);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    cursor: pointer;
}

.album-portrait-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
    border-color: rgba(201, 169, 98, 0.4);
}

.album-portrait-card__img {
    position: absolute;
    inset: 0;
}

.album-portrait-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.album-portrait-card:hover .album-portrait-card__img img { transform: scale(1.08); }

.album-portrait-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(5, 3, 3, 0.94) 0%, rgba(5, 3, 3, 0.4) 50%, transparent 100%);
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.album-portrait-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.album-portrait-card__count {
    font-size: 0.68rem;
    color: var(--color-gold);
    letter-spacing: 0.04em;
}

/* Legacy album-card kept for any old references */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.album-card { display: none; }

/* ─── Masonry Gallery ─── */
.masonry-gallery {
    columns: 3;
    column-gap: 0.75rem;
}

.masonry-gallery__item {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.masonry-gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.masonry-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s ease;
    /* Reserve ~portrait space before image loads → prevents layout shift */
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: var(--color-surface, #111);
}

.masonry-gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 860px) { .masonry-gallery { columns: 2; } }
@media (max-width: 480px) { .masonry-gallery { columns: 2; } .album-portrait-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Theme Pill Cards (japan list) ─── */
.themes-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.theme-pill-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--color-border);
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.theme-pill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 98, 0.4);
}

.theme-pill-card__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.theme-pill-card:hover .theme-pill-card__img { transform: scale(1.07); }

.theme-pill-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 3, 3, 0.9) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.9rem 0.85rem;
    gap: 0.15rem;
}

.theme-pill-card__num {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.theme-pill-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.theme-detail-hero {
    margin: 1.25rem 0 1.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 16/10;
}

.theme-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.contact-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    text-align: center;
}

.contact-card__icon {
    width: 44px; height: 44px;
    margin: 0 auto 0.85rem;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-card h4 { font-size: 0.85rem; margin-bottom: 0.45rem; color: var(--color-text); }
.contact-card p { font-size: 0.9rem; color: var(--color-text-muted); }

.map-placeholder {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
    border: 1px dashed var(--color-border-strong);
}

/* Steps */
.steps-list { margin: 1.25rem 0; }

.step-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.1rem;
    padding: 1.1rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.step-item__num {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-item__content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}
.step-item__content p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* Theme detail */
.theme-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.theme-detail-header__num {
    width: 52px; height: 52px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
}

.theme-detail-header h1 { font-size: 1.85rem; }

/* theme-mini-card — legacy alias pointing to pill card */
.theme-mini-card { display: none; }

/* Footer */
.site-footer {
    position: relative;
    flex-shrink: 0;
    color: var(--color-text-muted);
    padding: 4rem 0 0;
    overflow: hidden;
    background-color: #0a0606;
    background-image: url('../images/footer-bg.png');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 420px;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
    z-index: 1;
}

.site-footer__desc {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    line-height: 1.65;
}

.site-footer__social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.site-footer__social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    background: rgba(8, 4, 4, 0.4);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.site-footer__social a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.site-footer__social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-dim);
}

.site-footer__newsletter {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
}

.site-footer__newsletter input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    background: rgba(8, 4, 4, 0.55);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.82rem;
    backdrop-filter: blur(4px);
}
.site-footer__newsletter input::placeholder { color: var(--color-text-muted); }
.site-footer__newsletter input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.site-footer__col h4 {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    font-weight: 600;
}

.site-footer__col ul li { margin-bottom: 0.45rem; }
.site-footer__col ul li a {
    font-size: 0.82rem;
    transition: color var(--transition);
}
.site-footer__col ul li a:hover { color: var(--color-gold-light); }

.site-footer__contact li {
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}
.site-footer__contact strong { color: var(--color-text); }

.site-footer__cta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.site-footer__bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.page-anchor {
    display: block;
    height: 0;
    scroll-margin-top: calc(var(--header-total, 120px) + 1rem);
}

@keyframes pageHeroPanelInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Per-page hero text position overrides */
body.page-pricing .page-hero--video .page-hero__inner,
body.page-reviews .page-hero--video .page-hero__inner,
body.page-portfolio .page-hero--video .page-hero__inner {
    padding-bottom: clamp(13rem, 28vw, 18rem);
}
body.page-reviews .page-hero--video .page-hero__lead {
    max-width: none;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .site-header-wrap,
    body.page-home .hero,
    .fade-in {
        transition: none !important;
    }
    .hero__video { display: none; }
    .page-hero__video,
    .page-hero--video .page-hero__pattern,
    .page-hero--video .page-hero__panel,
    .page-hero--video .page-hero__eyebrow,
    .page-hero--video .page-hero__title,
    .page-hero--video .page-hero__lead,
    .page-hero--video .page-hero__eyebrow::after {
        animation: none !important;
    }
    .page-hero--video .page-hero__eyebrow::after { width: 52px; }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --navtop-brand-h: calc(clamp(34px, 4vw, 44px) + 1.1rem);
        --navtop-nav-h: 50px;
        --header-height: calc(var(--navtop-brand-h) + var(--navtop-nav-h));
    }

    .site-nav { display: none; }
    .nav-toggle { display: flex; }
    .nbar__cta { display: none; }
    .nbrand__tagline { display: none; }

    .nbar__inner {
        justify-content: space-between;
        padding: 0 1.1rem;
    }

    .site-nav.open {
        display: block;
        position: fixed;
        top: var(--header-total);
        left: 0; right: 0;
        background: rgba(8,6,6,0.96);
        border: 1px solid rgba(201,169,98,0.2);
        border-top: none;
        padding: 1rem;
        box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        backdrop-filter: blur(16px);
        border-radius: 0 0 14px 14px;
    }
    .site-nav.open .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
    }
    .site-nav.open .site-nav__link {
        flex-direction: row;
        gap: 0.65rem;
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }
    .site-nav.open .site-nav__link::before { display: none; }
    .site-nav.open .site-nav__link span { font-size: 1rem; }

    .site-nav__item--has-dropdown > .site-nav__dropdown {
        position: static;
        min-width: 0;
        margin: 0.15rem 0 0.35rem;
        padding: 0.35rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(201,169,98,0.16);
        border-radius: 10px;
        box-shadow: none;
        opacity: 1; visibility: visible;
        transform: none;
        display: none;
    }
    .site-nav__item--has-dropdown > .site-nav__dropdown::before { display: none; }
    .site-nav__item--has-dropdown.open > .site-nav__dropdown { display: block; }
    .site-nav__dropdown-link {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        white-space: normal;
        border-radius: 8px;
    }

    .features-strip__grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }

    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .page-with-sidebar__inner { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    body.page-home .hero__inner {
        padding-top: clamp(1.35rem, 4vh, 2rem);
        padding-bottom: 1.35rem;
    }

    .hero__spacer {
        display: none;
    }

    .hero__panel {
        max-width: 580px;
        justify-self: center;
    }

    .hero__cta-wrap {
        max-width: 510px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body.page-home .hero {
        min-height: auto;
    }

    body.page-home .hero__bg {
        background-size: cover;
        background-position: 22% 22%;
    }

    .hero__inner {
        padding-bottom: 2.5rem;
    }

    body.page-home .hero__inner {
        padding-top: 1.35rem;
        padding-bottom: 1.35rem;
        align-content: center;
    }

    .hero__panel {
        max-width: none;
    }

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

@media (max-width: 640px) {
    :root {
        --navtop-brand-h: 58px;
        --navtop-nav-h: 48px;
        --header-height: 106px;
    }

    body { padding-bottom: 72px; }

    .nbrand__inner { padding: 0 0.9rem; }
    .nbrand__logo { height: 34px; }
    .nbrand__social { display: none; }
    .nbrand__sep { display: none; }

    .mobile-cta-bar { display: flex; }
    .features-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr; }
    .hero__cta-row { grid-template-columns: 1fr; }
    .hero__btn { width: 100%; }
    .page-content { padding: 1.35rem; }
    section { padding: 2.75rem 0; }

    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-gallery__row--bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .section-header--row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   THEME DETAIL PAGE (theme.php)
   ═══════════════════════════════════════════════ */

/* Hero — grid stack: media / overlay / content share same cell */
.tzb-hero {
    display: grid;
    grid-template-areas: "stack";
    min-height: clamp(480px, 62vh, 580px);
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}
.tzb-hero__media,
.tzb-hero__overlay,
.tzb-hero__content {
    grid-area: stack;
}
.tzb-hero__media {
    z-index: 0;
    background-color: #0a0806;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}
.tzb-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(8, 6, 4, 0.55) 0%, rgba(8, 6, 4, 0.22) 55%, rgba(8, 6, 4, 0.12) 100%),
        linear-gradient(to top, rgba(8, 6, 4, 0.78) 0%, rgba(8, 6, 4, 0.38) 50%, rgba(8, 6, 4, 0.15) 100%);
    pointer-events: none;
}
.tzb-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: calc(var(--header-total) + 0.75rem) 0 2rem;
}
.tzb-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}
.tzb-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 6, 4, 0.42);
    backdrop-filter: blur(8px);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tzb-hero__back svg {
    flex-shrink: 0;
    opacity: 0.7;
}
.tzb-hero__back:hover {
    color: var(--color-gold);
    border-color: rgba(201, 169, 98, 0.45);
    background: rgba(8, 6, 4, 0.62);
}
.tzb-hero__meta {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.38rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 6, 4, 0.28);
}
.tzb-hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.tzb-hero__titleblock {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: min(560px, 100%);
    padding-left: 0.85rem;
    border-left: 2px solid var(--color-gold);
}
.tzb-hero__code {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
}
.tzb-hero__title {
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin: 0;
}
.tzb-hero__title-th {
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}
.tzb-hero__actions {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.tzb-hero__btn {
    padding: 0.62rem 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.tzb-hero__btn--ghost {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(8, 6, 4, 0.25);
    backdrop-filter: blur(6px);
}
.tzb-hero__btn--ghost:hover {
    color: var(--color-gold);
    border-color: rgba(201, 169, 98, 0.55);
    background: rgba(201, 169, 98, 0.08);
}

@media (max-width: 768px) {
    .tzb-hero {
        min-height: clamp(420px, 65vh, 520px);
    }
    .tzb-hero__media {
        background-position: center 15%;
    }
    .tzb-hero__content {
        padding: calc(var(--header-total) + 0.5rem) 0 1.5rem;
        gap: 1rem;
    }
    .tzb-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .tzb-hero__titleblock {
        padding-left: 0.7rem;
    }
    .tzb-hero__actions {
        width: 100%;
    }
    .tzb-hero__btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
    .tzb-hero__meta {
        display: none;
    }
}

/* Gallery */
.tzb-gallery { padding: 3rem 0; }
.tzb-gallery__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border); padding-bottom: 0.75rem;
}
.tzb-gallery__title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.tzb-gallery__count { font-size: 0.7rem; color: var(--color-text-muted); }

.tzb-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}
.tzb-gallery__item {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden; border-radius: 8px;
    cursor: zoom-in; background: var(--color-bg-elevated);
}
.tzb-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s ease;
}
.tzb-gallery__item:hover img { transform: scale(1.05); }
.tzb-gallery__zoom {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35);
    color: #fff; opacity: 0;
    transition: opacity 0.25s;
}
.tzb-gallery__item:hover .tzb-gallery__zoom { opacity: 1; }

/* Lightbox */
.tzb-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s;
}
.tzb-lightbox.is-open { opacity: 1; pointer-events: all; }
.tzb-lightbox__img-wrap { max-width: 90vw; max-height: 90vh; }
.tzb-lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.tzb-lightbox__close {
    position: absolute; top: 1rem; right: 1.25rem;
    background: none; border: none; color: #fff;
    font-size: 1.75rem; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: opacity 0.2s;
}
.tzb-lightbox__close:hover { opacity: 1; }
.tzb-lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 2.5rem; width: 52px; height: 52px;
    border-radius: 50%; cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.tzb-lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.tzb-lightbox__nav--prev { left: 1.25rem; }
.tzb-lightbox__nav--next { right: 1.25rem; }
.tzb-lightbox__counter {
    position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
}

/* CTA strip */
.tzb-cta { background: var(--color-bg-card); border-top: 1px solid var(--color-border); padding: 2.5rem 0; }
.tzb-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.tzb-cta__title { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.3rem; }
.tzb-cta__lead { font-size: 0.8rem; color: var(--color-text-muted); }
.tzb-cta__btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   THEME CATALOG (themes/index)
   ═══════════════════════════════════════════════ */

.tcatalog-intro {
    padding: 2rem 0 0;
    text-align: center;
}

.tcatalog-intro__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

/* ── Section ── */
.tcatalog-section {
    padding: 3rem 0 1rem;
}

body.page-themes-index .tcatalog-section:last-of-type {
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.tcatalog-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.tcatalog-section__head-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tcatalog-section__flag {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    display: block;
}

.tcatalog-section__eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.tcatalog-section__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    margin: 0;
}

.tcatalog-section__count {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

/* ── Grid ── */
.tcatalog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* ── Card ── */
.tcatalog-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-bg-card);
    aspect-ratio: 3/4;
    group: true;
}

.tcatalog-card__img-wrap {
    position: absolute;
    inset: 0;
}

/* Shimmer sits BEHIND the image as a placeholder */
.tcatalog-card__img-wrap {
    background: linear-gradient(
        90deg,
        var(--color-bg-elevated) 25%,
        rgba(255,255,255,0.06) 50%,
        var(--color-bg-elevated) 75%
    );
    background-size: 200% 100%;
    animation: imgShimmer 1.6s infinite;
}

/* Once image loads, it covers the shimmer — no JS needed */
.tcatalog-card__img-wrap.img-done {
    animation: none;
    background: none;
}

@keyframes imgShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.tcatalog-card__img,
.tcatalog-card__no-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.55s ease;
    /* always visible — JS adds fade-in as enhancement only */
    opacity: 1;
}

.tcatalog-card:hover .tcatalog-card__img {
    transform: scale(1.06);
}

/* Gradient overlay */
.tcatalog-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,6,4,0.08) 0%,
        rgba(8,6,4,0.0)  35%,
        rgba(8,6,4,0.72) 100%
    );
    transition: background 0.3s ease;
}

.tcatalog-card:hover .tcatalog-card__img-overlay {
    background: linear-gradient(
        to bottom,
        rgba(8,6,4,0.1) 0%,
        rgba(8,6,4,0.0) 30%,
        rgba(8,6,4,0.85) 100%
    );
}

/* Code badge — top left */
.tcatalog-card__code {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 2;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    padding: 0.22rem 0.55rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    line-height: 1;
}

/* Info — bottom */
.tcatalog-card__info {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 2;
    padding: 0.85rem 0.8rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.tcatalog-card__name {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.tcatalog-card__name-th {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.6);
    line-height: 1;
}

.tcatalog-card__cta {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
    margin-top: 0.35rem;
    line-height: 1;
}

.tcatalog-card:hover .tcatalog-card__cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .tcatalog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .tcatalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .tcatalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
}

/* ═══════════════════════════════════════════════
   REVIEWS PAGE
   ═══════════════════════════════════════════════ */

.rev-sec {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}
.rev-sec--dark { background: rgba(255,255,255,0.015); }

.rev-sec__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.rev-sec__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.45rem;
}
.rev-sec__title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.4rem;
}
.rev-sec__lead {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Review cards */
.rev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.rev-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color 0.22s, transform 0.22s;
}
.rev-card:hover {
    border-color: rgba(201,169,98,0.3);
    transform: translateY(-2px);
}
.rev-card__stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}
.rev-card__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.rev-card__footer {
    border-top: 1px solid var(--color-border);
    padding-top: 0.75rem;
}
.rev-card__author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}
.rev-card__theme {
    font-size: 0.72rem;
    color: var(--color-gold);
    margin-top: 0.1rem;
}

/* Reel / portrait video grid */
.reel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
.reel-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.reel-card__media {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-card);
}
.reel-card__thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.45s ease;
    display: block;
}
.reel-card:hover .reel-card__thumb { transform: scale(1.05); }
.reel-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.reel-card:hover .reel-card__overlay { opacity: 1; }
.reel-card__play {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}
.reel-card__label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    padding: 0 0.2rem;
}

/* Landscape video grid */
.vidgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.vid-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.vid-card__media {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-card);
}
.vid-card__thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}
.vid-card:hover .vid-card__thumb { transform: scale(1.05); }
.vid-card__play {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s;
}
.vid-card:hover .vid-card__play { opacity: 1; }
.vid-card__play svg {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 14px;
    width: 52px; height: 52px;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.45);
}
.vid-card__label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    padding: 0 0.2rem;
}

/* Reviews CTA */
.rev-cta {
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-border);
}
.rev-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.rev-cta__title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    margin: 0 0 0.25rem;
}
.rev-cta__lead {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
}
.rev-cta__btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .reel-grid { grid-template-columns: repeat(4, 1fr); }
    .vidgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .rev-sec { padding: 2.5rem 0; }
    .reel-grid { grid-template-columns: repeat(2, 1fr); }
    .vidgrid { grid-template-columns: 1fr; }
    .rev-cta__inner { flex-direction: column; text-align: center; }
    .rev-cta__btns { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   CONTACT US SECTION
   ═══════════════════════════════════════════════ */
.contact-section {
    position: relative;
    overflow: hidden;
    background: #0a0806;
    height: 360px;
}

/* Full-bleed video background */
.contact-section__bg-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

/* Dark overlay so text is legible */
.contact-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(8, 6, 4, 0.82) 0%,
        rgba(8, 6, 4, 0.72) 50%,
        rgba(8, 6, 4, 0.78) 100%
    );
}

/* Content: vertical flex — heading top, channels bottom */
.contact-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
    height: 100%;
    box-sizing: border-box;
}

/* ── Heading block ── */
.contact-section__head {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-section__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.contact-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.contact-section__title em {
    font-style: italic;
    color: var(--color-gold-light);
}

.contact-section__lead {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    max-width: 520px;
}

/* ── Bottom row: pills + CTA ── */
.contact-section__bottom {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ── Contact pills (horizontal) ── */
.contact-section__channels {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    flex: 1;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

a.contact-pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.contact-pill--line  svg { color: #06c755; }
.contact-pill--phone svg { color: var(--color-gold-light); }
.contact-pill--jp    svg { color: rgba(255,255,255,0.45); }

.contact-pill__info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.contact-pill__label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    line-height: 1;
}

.contact-pill__value {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* ── Actions: CTA + hours ── */
.contact-section__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}

.contact-section__hours {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.32);
    white-space: nowrap;
}

.contact-section__hours svg { color: var(--color-gold); opacity: 0.6; }

/* ── CTA ── */
.contact-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #b8882a 0%, #d4a843 60%, #c9a962 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: filter 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(180,130,30,0.35);
    overflow: hidden;
    position: relative;
}

.contact-section__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.2) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.contact-section__cta:hover { filter: brightness(1.1); transform: translateY(-2px); }
.contact-section__cta:hover::after { transform: translateX(100%); }

/* ── Responsive ── */
@media (max-width: 700px) {
    .contact-section { height: auto; }
    .contact-section__inner { padding: 2rem 0; gap: 1.25rem; }
    .contact-section__bottom { flex-direction: column; align-items: flex-start; }
    .contact-section__actions { align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   STICKY CONTACT BAR
   ═══════════════════════════════════════════════ */
.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}

.sticky-contact.is-hidden {
    transform: translateY(100%);
}

/* Each channel gets its own vivid color */
.sticky-contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    flex: 1;
    text-decoration: none;
    color: #fff;
    min-height: 60px;
    position: relative;
    overflow: hidden;
    transition: filter 0.2s ease;
}

.sticky-contact__item:hover { filter: brightness(1.12); }

/* Phone — black */
.sticky-contact__item--phone {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* LINE — brand green */
.sticky-contact__item--line {
    background: linear-gradient(135deg, #00b900 0%, #00d84b 100%);
}

/* Book — gold */
.sticky-contact__item--book {
    background: linear-gradient(135deg, #b8882a 0%, #d4a843 50%, #c9a962 100%);
}

/* Shimmer sweep on hover */
.sticky-contact__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}
.sticky-contact__item:hover::after { transform: translateX(100%); }

.sticky-contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.sticky-contact__label {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.sticky-contact__sub {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    line-height: 1;
}

.sticky-contact__main {
    font-size: 0.84rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.sticky-contact__divider {
    width: 1px;
    background: rgba(0,0,0,0.18);
    align-self: stretch;
}

.sticky-contact__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
    border: none;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    padding: 0;
}

.sticky-contact__close:hover {
    background: rgba(0,0,0,0.45);
    color: #fff;
}

/* push page content up */
body { padding-bottom: 60px; }

@media (max-width: 640px) {
    .sticky-contact__item { padding: 0 0.9rem; gap: 0.5rem; min-height: 54px; }
    .sticky-contact__icon { width: 32px; height: 32px; }
    .sticky-contact__sub  { display: none; }
    .sticky-contact__main { font-size: 0.75rem; }
    body { padding-bottom: 54px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOME — Portrait Reels in Reviews section
   ═══════════════════════════════════════════════════════════════════ */
.home-reels-head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.home-reels-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin: 0.3rem 0 0.4rem;
    color: #fff;
}
.home-reels-lead {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 2rem;
}
.home-reel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .home-reel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .home-reel-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO — Clients Sections
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Shared section wrapper ─── */
.clients-sec {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.clients-sec--light {
    background: #0e0e0e;
}
.clients-sec--dark {
    background: #0e0e0e;
}
.clients-sec__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.clients-sec__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold, #c9a962);
    margin-bottom: 0.7rem;
}
.clients-sec__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
}
.clients-sec__lead {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Logo Grid ─── */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 1.25rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 110px;
}
.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    border-color: rgba(201,169,98,0.5);
}
.logo-card img {
    max-height: 90px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.logo-card__name {
    font-size: 0.72rem;
    color: rgba(0,0,0,0.45);
    text-align: center;
    line-height: 1.3;
}

/* ─── Celebrity Grid — Portrait Card Style ─── */
.celeb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}
.celeb-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    cursor: default;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.celeb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.65);
}
.celeb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid rgba(201,169,98,0.18);
    pointer-events: none;
    transition: border-color 0.35s ease;
    z-index: 2;
}
.celeb-card:hover::before {
    border-color: rgba(201,169,98,0.55);
}
.celeb-card__frame {
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}
.celeb-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}
.celeb-card:hover .celeb-card__frame img {
    transform: scale(1.06);
}
.celeb-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,98,0.06);
    color: rgba(201,169,98,0.35);
}
.celeb-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 0.85rem 0.85rem;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin: 0;
    text-align: center;
    z-index: 1;
    letter-spacing: 0.01em;
}
.celeb-card__en { display: none; }

@media (max-width: 700px) {
    .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .celeb-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .celeb-card__name { font-size: 0.72rem; padding: 2rem 0.6rem 0.6rem; }
}
@media (max-width: 420px) {
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .celeb-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}
