:root {
    --bg: #080706;
    --surface: #12100d;
    --surface-2: #181511;
    --surface-3: #221d17;
    --surface-4: #2d261f;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f5f1e8;
    --muted: #c9c0b0;
    --soft: #9b907d;
    --accent: #f1b14e;
    --accent-dark: #cc891d;
    --success: #8bc17a;
    --danger: #ef7f7f;
    --container: 1180px;
    --radius: 10px;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    --title-font: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
    --body-font: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: radial-gradient(circle at top, rgba(241, 177, 78, 0.08), transparent 34%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(241, 177, 78, 0.9);
    outline-offset: 3px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 7, 6, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background-color 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease;
}

.page-home .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.page-home.home-header-solid .site-header,
.page-home.menu-open .site-header {
    background: rgba(8, 7, 6, 0.9);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.page-home:not(.home-header-solid):not(.menu-open) .brand img {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.42));
}

.page-home:not(.home-header-solid):not(.menu-open) .nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.page-home:not(.home-header-solid):not(.menu-open) .nav-link:hover,
.page-home:not(.home-header-solid):not(.menu-open) .nav-link:focus-visible,
.page-home:not(.home-header-solid):not(.menu-open) .nav-link.is-active,
.page-home:not(.home-header-solid):not(.menu-open) .nav-item.is-active > .nav-link {
    color: var(--accent);
}

.page-home:not(.home-header-solid):not(.menu-open) .site-nav .nav-phone,
.page-home:not(.home-header-solid):not(.menu-open) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(8, 7, 6, 0.18);
    backdrop-filter: blur(8px);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    flex-shrink: 0;
}

