/* =========================================================
   Chakravyooh Games — Global Styles
   Palette: Midnight Blue + Copper
   ========================================================= */

/* -------------------------
   Brand tokens
   ------------------------- */
:root {
    /* Brand colors */
    --midnight-blue: #0F1B2D;
    --deep-blue: #1B2A41;
    --copper: #8C4A1F;
    --copper-hover: #6E3A19;
    --copper-light: #C07A3E;

    /* Neutrals */
    --bg-main: #FFFFFF;
    --bg-soft: #F5F7FA;
    --bg-tint: #FAF8F6;

    --text-main: #0F172A;
    --text-secondary: #475569;

    --border-light: #E2E8F0;
    --white: #FFFFFF;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);

    --max-width: 1100px;
}

/* -------------------------
   Font setup
   ------------------------- */
@font-face {
    font-family: "Satoshi";
    src: url("/assets/fonts/Satoshi-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Satoshi";
    src: url("/assets/fonts/Satoshi-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Satoshi";
    src: url("/assets/fonts/Satoshi-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

/* -------------------------
   Base / reset
   ------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Satoshi", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-main);
}

img {
    max-width: 100%;
    display: block;
}

main {
    margin: 0;
    padding: 0;
}

section {
    padding: 72px 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------
   Typography
   ------------------------- */
h1,
h2,
h3 {
    margin-top: 0;
    color: var(--text-main);
}

h1 {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    margin-top: 0;
    font-size: 16px;
    color: var(--text-secondary);
}

ul {
    margin-top: 10px;
    padding-left: 18px;
}

li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

a {
    color: var(--midnight-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--copper);
}

/* -------------------------
   Header / navigation
   ------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 27, 45, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--deep-blue);

    border-bottom: 1px solid rgba(184, 115, 51, 0.35);
    box-shadow: 0 1px 0 rgba(184, 115, 51, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
}

.brand {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
}

.menu {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.menu a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-weight: 500;
}

.menu a:hover {
    color: var(--copper);
}

/* -------------------------
   Buttons
   ------------------------- */
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

a.btn,
button.btn,
.quote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-family: "Satoshi", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Primary = copper */
a.btn.primary,
button.btn.primary,
.quote-form button,
.btn-primary {
    background: linear-gradient(145deg,
            var(--copper-light) 0%,
            var(--copper) 40%,
            var(--copper-hover) 100%);
    color: var(--white);
    border: 1px solid var(--copper-hover);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

a.btn.primary:hover,
button.btn.primary:hover,
.quote-form button:hover,
.btn-primary:hover {
    background: linear-gradient(145deg,
            #D39A5C 0%,
            var(--copper) 45%,
            var(--copper-hover) 100%);
    border-color: var(--copper-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Secondary = outline copper */
a.btn.secondary,
button.btn.secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--copper);
    border: 2px solid var(--copper);
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
}

a.btn.secondary:hover,
button.btn.secondary:hover,
.btn-outline:hover {
    background: var(--copper);
    color: var(--white);
}

/* -------------------------
   Home hero
   ------------------------- */
.hero {
    padding: 104px 0 88px;
    background:
        linear-gradient(180deg, rgba(15, 27, 45, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
    color: var(--white);
    text-align: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 48px;
}
/* =========================================================
   Home hero refinement
   ========================================================= */

.hero {
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at 18% 22%, rgba(33, 76, 146, 0.18) 0%, rgba(33, 76, 146, 0) 28%),
        radial-gradient(circle at 82% 18%, rgba(184, 115, 51, 0.12) 0%, rgba(184, 115, 51, 0) 26%),
        linear-gradient(180deg, rgba(15, 27, 45, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
    color: var(--white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 36px;
}

.hero-text {
    max-width: 760px;
}

.hero-title {
    margin: 0 0 18px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-line {
    display: block;
    font-weight: 700;
    font-size: clamp(34px, 3.8vw, 54px);
}

.hero-line-main {
    color: #F6F1EA;
}

.hero-line-accent {
    color: #E7C7A8;
    margin-top: 8px;
    display: block;
    margin-bottom: 22px;
}

.hero-subtext {
    max-width: 720px;
    margin: 14px 0 34px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.hero .cta-row {
    gap: 18px;
}

/* Fancier image container */
.hero-image-wrap {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.40),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(184, 115, 51, 0.18);
    backdrop-filter: blur(4px);
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 18% 20%,
            rgba(154, 91, 42, 0.24),
            transparent 42%),
        radial-gradient(circle at 82% 78%,
            rgba(201, 138, 74, 0.12),
            transparent 36%);
    z-index: -1;
}

.hero-image {
    overflow: hidden;
    border-radius: 30px 30px 30px 80px;
    max-height: 360px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.hero-image-wrap:hover .hero-image img {
    transform: scale(1.02);
}

.hero-image-wrap .hero-image-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.62) !important;
    text-align: center;
}

/* Secondary hero button specifically */
.hero-secondary {
    background: rgba(255, 255, 255, 0.10) !important;
    color: #F6F1EA !important;
    border: 2px solid var(--copper) !important;
    backdrop-filter: blur(6px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-secondary:hover {
    background: var(--copper) !important;
    color: var(--white) !important;
    border-color: var(--copper-hover) !important;
}

/* Slightly more premium primary button in hero */
.hero .btn.primary {
    min-width: 230px;
}

.hero .btn.secondary {
    min-width: 230px;
}

.hero-text {
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    margin-bottom: 0;
    color: inherit;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.hero .cta-row {
    justify-content: center;
}

/* -------------------------
   Generic page hero
   ------------------------- */
.page-hero {
    padding: 92px 0 64px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 17px;
    color: var(--text-secondary);
}

.page-hero .cta-row {
    justify-content: center;
}

.manufacture-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(154, 91, 42, 0.08), transparent 30%),
        linear-gradient(180deg, #F7F9FC 0%, #F5F7FA 100%);
}

.manufacture-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.manufacture-hero-text {
    max-width: 720px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 14px;
}

.manufacture-hero .hero-subtext {
    max-width: 700px;
    margin: 14px 0 30px;
    font-size: 18px;
    color: var(--text-secondary);
}

.manufacture-hero-note-card {
    background: linear-gradient(180deg, #FFFDFC 0%, #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.manufacture-hero-note-card h3 {
    margin-bottom: 12px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.manufacture-hero-note-card ul {
    margin: 0;
    padding-left: 18px;
}

.manufacture-hero-note-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.manufacture-secondary {
    background: rgba(15, 27, 45, 0.03);
}

.submit-hero {
    background:
        radial-gradient(circle at 14% 18%, rgba(154, 91, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #F7F9FC 0%, #F5F7FA 100%);
}

.submit-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.submit-hero-text {
    max-width: 740px;
}

.submit-hero .hero-subtext {
    max-width: 700px;
    margin: 14px 0 30px;
    font-size: 18px;
    color: var(--text-secondary);
}

.submit-hero-note-card {
    background: linear-gradient(180deg, #FFFDFC 0%, #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.submit-hero-note-card h3 {
    margin-bottom: 12px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.submit-hero-note-card ul {
    margin: 0;
    padding-left: 18px;
}

.submit-hero-note-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.submit-secondary {
    background: rgba(15, 27, 45, 0.03);
}

.about-hero {
    background:
        radial-gradient(circle at 14% 18%, rgba(154, 91, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #F7F9FC 0%, #F5F7FA 100%);
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.about-hero-text {
    max-width: 760px;
}

.about-hero .hero-subtext {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: 18px;
    color: var(--text-secondary);
}

.about-hero-note-card {
    background: linear-gradient(180deg, #FFFDFC 0%, #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.about-hero-note-card h3 {
    margin-bottom: 12px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.about-hero-note-card ul {
    margin: 0;
    padding-left: 18px;
}

.about-hero-note-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-hero {
    background:
        radial-gradient(circle at 14% 18%, rgba(154, 91, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #F7F9FC 0%, #F5F7FA 100%);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.contact-hero-text {
    max-width: 760px;
}

.contact-hero .hero-subtext {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: 18px;
    color: var(--text-secondary);
}

.contact-hero-note-card {
    background: linear-gradient(180deg, #FFFDFC 0%, #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.contact-hero-note-card h3 {
    margin-bottom: 12px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.contact-hero-note-card ul {
    margin: 0;
    padding-left: 18px;
}

.contact-hero-note-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.published-hero {
    background:
        radial-gradient(circle at 14% 18%, rgba(154, 91, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #F7F9FC 0%, #F5F7FA 100%);
}

.published-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.published-hero-text {
    max-width: 760px;
}

.published-hero .hero-subtext {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: 18px;
    color: var(--text-secondary);
}

.published-hero-note-card {
    background: linear-gradient(180deg, #FFFDFC 0%, #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.published-hero-note-card h3 {
    margin-bottom: 12px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.published-hero-note-card ul {
    margin: 0;
    padding-left: 18px;
}

.published-hero-note-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

@media (max-width: 900px) {
    .published-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .submit-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .manufacture-hero-inner {
        grid-template-columns: 1fr;
    }
}

/* -------------------------
   Feature sections / cards
   ------------------------- */
.features {
    background: var(--bg-main);
}

.features h2 {
    margin-bottom: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg,
            #FFFDFC 0%,
            #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.feature-card {
    background: linear-gradient(180deg,
            #FFFDFC 0%,
            #FFFFFF 100%);
    border: 1px solid var(--border-light);
    border-top: 3px solid rgba(154, 91, 42, 0.28);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--midnight-blue);
    font-size: 19px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 15px;
}

/* -------------------------
   Process section
   ------------------------- */
.process {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.process h2 {
    margin-bottom: 10px;
}

.process .subtext {
    max-width: 760px;
    margin: 0 0 28px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.step:hover {
    border-color: var(--copper);
    transform: translateY(-2px);
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 10px;
    border: 1px solid var(--copper);
    border-radius: 999px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step p {
    margin-bottom: 0;
    font-size: 14px;
}

/* -------------------------
   CTA band
   ------------------------- */
.cta-band {
    background: linear-gradient(180deg,
            #FAF5F0 0%,
            #FDFBF9 100%);
    border-top: 1px solid var(--border-light);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.cta-band p {
    margin: 0;
}

/* -------------------------
   Philosophy / trust section
   ------------------------- */
.philosophy {
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.philosophy>.container>p {
    max-width: 820px;
    margin: 0 0 26px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.philo-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.philo-card:hover {
    border-color: var(--copper);
    transform: translateY(-2px);
}

.philo-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.philo-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* -------------------------
   Quote / form section
   ------------------------- */
.quote-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.quote-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-main);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(199, 107, 60, 0.12);
}

.quote-form textarea {
    min-height: 130px;
    resize: vertical;
}

.quote-help {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid #E7CDBE;
    border-radius: var(--radius-md);
    background: #FFF7F1;
}

.quote-help h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.quote-help ul {
    margin: 0;
    padding-left: 18px;
}

.quote-help li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* -------------------------
   Footer
   ------------------------- */
footer {
    background: var(--midnight-blue);
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    padding: 28px 20px;
    border-top: 1px solid var(--deep-blue);
    font-size: 14px;
}

footer p {
    color: inherit;
    margin: 0;
}

/* -------------------------
   Responsive
   ------------------------- */
@media (max-width: 1000px) {

    .feature-grid,
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {

    .quote-grid,
    .cta-band-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
   
    .hero,
    .page-hero {
        padding: 64px 0 48px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .feature-grid,
    .philosophy-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        width: 100%;
    }

    .cta-row a.btn,
    .cta-row button.btn {
        width: 100%;
    }
}

.feature-card:hover,
.philo-card:hover,
.step:hover {
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(154, 91, 42, 0.16);
}

@media (max-width: 900px) {

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: auto;
    }

    .hero-image {
        margin-top: 30px;
    }

}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .cta-row {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-image {
        min-height: 320px;
        border-radius: 26px;
    }

    .hero-image img {
        min-height: 320px;
    }
}

#contact-form-status {
    margin-top: 12px;
    font-size: 14px;
}

#manufacture-form-status {
    margin-top: 12px;
    font-size: 14px;
}

#submission-form-status {
    margin-top: 12px;
    font-size: 14px;
}

/* =========================
   Mobile Navigation
   ========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Animate hamburger → X */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================
   Mobile Menu Layout
   ========================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: min(280px, 90vw);

        display: flex;
        flex-direction: column;
        gap: 0;

        background: rgba(15, 27, 45, 0.98);
        border: 1px solid rgba(184, 115, 51, 0.25);
        border-radius: 16px;

        padding: 10px 0;

        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

        backdrop-filter: blur(10px);

        /* animation */
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .menu a {
        padding: 12px 18px;
        display: block;
        font-size: 15px;
    }

    .menu a:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    /* menu visible */

    .menu.menu-open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}