/* =========================================================
   HERETIC INDUSTRIES — Global Styles
   Theme: Dark gothic / Warhammer 40k / Space Marine
   ========================================================= */

:root {
    /* Color palette — bone, rust, deep void */
    --color-void: #07090c;
    --color-obsidian: #0d1117;
    --color-iron: #1a1f26;
    --color-graphite: #2a313a;
    --color-ash: #4a5260;
    --color-bone: #c8bfa8;
    --color-parchment: #e8dfc8;
    --color-blood: #8b1a1a;
    --color-ember: #c44b1a;
    --color-gold: #b8944c;
    --color-gold-bright: #d4b25c;
    --color-plasma: #4a9cd4;

    /* Typography */
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-gothic: 'Metamorphous', 'Cinzel', serif;
    --font-body: 'Rajdhani', 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-pad: clamp(4rem, 10vw, 8rem);

    /* Effects */
    --edge: 1px solid rgba(200, 191, 168, 0.15);
    --edge-bright: 1px solid rgba(200, 191, 168, 0.35);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(196, 75, 26, 0.15);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

body {
    font-family: var(--font-body);
    background: var(--color-void);
    color: var(--color-bone);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at top, rgba(139, 26, 26, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(74, 156, 212, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-void) 0%, var(--color-obsidian) 100%);
    background-attachment: fixed;
}

/* Grain overlay for texture */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.75 0 0 0 0 0.66 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-parchment);
    line-height: 1.15;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--color-ash);
    max-width: 640px;
    margin: 1rem auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
}

.title-flourish {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 1rem 0;
    letter-spacing: 1rem;
    padding-left: 1rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-parchment);
    margin-bottom: 1.25rem;
}

p { margin-bottom: 1rem; color: var(--color-bone); }
p:last-child { margin-bottom: 0; }

strong { color: var(--color-parchment); font-weight: 600; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(180deg, var(--color-blood) 0%, #5a1010 100%);
    color: var(--color-parchment);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4) inset, 0 4px 20px rgba(139, 26, 26, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--color-ember) 0%, var(--color-blood) 100%);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4) inset, 0 0 30px rgba(196, 75, 26, 0.5);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-ghost:hover {
    background: rgba(184, 148, 76, 0.1);
    color: var(--color-gold-bright);
    border-color: var(--color-gold-bright);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(7, 9, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 148, 76, 0.15);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background: rgba(7, 9, 12, 0.95);
    border-bottom-color: rgba(184, 148, 76, 0.35);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem clamp(1.5rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
}

.logo-mark {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    display: flex;
    filter: drop-shadow(0 0 8px rgba(184, 148, 76, 0.3));
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-primary {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-parchment);
}
.logo-secondary {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bone);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-list a:hover { color: var(--color-gold); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transition: transform 0.3s, opacity 0.3s;
}

.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); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 6rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139, 26, 26, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(74, 156, 212, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(7, 9, 12, 0.3) 0%, var(--color-void) 100%);
}

.hero-glyphs { position: absolute; inset: 0; pointer-events: none; opacity: 0.07; }
.glyph {
    position: absolute;
    font-size: 20rem;
    color: var(--color-bone);
    font-family: var(--font-display);
}
.glyph-1 { top: 5%; left: -5%; }
.glyph-2 { top: 30%; right: -5%; font-size: 18rem; }
.glyph-3 { bottom: -5%; left: 40%; font-size: 15rem; }

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 1.5rem 0;
    color: var(--color-parchment);
    text-shadow: 0 0 40px rgba(139, 26, 26, 0.4), 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
}

.hero-title .line-2 {
    color: var(--color-gold);
    font-size: 0.55em;
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
    text-shadow: 0 0 20px rgba(184, 148, 76, 0.3);
}

.hero-tagline {
    font-family: var(--font-gothic);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-gold);
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-bone);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--color-gold);
    opacity: 0.6;
}

.decor-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.decor-skull { width: 36px; height: 36px; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: var(--color-gold);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    transform: rotate(45deg) translateY(-2px);
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
    50% { opacity: 0.9; transform: translate(-50%, 4px); }
}

/* =========================================================
   CREDO
   ========================================================= */
.credo {
    padding: var(--section-pad) 0;
    position: relative;
}

.credo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.credo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credo-text p { font-size: 1.05rem; }

.credo-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(26, 31, 38, 0.6), rgba(13, 17, 23, 0.6));
    border: var(--edge);
    position: relative;
}

.credo-stats::before,
.credo-stats::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gold);
}

.credo-stats::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.credo-stats::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.stat {
    text-align: center;
    padding: 1rem 0;
    border-bottom: var(--edge);
}

.stat:last-child { border-bottom: none; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-bone);
}

/* =========================================================
   ARMORY / PRODUCTS
   ========================================================= */
.armory {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.4) 50%, transparent 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(180deg, rgba(26, 31, 38, 0.8), rgba(13, 17, 23, 0.9));
    border: var(--edge);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 148, 76, 0.4);
    box-shadow: var(--shadow-deep), 0 0 20px rgba(184, 148, 76, 0.1);
}

.product-card:hover::before { opacity: 1; }

.product-image {
    height: 220px;
    background:
        radial-gradient(ellipse at center, rgba(139, 26, 26, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, #1a1f26 0%, #0d1117 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(184, 148, 76, 0.2);
    overflow: hidden;
}

.product-image::before {
    content: attr(data-glyph);
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-gold);
    opacity: 0.2;
    transition: all 0.4s;
    text-shadow: 0 0 40px rgba(184, 148, 76, 0.3);
}

.product-card:hover .product-image::before {
    opacity: 0.4;
    transform: scale(1.1) rotate(5deg);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(184, 148, 76, 0.1);
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-blood);
    color: var(--color-parchment);
    padding: 0.35rem 0.8rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    font-weight: 600;
}

