:root {
    --orange: #ef5a24;
    --orange-dark: #d14712;
    --orange-soft: rgba(239, 90, 36, 0.08);
    --ink: #1a1a1a;
    --ink-2: #2b2b2b;
    --gray-900: #222;
    --gray-700: #4a4a4a;
    --gray-500: #7a7a7a;
    --gray-300: #cfcfcf;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --radius: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--gray-100);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.site-header .logo img { height: 38px; width: auto; }
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav a:hover { color: var(--ink); }
.nav .cta {
    background: var(--orange);
    color: var(--white);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 600;
}
.nav .cta:hover { background: var(--orange-dark); color: var(--white); }

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    color: var(--white);
    padding: 6rem 0 7rem;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 140%;
    background: var(--orange);
    transform: skewX(-18deg);
    opacity: 0.9;
}
.hero::after {
    content: "";
    position: absolute;
    top: -10%;
    right: 35%;
    width: 10%;
    height: 140%;
    background: var(--gray-300);
    transform: skewX(-18deg);
    opacity: 0.15;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.15s ease, background 0.15s ease;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.hero-visual {
    position: relative;
    z-index: 1;
    justify-self: end;
}
.hero-visual img {
    max-width: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* Sections */
section {
    padding: 5rem 0;
}
section.alt { background: var(--gray-50); }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-head p {
    color: var(--gray-700);
    font-size: 1.1rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-grid p {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}
.about-visual {
    position: relative;
    padding: 2rem;
}
.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--orange) 0%, var(--orange) 40%, transparent 40%),
        linear-gradient(135deg, transparent 60%, var(--ink-2) 60%, var(--ink-2) 100%);
    transform: skewX(-12deg);
    border-radius: var(--radius);
    opacity: 0.08;
}
.about-visual img { position: relative; }

/* Services (3 cards) */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}
.card .icon {
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--gray-700); font-size: 0.98rem; margin: 0; }

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.product {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-thumb {
    background: var(--gray-100);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.product-thumb svg { width: 64px; height: 64px; stroke-width: 1.5; }
.product-body { padding: 1.25rem 1.5rem 1.5rem; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.product-body p { font-size: 0.9rem; color: var(--gray-700); margin: 0; }

/* Coming soon */
.coming-soon {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.coming-soon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: var(--orange);
    transform: skewX(-18deg);
    opacity: 0.12;
}
.coming-soon .container { position: relative; z-index: 1; }
.coming-soon h2 { color: var(--white); }
.coming-soon p { color: rgba(255,255,255,0.8); }
.coming-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.coming-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.coming-item .icon {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.coming-item .icon svg { width: 22px; height: 22px; color: var(--white); }
.coming-item h3 { color: var(--white); margin: 0 0 0.25rem; font-size: 1.05rem; }
.coming-item p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.9rem; }

/* Brochure */
.brochure-section {
    background: var(--gray-50);
}
.brochure-row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 1.5rem;
    scroll-snap-type: x mandatory;
}
.brochure-row img {
    width: 320px;
    flex-shrink: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}

/* Contact / Footer */
.contact {
    background: var(--orange);
    color: var(--white);
    padding: 4rem 0 3rem;
}
.contact h2 { color: var(--white); margin-bottom: 1rem; }
.contact p { color: rgba(255,255,255,0.9); max-width: 560px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.contact-info {
    background: rgba(0,0,0,0.15);
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
}
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0;
    color: var(--white);
    font-size: 1rem;
}
.contact-info li svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-info a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

footer.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}
footer.footer a { color: rgba(255,255,255,0.85); }

/* Responsive */
@media (max-width: 900px) {
    .hero { padding: 4rem 0 5rem; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { justify-self: start; }
    .hero-visual img { max-width: 280px; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cards-3, .products-grid { grid-template-columns: 1fr 1fr; }
    .coming-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav { gap: 1rem; }
    .nav a:not(.cta) { display: none; }
}
@media (max-width: 600px) {
    .cards-3, .products-grid { grid-template-columns: 1fr; }
}
