:root {
    --steel-950: #101415;
    --steel-900: #171d1e;
    --steel-800: #20292a;
    --steel-700: #2e3a3b;
    --sand-50: #fff8ea;
    --sand-100: #efe3c8;
    --sand-200: #d8c79e;
    --brass: #d6a84b;
    --brass-strong: #f0c866;
    --oxide: #a14328;
    --oxide-dark: #702816;
    --palm: #39a36d;
    --palm-deep: #176344;
    --aqua: #5bc2b8;
    --surface: rgba(255, 248, 234, 0.92);
    --surface-dark: rgba(16, 20, 21, 0.86);
    --line: rgba(214, 168, 75, 0.28);
    --line-dark: rgba(255, 248, 234, 0.14);
    --text: #f8f0dd;
    --text-dark: #172122;
    --muted: #b9c0b2;
    --muted-dark: #53615a;
    --shadow: 0 28px 80px rgba(4, 8, 8, 0.36);
    --shadow-soft: 0 18px 45px rgba(30, 20, 5, 0.16);
    --radius: 18px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(57, 163, 109, 0.24), transparent 27rem),
        radial-gradient(circle at 94% 22%, rgba(214, 168, 75, 0.16), transparent 23rem),
        radial-gradient(circle at 78% 90%, rgba(91, 194, 184, 0.14), transparent 22rem),
        linear-gradient(135deg, #101415 0%, #17201f 34%, #2e2019 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 248, 234, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 248, 234, 0.045) 1px, transparent 1px),
        repeating-linear-gradient(135deg, transparent 0 28px, rgba(214, 168, 75, 0.06) 28px 30px);
    background-size: 64px 64px, 64px 64px, 100% 100%;
    mask-image: linear-gradient(180deg, black, transparent 92%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 76%, rgba(57, 163, 109, 0.18), transparent 18rem),
        radial-gradient(circle at 90% 70%, rgba(161, 67, 40, 0.18), transparent 20rem);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
select {
    cursor: pointer;
}

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

:focus-visible {
    outline: 3px solid var(--aqua);
    outline-offset: 4px;
}

.site-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding-bottom: 3rem;
}

.topbar {
    position: sticky;
    top: 1rem;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    margin-top: 1rem;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.12), rgba(255, 248, 234, 0.035)),
        rgba(15, 19, 19, 0.84);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.brand {
    order: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-logo {
    width: 3.1rem;
    height: 3.1rem;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(240, 200, 102, 0.65);
    box-shadow: inset 0 0 0 2px rgba(16, 20, 21, 0.5), 0 0 24px rgba(57, 163, 109, 0.2);
}

.brand-text {
    display: grid;
    gap: 0.12rem;
    line-height: 1;
}

.brand-text strong {
    font-family: "Teko", sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.brand-text small {
    color: var(--brass-strong);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav {
    order: 4;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    width: min(18rem, calc(100vw - 2rem));
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    color: rgba(255, 248, 234, 0.78);
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.12), rgba(255, 248, 234, 0.035)),
        rgba(15, 19, 19, 0.96);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.topbar.menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav a {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 0.85rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 800;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.35rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    background: linear-gradient(90deg, var(--palm), var(--brass));
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.08);
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    order: 3;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    gap: 0.22rem;
    padding: 0.7rem;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 50%;
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-toggle span {
    width: 1.25rem;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
    border-color: rgba(91, 194, 184, 0.8);
    background: rgba(57, 163, 109, 0.2);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 1.35rem;
    border: 1px solid rgba(240, 200, 102, 0.62);
    border-radius: 999px;
    color: #151915;
    font-weight: 900;
    background:
        linear-gradient(135deg, var(--brass-strong), var(--brass) 48%, #b8742d);
    box-shadow: 0 14px 32px rgba(214, 168, 75, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--sand-50);
    box-shadow: 0 18px 40px rgba(214, 168, 75, 0.32), 0 0 0 4px rgba(57, 163, 109, 0.13);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.button-small {
    order: 2;
    margin-left: auto;
    min-height: 46px;
    padding: 0 1.1rem;
}

.button-ghost {
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.08);
    border-color: rgba(255, 248, 234, 0.24);
    box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(57, 163, 109, 0.22);
    border-color: rgba(91, 194, 184, 0.8);
}

.section {
    padding: 4rem 0;
    scroll-margin-top: 8rem;
}

.hero {
    min-height: calc(100dvh - 6rem);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
    padding: 4.5rem 0 3.6rem;
    scroll-margin-top: 8rem;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    color: var(--brass-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--palm), var(--brass));
}

.hero h1,
.section-heading h2,
.company-copy h2,
.product-copy h2,
.coverage-card h2,
.contact-copy h2,
.why-copy h2,
.thank-you-card h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0.01em;
}

.hero h1 {
    max-width: 12ch;
    color: var(--sand-50);
    font-size: clamp(3.5rem, 7.2vw, 7.2rem);
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero-text,
.section-heading,
.company-copy p,
.product-copy p,
.coverage-card p,
.contact-copy p,
.service-card p,
.why-card p,
.process-timeline p,
.metric-card span,
.trust-strip span,
.footer span,
.blog-card p,
.gallery-copy p,
.coverage-note {
    color: var(--muted);
    line-height: 1.7;
}

.hero-text {
    max-width: 62ch;
    margin: 1.25rem 0 0;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li,
.coverage-list span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 248, 234, 0.14);
    border-radius: 999px;
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel {
    position: relative;
    min-height: min(70vh, 42rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.1), rgba(255, 248, 234, 0.02)),
        linear-gradient(160deg, rgba(23, 99, 68, 0.5), rgba(16, 20, 21, 0.86) 48%, rgba(112, 40, 22, 0.74));
    box-shadow: var(--shadow);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 248, 234, 0.06) 42px 43px),
        linear-gradient(180deg, transparent 0 65%, rgba(16, 20, 21, 0.84));
    pointer-events: none;
}

