/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    box-sizing: border-box;
}

/* =============================================
   TOKENS
   ============================================= */
:root {
    --primary:      #080d1c;
    --primary-mid:  #111827;
    --accent:       #f97316;
    --accent-hover: #ea6d0e;
    --accent-light: #fff7ed;
    --bg-alt:       #f9fafb;
    --bg-dark:      #111827;
    --text:         #111827;
    --text-muted:   #4b5563;
    --text-light:   #9ca3af;
    --border:       #e5e7eb;
    --white:        #fff;
    --nav-h:        72px;
}

/* =============================================
   BASE
   ============================================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   ANNOUNCE BAR
   ============================================= */
.announce-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 9px 20px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.announce-bar span {
    color: var(--accent);
    margin: 0 10px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-h);
    position: relative;
}

.logo {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-ghost {
    padding: 9px 22px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent;
    color: var(--white);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 2px;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-accent {
    padding: 9px 22px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--accent);
    border-radius: 2px;
    transition: all 0.2s;
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 300;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 28px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-nav-actions {
    display: flex;
    gap: 10px;
    padding: 16px 28px 22px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: clamp(560px, 84vh, 860px);
    background: var(--primary) url('../images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* diagonal gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(8,13,28,0.96) 0%,
        rgba(8,13,28,0.82) 50%,
        rgba(8,13,28,0.35) 100%
    );
}

/* orange accent line at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-eyebrow-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.06;
    max-width: 780px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-content h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    padding: 15px 36px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.hero-btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.hero-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* =============================================
   SERVICES TICKER STRIP (orange)
   ============================================= */
.services-strip {
    background: var(--accent);
    padding: 0;
}

.services-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: hidden;
}

.strip-item {
    flex: 1;
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.strip-item:last-child {
    border-right: none;
}

.strip-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.strip-item span {
    font-size: 0.64rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--bg-alt);
    padding: 52px 0;
}

.gallery-label {
    max-width: 1280px;
    margin: 0 auto 22px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-label span {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.gallery-divider {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* =============================================
   SECTIONS BASE
   ============================================= */
.section {
    padding: 72px 0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-dark   { background: var(--bg-dark);   color: var(--white); }
.section-darker { background: var(--primary);    color: var(--white); }
.section-gray   { background: var(--bg-alt); }

.section-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.12;
    margin-bottom: 4px;
}

.section-dark h2,
.section-darker h2 { color: var(--white); }

.orange-rule {
    width: 44px;
    height: 4px;
    background: var(--accent);
    margin: 14px 0 32px;
}

.section p {
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 900px;
}

.section p:last-child { margin-bottom: 0; }

.section-dark p,
.section-darker p { color: rgba(255,255,255,0.68); }

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    margin-top: 8px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
}

.intro-stat {
    background: var(--white);
    padding: 30px 24px;
    border-top: 3px solid var(--accent);
}

.intro-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.intro-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* =============================================
   FULL-SERVICE CHECKLIST
   ============================================= */
.service-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 36px;
}

.check-item {
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
}

.check-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* =============================================
   CORPORATE EVENTS (2×2 grid)
   ============================================= */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 36px;
}

.corp-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.corp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.corp-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(249,115,22,0.12);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.corp-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.corp-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   BRAND ACTIVATIONS (dark, 5-item grid)
   ============================================= */
.activation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 36px;
}

.activation-item {
    background: var(--bg-dark);
    padding: 30px 22px;
    border-top: 3px solid var(--accent);
}

.activation-item h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.activation-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   LIVE + HYBRID (side-by-side two columns)
   ============================================= */
.live-hybrid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 0;
}

.lh-block {
    background: var(--white);
    padding: 52px 40px;
}

.lh-block.dark-block {
    background: var(--bg-dark);
}

.lh-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.lh-block h2 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 4px;
}

.dark-block h2 { color: var(--white); }

.lh-rule {
    width: 36px;
    height: 3px;
    background: var(--accent);
    margin: 12px 0 24px;
}

.lh-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 100%;
}

.dark-block p { color: rgba(255,255,255,0.65); }

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dark-block .feature-list li { color: rgba(255,255,255,0.65); }

.feature-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================
   PRIVATE & LUXURY
   ============================================= */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.luxury-item {
    padding: 30px 24px;
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--accent);
}

.luxury-item h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.luxury-item p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   EVENT DESIGN (dark, 3-col)
   ============================================= */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 36px;
}

.design-card {
    background: var(--bg-dark);
    padding: 34px 28px;
}

.design-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(249,115,22,0.18);
    line-height: 1;
    margin-bottom: 14px;
}

.design-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.design-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   INDUSTRIES (5-col)
   ============================================= */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 36px;
}

.industry-card {
    background: var(--white);
    padding: 30px 22px;
}

.industry-card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.industry-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   PROCESS (horizontal numbered steps)
   ============================================= */
.process-wrap {
    position: relative;
    margin-top: 48px;
}

.process-line {
    position: absolute;
    top: 28px;
    left: calc(28px + 12.5%);
    right: calc(28px + 12.5%);
    height: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 0 24px 36px;
    text-align: center;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.62;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   WHY BOOMZINO (gray, 4-col)
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.why-item {
    background: var(--white);
    padding: 32px 26px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.why-item h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   SUSTAINABILITY + LOCATIONS (split)
   ============================================= */
.sustain-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.eco-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.eco-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.eco-list li::before {
    content: '◆';
    color: var(--accent);
    font-size: 0.55rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.pill {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: all 0.2s;
}

.pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* =============================================
   CASE STUDIES (dark)
   ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 36px;
}

.portfolio-card {
    background: var(--bg-dark);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.25s;
}

.portfolio-card:hover {
    border-color: var(--accent);
}

.portfolio-card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portfolio-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.62;
    margin: 0;
    max-width: 100%;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: var(--accent);
    padding: 62px 0;
}

.cta-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.01em;
    max-width: 540px;
}

.cta-band-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.cta-band p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.cta-band-btn {
    display: inline-block;
    padding: 15px 38px;
    background: var(--white);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.cta-band-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
    margin-top: 36px;
}

.faq-item {
    background: var(--white);
    padding: 28px 32px;
    border-left: 4px solid var(--accent);
}

.faq-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.93rem;
    line-height: 1.68;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* =============================================
   CLOSING (darker)
   ============================================= */
.closing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.4);
    padding: 32px 0;
    border-top: 3px solid var(--accent);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.footer-logo span {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .nav-links,
    .nav-actions { display: none; }

    .hamburger { display: flex; }

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

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-checklist {
        grid-template-columns: repeat(2, 1fr);
    }

    .activation-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .live-hybrid-wrap {
        grid-template-columns: 1fr;
    }

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

    .design-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .process-line { display: none; }

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

    .sustain-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .closing-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

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

    .service-checklist {
        grid-template-columns: 1fr;
    }

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

    .design-grid {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .luxury-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section { padding: 52px 0; }

    .services-strip-inner {
        flex-wrap: wrap;
    }

    .strip-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero {
        height: clamp(480px, 78vh, 680px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .activation-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .luxury-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .corp-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