.product-body {
    padding: 1.5rem;
}

.product-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-parchment);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-bone);
    margin-bottom: 1.25rem;
    min-height: 3em;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: var(--edge);
}

.price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ash);
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--color-ash);
}

.armory-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(184, 148, 76, 0.2);
    border-bottom: 1px solid rgba(184, 148, 76, 0.2);
    font-style: italic;
    color: var(--color-ash);
}

/* =========================================================
   MODI BOXES
   ========================================================= */
.modi {
    padding: var(--section-pad) 0;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(139, 26, 26, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(7, 9, 12, 0.8) 50%, transparent 100%);
    border-top: 1px solid rgba(184, 148, 76, 0.15);
    border-bottom: 1px solid rgba(184, 148, 76, 0.15);
}

.modi-header { text-align: center; margin-bottom: 4rem; }

.modi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.modi-features {
    margin: 2rem 0;
    padding: 0;
}

.modi-features li {
    padding: 0.75rem 0;
    border-bottom: var(--edge);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-parchment);
}

.modi-features li:last-child { border-bottom: none; }

.bullet {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.modi-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.modi-box-stack {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
}

.modi-box {
    position: absolute;
    background: linear-gradient(135deg, #2a313a 0%, #1a1f26 50%, #0d1117 100%);
    border: 1px solid rgba(184, 148, 76, 0.3);
    box-shadow: var(--shadow-deep);
}

.modi-box::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(184, 148, 76, 0.15);
}

.modi-box-1 {
    width: 220px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
}

.modi-box-2 {
    width: 180px;
    height: 100px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    background: linear-gradient(135deg, #1a1f26 0%, #0d1117 100%);
}

.modi-box-3 {
    width: 140px;
    height: 80px;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(40px);
}

.modi-seal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    color: var(--color-gold);
    filter: drop-shadow(0 0 15px rgba(184, 148, 76, 0.4));
    animation: rotateSeal 30s linear infinite;
}

@keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================================
   COMMISSIONS FORM
   ========================================================= */
.commissions { padding: var(--section-pad) 0; }

.commission-form {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, rgba(26, 31, 38, 0.8), rgba(13, 17, 23, 0.9));
    border: var(--edge);
    position: relative;
}

.commission-form::before,
.commission-form::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-gold);
}

.commission-form::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.commission-form::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field { margin-bottom: 1.5rem; }

.form-field label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(7, 9, 12, 0.8);
    border: 1px solid rgba(184, 148, 76, 0.25);
    color: var(--color-parchment);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(184, 148, 76, 0.15);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8944c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-field select option {
    background: var(--color-obsidian);
    color: var(--color-parchment);
}

.form-consent { margin: 1.5rem 0; }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-bone);
    letter-spacing: normal;
    text-transform: none;
    font-weight: 400;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.form-status {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-align: center;
    min-height: 1.5em;
}

.form-status.success { color: var(--color-gold-bright); }
.form-status.error { color: var(--color-ember); }

/* =========================================================
   ORDERING
   ========================================================= */
.ordering {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.4) 100%);
}

.ordering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.order-card {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 31, 38, 0.6), rgba(13, 17, 23, 0.8));
    border: var(--edge);
    transition: all 0.3s ease;
    position: relative;
}

.order-card:hover {
    border-color: rgba(184, 148, 76, 0.4);
    transform: translateY(-2px);
}

.order-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    background: radial-gradient(circle, rgba(184, 148, 76, 0.1), transparent);
}

.order-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-parchment);
}

.order-card p {
    font-size: 0.95rem;
    color: var(--color-bone);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: var(--section-pad) 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info, .social-block {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(26, 31, 38, 0.4), rgba(13, 17, 23, 0.6));
    border: var(--edge);
}

.contact-info h3, .social-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-email {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-gold-bright);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(184, 148, 76, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s, color 0.3s;
    word-break: break-all;
}

.contact-email:hover {
    color: var(--color-parchment);
    border-bottom-color: var(--color-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(184, 148, 76, 0.2);
    color: var(--color-bone);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(184, 148, 76, 0.05);
    transform: translateX(4px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    padding: 4rem 0 2rem;
    background: var(--color-obsidian);
    border-top: 1px solid rgba(184, 148, 76, 0.25);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-parchment);
    margin-bottom: 0.5rem;
}

.footer-motto {
    font-family: var(--font-gothic);
    font-style: italic;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.footer-links h4, .footer-legal h4 {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
    color: var(--color-bone);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-legal p {
    font-size: 0.85rem;
    color: var(--color-ash);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: var(--edge);
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ash);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .credo-grid,
    .modi-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .modi-visual { height: 320px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 9, 12, 0.98);
        border-bottom: 1px solid rgba(184, 148, 76, 0.2);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list li {
        border-bottom: var(--edge);
    }

    .nav-list li:last-child { border-bottom: none; }

    .nav-list a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .credo-stats {
        padding: 1.5rem;
    }

    .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    .logo-primary { font-size: 1rem; }
    .logo-secondary { font-size: 0.6rem; }
    .logo-mark { width: 32px; height: 32px; }
    .nav-container { padding: 0.85rem 1rem; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}