.hero-logo-feature {
    position: absolute;
    inset: 1rem 1rem 9rem 1rem;
    overflow: hidden;
    border-radius: 1.45rem;
    border: 1px solid rgba(255, 248, 234, 0.18);
    background: var(--steel-900);
}

.hero-logo-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.hero-logo-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 20, 21, 0.08), rgba(16, 20, 21, 0.65)),
        radial-gradient(circle at 80% 12%, rgba(214, 168, 75, 0.28), transparent 35%);
}

.palm-frond {
    position: absolute;
    z-index: 2;
    width: 16rem;
    height: 16rem;
    opacity: 0.82;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 22%, rgba(57, 163, 109, 0.7) 0 8%, transparent 9%),
        radial-gradient(ellipse at 36% 30%, rgba(57, 163, 109, 0.58) 0 9%, transparent 10%),
        radial-gradient(ellipse at 52% 42%, rgba(91, 194, 184, 0.5) 0 8%, transparent 9%),
        radial-gradient(ellipse at 66% 56%, rgba(57, 163, 109, 0.44) 0 8%, transparent 9%),
        linear-gradient(135deg, transparent 43%, rgba(91, 194, 184, 0.56) 44%, rgba(91, 194, 184, 0.56) 46%, transparent 47%);
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
}

.palm-frond-a {
    top: -2rem;
    left: -2rem;
    transform: rotate(-10deg);
}

.palm-frond-b {
    right: -2rem;
    bottom: 5rem;
    transform: rotate(185deg);
}

.motor-badge {
    position: absolute;
    z-index: 4;
    right: 1.4rem;
    bottom: 6.7rem;
    width: min(68%, 22rem);
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(240, 200, 102, 0.58);
    border-radius: 1.2rem;
    color: var(--sand-50);
    background:
        radial-gradient(circle at 82% 20%, rgba(91, 194, 184, 0.35), transparent 32%),
        linear-gradient(135deg, rgba(16, 20, 21, 0.92), rgba(46, 58, 59, 0.86));
    box-shadow: var(--shadow);
}

.motor-badge span,
.panel-track span {
    display: block;
    color: var(--brass-strong);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.motor-badge strong {
    display: block;
    margin-top: 0.25rem;
    font-family: "Teko", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 0.9;
}

.panel-track {
    position: absolute;
    z-index: 3;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-height: 7rem;
    padding: 1rem 6.4rem 1rem 1rem;
    border: 1px solid rgba(255, 248, 234, 0.14);
    border-radius: 1.25rem;
    background:
        repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.16) 0 10px, transparent 10px 24px),
        linear-gradient(180deg, rgba(255, 248, 234, 0.1), rgba(16, 20, 21, 0.68));
}

.panel-track::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 52%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 248, 234, 0.25), var(--brass), rgba(255, 248, 234, 0.25));
}