.brand img {
    width: 218px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link,
.nav-submenu a,
.site-nav .nav-phone {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-link {
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-item.is-active > .nav-link {
    color: var(--accent);
}

.nav-item {
    position: relative;
}

.nav-item-group {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 13, 10, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
}

.nav-item-group:hover .nav-submenu,
.nav-item-group:focus-within .nav-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-submenu a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--muted);
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.site-nav .nav-phone {
    margin-left: 6px;
    padding: 10px 16px;
    border: 1px solid rgba(241, 177, 78, 0.45);
    border-radius: 6px;
    color: var(--text);
    font-weight: 700;
}

.site-nav .nav-phone:hover,
.site-nav .nav-phone:focus-visible {
    background: rgba(241, 177, 78, 0.08);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section {
    padding: 92px 0;
}

.section[id] {
    scroll-margin-top: 112px;
}

.section-tight {
    padding: 28px 0 0;
}

.section-label,
.service-kicker,
.project-type {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label {
    margin-bottom: 16px;
}

.section-head {
    max-width: 780px;
    margin-bottom: 34px;
}

.hero-copy h1,
.section-head h2,
.cta-panel h2,
.split-grid h2,
.pricing-panel h2,
.brands-copy h2,
.contact-card h3,
.info-card h3,
.stat-card strong,
.product-body h3,
.category-body h3,
.project-copy h3,
.video-body h3,
.footer-title {
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.9rem, 7vw, 5rem);
}

.hero-copy h1.hero-title-accent {
    max-width: none;
    color: var(--accent);
    font-size: clamp(1.7rem, 3.8vw, 2.35rem);
}

.section-head h2,
.cta-panel h2,
.split-grid h2,
.pricing-panel h2,
.brands-copy h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

.project-copy h3,
.product-body h3,
.category-body h3,
.video-body h3,
.info-card h3,
.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.about-copy h2 {
    margin-bottom: 18px;
}

.hero-text,
.section-intro,
.info-card p,
.split-grid p,
.stat-card p,
.service-body p,
.project-copy p,
.brands-copy p,
.footer-brand p,
.footer-contact p,
.video-body p,
.product-body p,
.category-body p,
.contact-form small,
.notice {
    color: var(--muted);
}

.section-intro {
    max-width: 62ch;
    margin-top: 14px;
}

.hero {
    padding: 44px 0 56px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
    align-items: start;
}

.hero-layout-single {
    grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
    max-width: 720px;
    padding-top: 18px;
}

.hero-text {
    max-width: 60ch;
    margin-top: 18px;
    font-size: 1rem;
    white-space: pre-line;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button-primary {
    background: rgba(241, 177, 78, 0.08);
    border-color: rgba(241, 177, 78, 0.55);
    color: var(--text);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: rgba(241, 177, 78, 0.16);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.05);
}

.hero-link {
    color: var(--muted);
    font-weight: 600;
}

.hero-link:hover,
.hero-link:focus-visible {
    color: var(--text);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.hero-facts div {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
    margin-bottom: 4px;
    color: var(--soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-facts dd {
    color: var(--text);
    font-weight: 600;
}

.hero-figure,
.service-card,
.project-card,
.info-card,
.category-card,
.product-card,
.video-card,
.stat-card,
.contact-card,
.pricing-panel,
.cta-panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-figure {
    overflow: hidden;
}

.hero-figure img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.hero-figure figcaption {
    padding: 16px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.home-carousel-hero {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 50% 15%, rgba(241, 177, 78, 0.14), transparent 28%),
        linear-gradient(180deg, #090806 0%, #0d0b09 42%, #0a0907 100%);
}

.home-carousel-hero::before,
.home-carousel-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-carousel-hero::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.18) 0%, rgba(8, 7, 6, 0.36) 34%, rgba(8, 7, 6, 0.74) 100%),
        radial-gradient(circle at 18% 20%, rgba(241, 177, 78, 0.1), transparent 34%);
}

.home-carousel-hero::after {
    z-index: 1;
    background: linear-gradient(180deg, transparent 65%, rgba(8, 7, 6, 0.92) 100%);
}

.home-carousel-content {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    margin: 0 auto;
    display: grid;
    align-content: center;
    gap: 26px;
    padding-top: 138px;
    padding-bottom: 62px;
}

.home-carousel-stage {
    position: relative;
    width: min(980px, calc(100vw - 32px));
    margin: 0 auto;
    left: 0;
    overflow: visible;
}

.home-carousel-track {
    position: relative;
    overflow: visible;
    min-height: 180px;
    touch-action: pan-y;
    user-select: none;
}

.home-carousel-card {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1.6108 / 1;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: none;
    will-change: transform, width, height, opacity;
}

.home-carousel-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    transition: none;
    user-select: none;
    -webkit-user-drag: none;
}

.home-carousel-card.is-left {
    cursor: pointer;
}

.home-carousel-card.is-center {
    cursor: zoom-in;
}

.home-carousel-card.is-right {
    cursor: pointer;
}

.home-carousel-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.home-carousel-line {
    display: block;
    color: rgba(245, 241, 232, 0.94);
    font-family: var(--title-font);
    font-size: clamp(1.4rem, 2.7vw, 2.35rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.home-carousel-copy .button-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
}

.home-carousel-copy .hero-actions {
    justify-content: center;
    margin-top: 12px;
}

.overview-grid,
.stats-grid,
.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-copy {
    max-width: 760px;
}

.legal-copy h3 {
    margin: 28px 0 12px;
    font-family: var(--title-font);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.legal-copy h3:first-child {
    margin-top: 0;
}

.legal-copy p {
    color: var(--muted);
}

.legal-copy p + p {
    margin-top: 12px;
}

.stat-card,
.info-card {
    padding: 24px;
}

.stat-card span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.split-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.split-grid-large {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.split-grid p + p {
    margin-top: 14px;
}

.media-grid {
    display: grid;
    gap: 16px;
}

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

.video-hero-intro {
    display: grid;
    gap: 18px;
}

.video-hero-media {
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.video-hero-figure {
    width: min(100%, 280px);
    margin: 0;
}

.video-hero-figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-hero-wide-wrap {
    margin-top: 18px;
}

.video-hero-figure-wide {
    width: 100%;
}

.video-hero-figure-wide img {
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

.presentation-hero-figure,
.presentation-hero-figure img {
    pointer-events: none;
    cursor: default;
    user-select: none;
}

.section-head-centered {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.media-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    list-style: none;
}

.feature-list-large {
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    color: #efe4d1;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.compact-list {
    margin-top: 12px;
}

.services,
.projects,
.brands,
.products-section,
.contact-page-section,
.contact-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-media-section {
    padding-top: 40px;
}

.gallery-media-section .section-head {
    margin-bottom: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    grid-column: span 2;
    overflow: hidden;
}

.service-card-featured {
    grid-column: span 4;
}

.service-card-centered .service-body {
    text-align: center;
}

.service-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-body,
.project-copy,
.category-body,
.product-body,
.video-body {
    padding: 22px;
}

.category-body-compact {
    padding-top: 16px;
}

.page-hero-title-split span {
    display: block;
}

.hero-copy.hero-copy-occasion {
    max-width: none;
}

.hero-copy h1.page-hero-title-occasion {
    max-width: none;
    font-size: clamp(2.2rem, 5vw, 5rem);
}

.hero-copy h1.page-hero-title-occasion span {
    white-space: nowrap;
}

.page-hero-occasion {
    padding-bottom: 28px;
}

.section-occasion-categories {
    padding-top: 46px;
}

@media (max-width: 720px) {
    .hero-copy h1.page-hero-title-occasion span {
        white-space: normal;
    }
}

.service-kicker,
.project-type {
    margin-bottom: 10px;
}

.category-grid,
.projects-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.project-card,
.category-card {
    overflow: hidden;
}

.project-card img,
.category-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.location-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.location-card-media img {
    transition: transform 0.28s ease, filter 0.28s ease;
}

.location-card-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.14) 0%, rgba(8, 7, 6, 0.76) 100%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.location-card-overlay-label {
    padding: 10px 18px;
    border: 1px solid rgba(241, 177, 78, 0.5);
    border-radius: 999px;
    background: rgba(8, 7, 6, 0.78);
    color: var(--text);
    font-family: var(--title-font);
    font-size: clamp(1.2rem, 2.1vw, 1.9rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.location-card-media:hover img,
.location-card-media:focus-visible img {
    transform: scale(1.035);
    filter: saturate(0.92) brightness(0.78);
}

.location-card-media:hover .location-card-overlay,
.location-card-media:focus-visible .location-card-overlay {
    opacity: 1;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.page-links-stack {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #efe7d8;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.page-link:hover,
.page-link:focus-visible,
.page-link.is-active {
    color: var(--text);
    border-color: rgba(241, 177, 78, 0.48);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 22px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.page-link.is-active {
    color: #11100d;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, #f0d29a 0%, #e3b66b 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 10px 24px rgba(179, 123, 37, 0.2);
}

.product-card {
    overflow: hidden;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(8, 7, 6, 0.88);
    border: 1px solid rgba(241, 177, 78, 0.35);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
}

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

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--surface);
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.lightbox-trigger-image {
    cursor: zoom-in;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.03);
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(5, 5, 5, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1380px);
    display: grid;
    gap: 16px;
}

.gallery-lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.gallery-lightbox-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.gallery-lightbox-counter {
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gallery-lightbox-caption {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
    background: rgba(241, 177, 78, 0.12);
    border-color: rgba(241, 177, 78, 0.45);
    color: var(--accent);
}

.gallery-lightbox-frame {
    position: relative;
    min-height: min(72vh, 780px);
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 16px;
}

.gallery-lightbox-nav {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
}

.gallery-lightbox-media {
    width: 100%;
    height: min(78vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    cursor: zoom-in;
    transform-origin: center center;
    transition: transform 0.22s ease, cursor 0.22s ease;
}

.gallery-lightbox-image.is-zoomed {
    cursor: zoom-out;
    transform: scale(1.9);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.video-card {
    overflow: hidden;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.brands-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.brands-note {
    margin-top: 18px;
    padding-left: 14px;
    border-left: 2px solid var(--accent);
    color: #eadfcb;
    font-weight: 600;
}

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

.brand-logo {
    min-height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    cursor: default;
}

.brand-logo-image {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.brand-image-das {
    max-height: 68px;
}

.brand-image-shure {
    max-height: 42px;
}

.brand-image-yamaha {
    max-height: 82px;
}

.cta-panel,
.pricing-panel {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pricing-panel p,
.cta-panel p {
    max-width: 62ch;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.contact-map-embed {
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: clamp(240px, 30vw, 320px);
    border: 0;
}

.contact-map-embed-compact {
    margin-top: auto;
    margin-bottom: 0;
}

.contact-map-embed-compact iframe {
    height: 180px;
}

.contact-form,
.contact-card-large {
    padding: 28px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--text);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form small {
    color: #ef9a9a;
}

.form-honeypot {
    display: none;
}

.notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.notice-success {
    border-color: rgba(139, 193, 122, 0.35);
    color: #d8efd1;
}

.notice-error {
    border-color: rgba(239, 127, 127, 0.35);
    color: #ffd0d0;
}

.contact-card {
    display: grid;
    gap: 20px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-card span,
.footer-title {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card a,
.footer-contact a {
    color: var(--text);
    font-size: 1.04rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: var(--surface-2);
}

.social-links img {
    width: 18px;
    height: 18px;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 0.75fr) minmax(220px, 0.85fr);
    gap: 28px;
    padding: 36px 0;
}

.footer-brand {
    grid-column: 1 / span 2;
    display: flex;
    align-items: flex-start;
}

.footer-map-embed {
    width: min(100%, 420px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow);
}

.footer-map-embed iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.footer-map-embed img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.footer-brand > img {
    width: 210px;
    margin-bottom: 16px;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--soft);
    font-size: 0.92rem;
}

.page-admin {
    min-height: 100vh;
}

.admin-shell {
    padding-top: 56px;
}

.admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-title {
    font-family: var(--title-font);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 28px;
    margin-top: 28px;
    align-items: start;
}

.admin-auth-grid {
    align-items: start;
}

.admin-auth-wrap {
    display: flex;
    justify-content: center;
}

.admin-auth-form {
    width: min(100%, 520px);
}

.admin-auth-form .button {
    width: 100%;
}

.admin-panel-copy {
    display: grid;
    gap: 12px;
    width: 100%;
}

.admin-panel-card {
    padding: 28px;
}

.admin-panel-card,
.admin-panel-card.contact-card {
    display: block;
}

.admin-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-panel-head-tight {
    margin-bottom: 18px;
}

.admin-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.admin-summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 96px;
    padding: 12px;
    border: 1px solid rgba(241, 177, 78, 0.18);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(241, 177, 78, 0.16), rgba(241, 177, 78, 0.03));
    color: var(--text);
    font-family: var(--title-font);
    font-size: 2rem;
    line-height: 1;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 460px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.admin-table th {
    color: var(--soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--muted);
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table strong {
    color: var(--text);
    font-weight: 600;
}

.admin-links {
    display: grid;
    gap: 14px;
}

.admin-links a {
    color: var(--text);
    font-weight: 600;
}

.admin-links p {
    margin-top: 6px;
}

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

.admin-inline-form {
    display: flex;
}

.admin-inline-form .button {
    width: auto;
}

.admin-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--soft);
    font-size: 0.92rem;
}

.admin-breadcrumbs a {
    color: var(--text);
}

.admin-card-grid,
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.admin-dashboard-sidebar,
.admin-dashboard-main {
    display: grid;
    gap: 28px;
}

.admin-stats-grid {
    margin-top: 28px;
    align-items: start;
}

.admin-menu-card {
    display: grid;
    gap: 14px;
    min-height: 220px;
    color: inherit;
    text-decoration: none;
}

.admin-simple-panel {
    display: grid;
    gap: 20px;
}

.admin-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.admin-simple-card {
    display: grid;
    gap: 14px;
    min-height: 0;
    color: inherit;
    text-decoration: none;
}

.admin-menu-card.is-muted {
    opacity: 0.92;
}

.admin-menu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.admin-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.admin-subnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-decoration: none;
}

.admin-subnav a.is-active {
    border-color: rgba(241, 177, 78, 0.35);
    background: rgba(241, 177, 78, 0.12);
}

.admin-stat-list {
    display: grid;
    gap: 14px;
}

.admin-stat-list-compact {
    margin-top: 8px;
}

.admin-stat-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-stat-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.admin-stat-list span {
    color: var(--soft);
}

.admin-stat-list strong {
    color: var(--text);
}

.admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-metric-grid-inline {
    margin-bottom: 10px;
}

.admin-metric-card {
    display: grid;
    gap: 8px;
    min-height: 98px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.admin-metric-card span {
    color: var(--soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-metric-card strong {
    color: var(--text);
    font-family: var(--title-font);
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    line-height: 1;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-badge.is-published {
    border-color: rgba(113, 196, 130, 0.35);
    background: rgba(113, 196, 130, 0.12);
    color: #b6efc2;
}

.admin-badge.is-draft {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--soft);
}

.admin-badge.is-neutral {
    border-color: rgba(241, 177, 78, 0.18);
    background: rgba(241, 177, 78, 0.1);
    color: #f2d6a1;
}

.admin-row-meta {
    margin-top: 6px;
    color: var(--soft);
    font-size: 0.84rem;
    word-break: break-word;
}

.admin-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-table-actions form {
    margin: 0;
}

.admin-table-actions .button {
    width: auto;
}

.admin-links-compact {
    gap: 10px;
}

.admin-links-compact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    text-decoration: none;
}

.admin-news-form {
    gap: 18px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-field-hint {
    display: block;
    margin-top: 8px;
    color: var(--soft);
    font-size: 0.85rem;
}

.admin-image-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.admin-image-preview {
    display: block;
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 14px;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.admin-checkbox input {
    width: auto;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-form-actions .button {
    width: auto;
}

@media (max-width: 1120px) {
    .hero-layout,
    .brands-grid,
    .split-grid,
    .split-grid-large,
    .contact-page-grid,
    .admin-grid,
    .admin-dashboard-layout,
    .admin-card-grid,
    .admin-stats-grid,
    .admin-simple-grid,
    .admin-metric-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 0;
    }

    .stats-grid,
    .overview-grid,
    .legal-grid,
    .projects-grid,
    .product-grid,
    .category-grid,
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .brands-copy {
        max-width: 720px;
    }

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

    .admin-topbar,
    .admin-panel-head {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-actions,
    .admin-subnav,
    .admin-table-actions {
        flex-direction: column;
    }

    .admin-subnav a,
    .admin-form-actions .button,
    .admin-table-actions .button {
        width: 100%;
    }

    .admin-table-actions form {
        width: 100%;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 24px;
        left: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        background: rgba(14, 13, 10, 0.98);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .page-home:not(.home-header-solid):not(.menu-open) .site-nav {
        background: rgba(14, 13, 10, 0.94);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .menu-open .site-nav {
        display: flex;
    }

    .nav-item-group {
        display: block;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .nav-submenu {
        position: static;
        min-width: 0;
        margin-top: 4px;
        padding: 6px 0 0 12px;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nav-submenu a {
        padding: 8px 10px;
        text-align: left;
    }

    .site-nav .nav-phone {
        margin-left: 0;
        text-align: center;
    }

    .section {
        padding: 76px 0;
    }

    .hero {
        padding: 28px 0 42px;
    }

    .hero-facts,
    .brands-logos,
    .stats-grid,
    .overview-grid,
    .legal-grid,
    .video-grid,
    .form-grid-2,
    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

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

    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox-frame {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 10px;
    }

    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .cta-panel,
    .pricing-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .home-carousel-content {
        padding-top: 126px;
        padding-bottom: 56px;
    }

    .home-carousel-stage {
        width: min(1080px, calc(100vw - 28px));
        left: 0;
    }

    .home-carousel-card {
        left: calc(50% - 56px);
    }

    .home-carousel-track {
        height: clamp(260px, 38vw, 430px);
    }

    .home-carousel-card.is-left,
    .home-carousel-card.is-right {
        width: clamp(220px, 32vw, 360px);
    }

    .home-carousel-card.is-left {
        transform: translate(calc(-50% - min(26vw, 240px)), -50%);
    }

    .home-carousel-card.is-center {
        width: clamp(360px, 54vw, 560px);
    }

    .home-carousel-card.is-right {
        transform: translate(calc(-50% + min(26vw, 240px)), -50%);
    }

    .home-carousel-line {
        font-size: clamp(1.18rem, 2.3vw, 1.7rem);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 174px;
    }

    .site-nav {
        right: 14px;
        left: 14px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-topbar .hero-actions {
        width: 100%;
    }

    .admin-inline-form {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .home-carousel-content {
        padding-top: 112px;
        padding-bottom: 34px;
    }

    .home-carousel-stage {
        width: calc(100vw - 20px);
        left: 0;
    }

    .home-carousel-card {
        left: calc(50% - 20px);
    }

    .home-carousel-track {
        height: clamp(180px, 56vw, 260px);
    }

    .home-carousel-card.is-left {
        width: clamp(110px, 32vw, 150px);
        transform: translate(calc(-50% - min(30vw, 112px)), -50%);
    }

    .home-carousel-card.is-center {
        width: clamp(220px, 70vw, 300px);
    }

    .home-carousel-card.is-right {
        width: clamp(110px, 32vw, 150px);
        transform: translate(calc(-50% + min(30vw, 112px)), -50%);
    }

    .home-carousel-line {
        white-space: normal;
        font-size: 1.12rem;
        line-height: 1.18;
    }

    .hero-figure figcaption,
    .service-body,
    .project-copy,
    .category-body,
    .product-body,
    .video-body,
    .info-card,
    .stat-card,
    .contact-form,
    .contact-card-large,
    .cta-panel,
    .pricing-panel {
        padding: 18px;
    }

    .services-grid,
    .projects-grid,
    .product-grid,
    .category-grid,
    .gallery-grid,
    .media-grid-2 {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox-topbar {
        gap: 12px;
    }

    .gallery-lightbox-meta {
        gap: 8px;
    }

    .gallery-lightbox-caption {
        font-size: 0.9rem;
    }

    .gallery-lightbox-frame {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-lightbox-media {
        height: min(72vh, 520px);
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 40px;
        height: 40px;
        transform: translateY(-50%);
    }

    .gallery-lightbox-nav.is-prev {
        left: 8px;
    }

    .gallery-lightbox-nav.is-next {
        right: 8px;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }
}