.panel-motor {
    position: absolute;
    right: 1rem;
    bottom: 0.8rem;
    width: 5.1rem;
    height: 5.8rem;
    border-radius: 1rem 1rem 0.5rem 0.5rem;
    background:
        radial-gradient(circle at 50% 48%, var(--brass) 0 12%, transparent 13%),
        linear-gradient(180deg, #4b5653, #1a2020 62%, var(--oxide));
    border: 1px solid rgba(240, 200, 102, 0.44);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.trust-strip,
.metrics,
.coverage,
.contact {
    display: grid;
    gap: 1rem;
}

.trust-strip {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 2rem;
}

.trust-strip > div,
.metric-card,
.coverage-card,
.contact-copy,
.contact-form,
.why-card,
.service-card,
.process-timeline article,
.gallery-card,
.company-copy,
.company-points,
.product-copy,
.product-visual,
.blog-card,
.thank-you-card {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.09), rgba(255, 248, 234, 0.03)),
        var(--surface-dark);
    box-shadow: var(--shadow);
}

.trust-strip > div::before,
.metric-card::before,
.service-card::before,
.why-card::before,
.process-timeline article::before,
.contact-form::before,
.gallery-card::before,
.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 200, 102, 0.12), transparent 42%);
    pointer-events: none;
}

.trust-strip strong,
.metric-card strong,
.service-index,
.process-timeline span,
.contact-method strong,
.coverage-list span,
.gallery-chip {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.trust-strip strong,
.metric-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brass-strong);
}

.section-heading {
    max-width: 53rem;
    margin-bottom: 1.8rem;
}

.section-heading h2,
.company-copy h2,
.product-copy h2,
.coverage-card h2,
.contact-copy h2,
.why-copy h2 {
    color: var(--sand-50);
    font-size: clamp(2.6rem, 6vw, 4.9rem);
}

.section-heading p {
    max-width: 66ch;
}

.company-layout,
.product-layout,
.why-layout,
.coverage,
.contact {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
    align-items: stretch;
}

.company-points,
.product-features,
.why-grid,
.contact-methods {
    display: grid;
    gap: 0.9rem;
}

.company-points article,
.product-features article {
    padding: 1rem;
    border: 1px solid rgba(255, 248, 234, 0.12);
    border-radius: 1rem;
    background: rgba(255, 248, 234, 0.06);
}

.company-points strong,
.product-features strong,
.why-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--sand-50);
    font-size: 1rem;
    font-weight: 900;
}

.services-grid,
.gallery-grid,
.process-timeline,
.blog-grid {
    display: grid;
    gap: 1rem;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1rem;
}

.company-why,
.company-process {
    margin-top: 1rem;
}

.service-card {
    min-height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.gallery-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 200, 102, 0.55);
}

.service-index {
    color: rgba(240, 200, 102, 0.72);
}

.service-card h3,
.gallery-copy h3,
.process-timeline h3,
.blog-card h3 {
    margin: 1rem 0 0.6rem;
    color: var(--sand-50);
    font-size: 1.32rem;
}

.accent-a { border-top: 4px solid var(--oxide); }
.accent-b { border-top: 4px solid var(--brass); }
.accent-c { border-top: 4px solid var(--palm); }
.accent-d { border-top: 4px solid var(--aqua); }

.product-visual {
    min-height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 1rem;
    background:
        radial-gradient(circle at 50% 38%, rgba(214, 168, 75, 0.2), transparent 24%),
        radial-gradient(circle at 20% 70%, rgba(57, 163, 109, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(16, 20, 21, 0.88), rgba(46, 58, 59, 0.88));
}

.slidemaster-product-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 1.2rem;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.38);
}

.product-motor {
    width: min(70%, 18rem);
    aspect-ratio: 1 / 1.1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 200, 102, 0.48);
    border-radius: 1.8rem 1.8rem 0.8rem 0.8rem;
    color: var(--sand-50);
    background:
        radial-gradient(circle at 50% 55%, var(--brass) 0 12%, transparent 13%),
        linear-gradient(180deg, #5f6a65, #202929 58%, var(--oxide));
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.42);
}

.product-motor span {
    font-family: "Teko", sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    letter-spacing: 0.04em;
}

.product-track {
    position: relative;
    z-index: 2;
    width: 86%;
    min-height: 3.6rem;
    display: grid;
    place-items: center;
    margin: -1.5rem auto 0;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 999px;
    color: var(--sand-50);
    background:
        repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.18), rgba(255, 248, 234, 0.18) 10px, transparent 10px, transparent 22px),
        rgba(16, 20, 21, 0.8);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

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

.gallery-card {
    display: grid;
    gap: 1rem;
}

.gallery-card-wide {
    grid-column: span 2;
}

.gallery-card-tall {
    grid-row: span 2;
}

.gallery-visual {
    position: relative;
    min-height: 15rem;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 248, 234, 0.12);
    background: var(--steel-900);
}

.gallery-card-wide .gallery-visual {
    min-height: 20rem;
}

.gallery-built {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 78% 18%, rgba(214, 168, 75, 0.24), transparent 28%),
        radial-gradient(circle at 18% 78%, rgba(57, 163, 109, 0.22), transparent 26%),
        repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.08) 0 1px, transparent 1px 42px),
        linear-gradient(135deg, var(--steel-800), var(--steel-950));
}

.gallery-built::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(16, 20, 21, 0.42)),
        repeating-linear-gradient(135deg, transparent 0 22px, rgba(214, 168, 75, 0.08) 22px 24px);
}

.gallery-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.04);
}

.gallery-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 20, 21, 0.08), rgba(16, 20, 21, 0.62)),
        radial-gradient(circle at 82% 16%, rgba(214, 168, 75, 0.18), transparent 28%);
    pointer-events: none;
}

.gallery-built-mark {
    position: relative;
    width: min(58%, 17rem);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid rgba(214, 168, 75, 0.34);
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 248, 234, 0.95) 0 12%, transparent 13%),
        radial-gradient(circle at 50% 50%, rgba(161, 67, 40, 0.9) 0 38%, transparent 39%),
        repeating-conic-gradient(from 0deg, rgba(255, 248, 234, 0.6) 0 6deg, rgba(16, 20, 21, 0.45) 6deg 12deg);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.gallery-gate-card .gallery-built-mark::before {
    content: "";
    position: absolute;
    left: -24%;
    right: -24%;
    bottom: 16%;
    height: 34%;
    border: 3px solid rgba(255, 248, 234, 0.58);
    background: repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.44) 0 8px, transparent 8px 22px);
}

.gallery-motor-card .gallery-built-mark::before {
    content: "SlideMaster";
    position: absolute;
    inset: 31% -18% auto;
    padding: 0.75rem;
    border: 1px solid rgba(240, 200, 102, 0.55);
    border-radius: 0.9rem;
    color: var(--sand-50);
    font-family: "Teko", sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 0.9;
    text-align: center;
    background: rgba(16, 20, 21, 0.84);
}

.gallery-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(240, 200, 102, 0.5);
    border-radius: 999px;
    color: var(--sand-50);
    background: rgba(16, 20, 21, 0.74);
    backdrop-filter: blur(10px);
}

.gallery-video iframe,
.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-tiktok-card .gallery-video {
    min-height: 34rem;
    display: grid;
    place-items: center;
    padding: 1rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(91, 194, 184, 0.18), transparent 25%),
        repeating-linear-gradient(135deg, rgba(214, 168, 75, 0.12) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, var(--steel-900), var(--steel-950));
}

.gallery-tiktok-card .tiktok-embed {
    z-index: 1;
    width: 100%;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0;
}

.gallery-tiktok-card .tiktok-embed a {
    color: var(--brass-strong);
    font-weight: 900;
}

.video-placeholder {
    display: grid;
    place-items: center;
    padding: 2rem;
    text-align: center;
    color: var(--sand-50);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background:
        radial-gradient(circle at 50% 42%, rgba(91, 194, 184, 0.28), transparent 25%),
        repeating-linear-gradient(135deg, rgba(214, 168, 75, 0.18) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, var(--steel-900), var(--palm-deep));
}

.gallery-service {
    background:
        radial-gradient(circle at 72% 20%, rgba(57, 163, 109, 0.36), transparent 24%),
        linear-gradient(135deg, var(--steel-800), var(--steel-950));
}

.service-preview,
.service-frame,
.service-leaves {
    position: absolute;
    inset: 0;
}

.service-frame {
    inset: 18%;
    border: 3px solid rgba(240, 200, 102, 0.36);
    border-radius: 1rem;
    background:
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 248, 234, 0.16) 28px 32px),
        rgba(255, 248, 234, 0.04);
}

.service-leaves {
    background:
        radial-gradient(ellipse at 72% 18%, rgba(57, 163, 109, 0.58) 0 6%, transparent 7%),
        radial-gradient(ellipse at 80% 31%, rgba(91, 194, 184, 0.45) 0 7%, transparent 8%),
        linear-gradient(155deg, transparent 49%, rgba(91, 194, 184, 0.38) 50%, transparent 52%);
}

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

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

.metric-card {
    min-height: 11rem;
}

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

.process-timeline span {
    color: var(--brass-strong);
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-methods {
    margin-top: 1.4rem;
}

.contact-method {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 248, 234, 0.12);
    border-radius: 999px;
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.06);
}

.contact-method span {
    color: var(--muted);
    text-align: right;
}

.contact-form {
    display: grid;
    gap: 1rem;
    scroll-margin-top: 8rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    color: var(--sand-50);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 0.9rem;
    color: var(--sand-50);
    background: rgba(255, 248, 234, 0.08);
}

.contact-form select option {
    color: #101415;
    background: #ffffff;
}

.contact-form select option:checked {
    color: #101415;
    background: #e8e8e8;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 248, 234, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(91, 194, 184, 0.55);
    border-color: transparent;
}

.form-note,
.footer span {
    color: var(--muted);
}

.form-note:empty {
    display: none;
}

.form-note a {
    color: var(--brass-strong);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.form-error {
    color: #ffd2c5;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.blog-card {
    display: grid;
    gap: 0.8rem;
}

.blog-card span {
    color: var(--brass-strong);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-card a {
    width: fit-content;
    color: var(--brass-strong);
    font-weight: 900;
}

.blog-detail-page {
    min-height: 70vh;
    display: grid;
    align-items: start;
    padding: 4rem 0;
}

.blog-detail {
    max-width: 58rem;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2.4rem);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.09), rgba(255, 248, 234, 0.03)),
        var(--surface-dark);
    box-shadow: var(--shadow);
}

.blog-detail h1 {
    margin: 0.35rem 0 1rem;
    color: var(--sand-50);
    font-family: "Teko", sans-serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 600;
    line-height: 0.95;
}

.blog-detail-meta {
    display: block;
    color: var(--brass-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.6;
    text-transform: uppercase;
}

.blog-detail-excerpt,
.blog-detail-section p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.blog-detail-section {
    padding-top: 1.1rem;
    margin-top: 1.1rem;
    border-top: 1px solid rgba(255, 248, 234, 0.12);
}

.blog-detail-section h2 {
    margin: 0 0 0.55rem;
    color: var(--sand-50);
    font-size: 1.35rem;
}

.blog-detail-back {
    margin-top: 1.4rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0 8rem;
    border-top: 1px solid rgba(255, 248, 234, 0.12);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-brand img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(240, 200, 102, 0.55);
}

.footer p {
    margin: 0;
    color: var(--sand-50);
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.mobile-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: none;
    gap: 0.8rem;
}

.mobile-cta a {
    min-height: 48px;
    flex: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 999px;
    color: var(--sand-50);
    font-weight: 900;
    background: rgba(16, 20, 21, 0.92);
    backdrop-filter: blur(14px);
}

.mobile-cta a {
    color: #151915;
    background: linear-gradient(135deg, var(--brass-strong), var(--brass));
}

.thank-you {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.thank-you-card {
    max-width: 48rem;
    padding: 2rem;
}

.thank-you-card h1 {
    color: var(--sand-50);
    font-size: clamp(3rem, 8vw, 5.4rem);
}

.thank-you-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .hero,
    .company-layout,
    .product-layout,
    .why-layout,
    .coverage,
    .contact {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .gallery-grid,
    .metrics,
    .trust-strip,
    .process-timeline,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card-wide,
    .gallery-card-tall {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 820px) {
    .site-shell {
        width: min(calc(100% - 1.2rem), var(--max-width));
    }

    .topbar {
        align-items: flex-start;
        border-radius: 1.3rem;
    }

    .brand-text small {
        max-width: 17rem;
        line-height: 1.3;
    }

    .topbar > .button-small {
        display: none;
    }

    .nav {
        left: 0.8rem;
        right: 0.8rem;
        width: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 3rem;
    }

    .hero h1 {
        max-width: 13ch;
        font-size: clamp(2.7rem, 10vw, 4.2rem);
    }

    .hero-panel {
        min-height: 34rem;
    }

    .hero-logo-feature {
        inset: 0.8rem 0.8rem 8.2rem;
    }

    .motor-badge {
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .services-grid,
    .gallery-grid,
    .metrics,
    .why-grid,
    .trust-strip,
    .process-timeline,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .company-copy h2,
    .product-copy h2,
    .coverage-card h2,
    .contact-copy h2,
    .why-copy h2 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .contact-method {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 1rem;
    }

    .contact-method span {
        text-align: left;
    }

    .footer {
        flex-direction: column;
        padding-bottom: 5.6rem;
    }

}

@media (max-width: 560px) {
    .mobile-cta {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .brand-logo {
        width: 2.7rem;
        height: 2.7rem;
    }

    .brand-text strong {
        font-size: 1.45rem;
    }

    .brand-text small {
        font-size: 0.58rem;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.85rem, 14vw, 4.2rem);
    }

    .hero-panel {
        min-height: 31rem;
    }

    .panel-track {
        padding-right: 5.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
