/* ============================================
   VELMOR DESIGN - EDITORIAL / JAPANESE POSTER / DARK RED THEME
   Full replacement CSS
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */

:root {
    --color-black: #050505;
    --color-black-soft: #0b0b0b;
    --color-charcoal: #111111;
    --color-panel: #141414;
    --color-panel-2: #1b1b1b;

    --color-paper: #f2ede4;
    --color-paper-soft: rgba(242, 237, 228, 0.78);
    --color-muted: rgba(242, 237, 228, 0.58);
    --color-divider: rgba(242, 237, 228, 0.10);

    --color-red: #b11217;
    --color-red-bright: #df1f26;
    --color-red-deep: #7e0d12;
    --color-red-glow: rgba(223, 31, 38, 0.18);

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;

    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-display: 'Bebas Neue', 'Oswald', 'Anton', 'Teko', sans-serif;

    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 72px;
    --font-size-5xl: 112px;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.5s ease;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-red: 0 0 40px rgba(223, 31, 38, 0.12);
    --shadow-red-strong: 0 0 60px rgba(223, 31, 38, 0.18);
}

/* ============================================
   RESET / GLOBAL
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--color-black);
}

body {
    background:
        radial-gradient(circle at top right, rgba(223, 31, 38, 0.11), transparent 22%),
        radial-gradient(circle at 10% 20%, rgba(177, 18, 23, 0.08), transparent 20%),
        linear-gradient(180deg, #050505 0%, #090909 45%, #050505 100%);
    color: var(--color-paper);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: screen;
    background-image:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.03) 0,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 3px
        );
    z-index: 1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

main,
section,
header,
footer,
.navbar {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-bold);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-paper);
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    color: var(--color-paper-soft);
}

a {
    color: var(--color-paper);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

a:hover {
    color: var(--color-paper);
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-title {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.9;
    text-align: left;
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.text-red {
    color: var(--color-red-bright);
}

.section-subtitle {
    text-align: left;
    font-size: var(--font-size-lg);
    color: var(--color-muted);
    margin-bottom: var(--spacing-2xl);
    max-width: 760px;
}

section {
    padding: var(--spacing-4xl) 0;
    border-top: 1px solid var(--color-divider);
    background: transparent;
}

section:first-of-type {
    border-top: none;
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--color-red-deep), var(--color-red), var(--color-red-bright));
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-text {
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    color: #fff !important;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-text strong {
    font-weight: var(--font-weight-bold);
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
}

.promo-separator {
    opacity: 0.4;
    font-weight: var(--font-weight-light);
}

.promo-fire {
    font-size: 15px;
}

.promo-cta {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-left: 4px;
}

.promo-cta:hover {
    background: rgba(255, 255, 255, 0.30);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.86) !important;
    border-bottom: 1px solid rgba(242, 237, 228, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 18px 0;
    transition: top 0.2s ease;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo a {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.28em;
    color: var(--color-paper);
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo a::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-red-bright);
    display: inline-block;
    box-shadow: 0 0 18px rgba(223, 31, 38, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-paper-soft);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--color-red-bright);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--color-paper);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(242, 237, 228, 0.24);
    padding: 10px 14px;
    padding-bottom: 10px;
    border-radius: 999px;
    transition: all var(--transition-normal);
    line-height: 1;
}

.nav-cta:hover {
    border-color: var(--color-red-bright);
    box-shadow: var(--shadow-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-paper);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    min-height: 52px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-bright));
    color: var(--color-paper);
    border: 1px solid transparent;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-strong);
}

.btn-secondary {
    background: rgba(255,255,255,0.02);
    color: var(--color-paper);
    border: 1px solid rgba(242, 237, 228, 0.20);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(242, 237, 228, 0.42);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 30px;
    font-size: 13px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(177, 18, 23, 0.14), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(223, 31, 38, 0.10), transparent 24%),
        transparent !important;
    border: none !important;
}

.hero::before {
    content: "DESIGN";
    position: absolute;
    top: 52%;
    right: -30px;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-family-display);
    font-size: clamp(90px, 12vw, 180px);
    letter-spacing: 0.06em;
    color: rgba(242, 237, 228, 0.035);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-marquee {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: hidden;
    opacity: 0.035;
}

.hero-bg-track {
    white-space: nowrap;
    font-family: var(--font-family-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    color: var(--color-paper);
    animation: heroBgScroll 50s linear infinite;
    line-height: 1.4;
}

.hero-bg-track--reverse {
    animation: heroBgScrollReverse 55s linear infinite;
}

@keyframes heroBgScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes heroBgScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.12), rgba(5,5,5,0.65));
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    text-align: left;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-kicker,
.hero-title,
.hero-subtitle,
.hero-ctas,
.hero-mark {
    margin-left: 0;
    margin-right: 0;
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--color-red-bright);
    position: relative;
    padding-left: 18px;
}

.hero-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background: var(--color-red-bright);
    transform: translateY(-50%);
}

.hero-mark {
    width: clamp(300px, 42vw, 500px) !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    opacity: 0.95;
    margin-bottom: 6px;
    filter: drop-shadow(0 0 28px rgba(223,31,38,0.08));
}

.hero-title {
    font-size: clamp(48px, 8vw, 82px);
    font-weight: var(--font-weight-bold);
    line-height: 0.9;
    letter-spacing: 0.02em;
    max-width: 850px;
    text-transform: uppercase;
}

.hero-title span,
.hero-title .accent {
    color: var(--color-red-bright);
}

.hero-subtitle {
    font-size: clamp(15px, 1.5vw, 20px);
    color: var(--color-paper-soft);
    font-weight: var(--font-weight-light);
    line-height: 1.65;
    max-width: 660px;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* Hero Layout — two columns */

.hero-layout {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    width: 100%;
    padding-right: 60px;
}

.hero-layout .hero-content {
    flex: 1 1 0;
    min-width: 0;
}

/* Hero Form Card */

.hero-form-card {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(242, 237, 228, 0.10);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.hero-form-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--color-paper);
}

.hero-form-desc {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: var(--spacing-lg);
}

.hero-email-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-form-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(242, 237, 228, 0.12);
    color: var(--color-paper);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    border-radius: 14px;
    transition: all var(--transition-fast);
}

.hero-form-input::placeholder {
    color: rgba(242, 237, 228, 0.38);
}

.hero-form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(223, 31, 38, 0.40);
    box-shadow: 0 0 0 4px rgba(223, 31, 38, 0.08);
}

.hero-form-btn {
    width: 100%;
}

/* Hero Stats Marquee */

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(242, 237, 228, 0.06);
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-paper-soft);
    white-space: nowrap;
    padding: 0 20px;
}

.marquee-icon {
    width: 18px;
    height: 18px;
    color: var(--color-red-bright);
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.marquee-separator {
    color: rgba(242, 237, 228, 0.2);
    font-size: 14px;
    padding: 0 4px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-content h2 {
    margin-bottom: var(--spacing-lg);
}

.about-content p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-paper-soft);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    font-weight: var(--font-weight-light);
    max-width: 920px;
}

.about-ctas {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Kanji vector art */
.about-kanji-art {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: var(--spacing-lg);
}

.kanji-character {
    position: relative;
    cursor: default;
    text-align: center;
}

.kanji-glyph {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    color: var(--color-red-bright);
    line-height: 1;
    display: block;
    transition: opacity 0.3s ease;
}

.kanji-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family-display);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 1;
}

.kanji-character:hover .kanji-glyph {
    opacity: 0.25;
}

.kanji-character:hover .kanji-label {
    opacity: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: transparent;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

/* Services Background Asian Marquee */

.services-bg-marquee {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: hidden;
    opacity: 0.035;
}

.services-bg-track {
    white-space: nowrap;
    font-family: var(--font-family-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    color: var(--color-paper);
    animation: servicesBgScroll 40s linear infinite;
    line-height: 1.4;
}

.services-bg-track--reverse {
    animation: servicesBgScrollReverse 45s linear infinite;
}

@keyframes servicesBgScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes servicesBgScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.services-header .section-title {
    margin-bottom: 0;
}

.services-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    padding: 28px;
    border: 1px solid rgba(242, 237, 228, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 260px;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(223,31,38,0.10), transparent 32%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.service-card::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223,31,38,0.28);
    box-shadow: var(--shadow-red), var(--shadow-soft);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 42px;
    height: 42px;
    color: var(--color-red-bright);
    margin-bottom: var(--spacing-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--color-paper);
}

.service-card p {
    font-size: 15px;
    color: var(--color-paper-soft);
    line-height: 1.8;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

.why-us-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.why-us-header .section-title {
    margin-bottom: 0;
}

.why-us-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

.why-us-item {
    padding: 28px 0 0;
    position: relative;
    border-top: 1px solid rgba(242, 237, 228, 0.12);
}

.why-us-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--color-red-bright);
}

.why-us-icon {
    width: 32px;
    height: 32px;
    color: var(--color-red-bright);
    margin-bottom: 14px;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-item h3 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--color-paper);
}

.why-us-item p {
    color: var(--color-paper-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

/* Progress bar */
.process-progress {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding: 0 40px;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(242, 237, 228, 0.10);
    transform: translateY(-50%);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-red-bright);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-black);
    border: 2px solid rgba(242, 237, 228, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot span {
    font-family: var(--font-family-display);
    font-size: 12px;
    color: var(--color-paper-soft);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.progress-dot.active {
    border-color: var(--color-red-bright);
    background: rgba(223, 31, 38, 0.15);
    box-shadow: 0 0 12px rgba(223, 31, 38, 0.3);
}

.progress-dot.active span {
    color: var(--color-red-bright);
}

.progress-dot.completed {
    border-color: var(--color-red-bright);
    background: var(--color-red-bright);
}

.progress-dot.completed span {
    color: var(--color-paper);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.process-step {
    background: rgba(242, 237, 228, 0.03);
    border: 1px solid rgba(242, 237, 228, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.process-step:hover,
.process-step.active {
    border-color: rgba(223, 31, 38, 0.3);
    background: rgba(223, 31, 38, 0.05);
}

.process-step:last-child {
    border-bottom: 1px solid rgba(242, 237, 228, 0.08);
}

.process-step:hover:last-child,
.process-step.active:last-child {
    border-color: rgba(223, 31, 38, 0.3);
}

.step-number {
    font-size: 42px;
    font-weight: var(--font-weight-bold);
    color: rgba(223, 31, 38, 0.22);
    font-family: var(--font-family-display);
    display: block;
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(223,31,38,0.09);
    border: 1px solid rgba(223,31,38,0.20);
}

.step-content h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 8px;
    color: var(--color-paper);
}

.step-content p {
    color: var(--color-paper-soft);
    line-height: 1.75;
    font-size: 14px;
}

.process-divider {
    display: none;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    background: transparent;
    padding: var(--spacing-2xl) 0;
}

.portfolio-btn {
    margin-top: 14px;
    padding: 10px 20px;
    font-size: 11px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.portfolio-item {
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-6px);
}

.portfolio-preview {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(242, 237, 228, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #1a1a1a, #090909);
    transition: all var(--transition-normal);
}

.portfolio-preview iframe {
    width: 200%;
    height: 200%;
    border: none;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
}

.portfolio-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223,31,38,0.10), transparent 38%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.portfolio-item:hover .portfolio-preview {
    border-color: rgba(223,31,38,0.32);
    box-shadow: var(--shadow-red), var(--shadow-soft);
}

.portfolio-item:hover .portfolio-preview::after {
    opacity: 1;
}

.portfolio-item h3 {
    font-size: 34px;
    margin-bottom: 6px;
    color: var(--color-paper);
}

.portfolio-item p {
    font-size: 14px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================================
   BRANDING SECTION
   ============================================ */

.branding {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

.branding-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.branding-header .section-title {
    margin-bottom: 0;
}

.branding-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.branding-description {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-paper-soft);
    margin-bottom: var(--spacing-xl);
    line-height: 1.9;
    font-weight: var(--font-weight-light);
    max-width: 920px;
}

.branding-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid rgba(242, 237, 228, 0.08);
    border-radius: var(--radius-lg);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.feature::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(223,31,38,0.28);
    box-shadow: var(--shadow-red), var(--shadow-soft);
}

.feature-icon {
    width: 42px;
    height: 42px;
    color: var(--color-red-bright);
    margin: 0 0 var(--spacing-md);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h4 {
    font-size: 28px;
    color: var(--color-paper);
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    color: var(--color-paper-soft);
    line-height: 1.75;
}

/* ============================================
   SEO & CMS SECTION
   ============================================ */

.seo-cms {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

.seo-cms-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.seo-cms-header .section-title {
    margin-bottom: 0;
}

.seo-cms-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.seo-cms-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.seo-cms-item {
    padding: 28px;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.012));
    border: 1px solid rgba(242, 237, 228, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.seo-cms-item::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 68px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.seo-cms-item:hover {
    transform: translateY(-5px);
    border-color: rgba(223,31,38,0.28);
    box-shadow: var(--shadow-red), var(--shadow-soft);
}

.seo-cms-item-icon {
    width: 42px;
    height: 42px;
    color: var(--color-red-bright);
    margin: 0 0 var(--spacing-md);
}

.seo-cms-item-icon svg {
    width: 100%;
    height: 100%;
}

.seo-cms-item h3 {
    font-size: 28px;
    color: var(--color-paper);
    margin-bottom: 10px;
}

.seo-cms-item p {
    font-size: 15px;
    color: var(--color-paper-soft);
    line-height: 1.75;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    background: transparent;
    padding: var(--spacing-xl) 0;
}

.contact-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.contact-header .section-title {
    margin-bottom: 0;
}

.contact-header-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.contact-form {
    max-width: 820px;
    margin: 0;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
    color: var(--color-paper);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.form-input {
    width: 100%;
    padding: 18px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(242, 237, 228, 0.10);
    color: var(--color-paper);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    border-radius: 16px;
    min-height: 58px;
    box-shadow: inset 0 0 0 1px transparent;
}

.form-input::placeholder {
    color: rgba(242,237,228,0.38);
}

.form-input:focus {
    outline: none;
    background: rgba(255,255,255,0.045);
    border-color: rgba(223,31,38,0.38);
    box-shadow: 0 0 0 4px rgba(223,31,38,0.08);
}

.form-input option {
    background-color: var(--color-panel-2);
    color: var(--color-paper);
}

.form-notice {
    font-size: var(--font-size-sm);
    color: var(--color-muted);
    text-align: left;
    margin-top: var(--spacing-md);
}

.full-width {
    grid-column: 1 / -1;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    background: transparent;
    text-align: left;
    padding: var(--spacing-xl) 0;
}

.final-cta h2 {
    font-size: clamp(56px, 8vw, 120px);
    margin-bottom: 16px;
    max-width: 900px;
}

.final-cta p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-paper-soft);
    margin-bottom: var(--spacing-xl);
    max-width: 760px;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02)),
        var(--color-black-soft);
    border-top: 1px solid rgba(242, 237, 228, 0.08);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-marquee {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-track {
    white-space: nowrap;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
    color: var(--color-paper);
    animation: footerBgScroll 50s linear infinite;
}

.footer-bg-track--reverse {
    animation: footerBgScrollReverse 55s linear infinite;
}

@keyframes footerBgScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes footerBgScrollReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer::before {
    content: "VELMOR";
    position: absolute;
    right: -12px;
    bottom: -18px;
    font-family: var(--font-family-display);
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0.85;
    color: rgba(242,237,228,0.03);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: var(--spacing-md);
    color: var(--color-paper);
    font-family: var(--font-family-primary);
}

.footer-section p {
    font-size: 15px;
    color: var(--color-paper-soft);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--color-paper-soft);
    font-size: 14px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--color-paper);
    transform: translateX(2px);
}

.footer-bottom {
    text-align: left;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(242, 237, 228, 0.08);
    color: rgba(242,237,228,0.42);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 140px 0 80px;
    border-bottom: 1px solid rgba(242, 237, 228, 0.08);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg-marquee {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

.contact-hero > .container {
    position: relative;
    z-index: 1;
}

.contact-hero::before {
    content: "CONTACT";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-family-display);
    font-size: clamp(90px, 12vw, 180px);
    color: rgba(242,237,228,0.035);
    line-height: 0.85;
    z-index: 1;
}

.contact-hero h1 {
    font-size: clamp(64px, 10vw, 150px);
    margin-bottom: var(--spacing-lg);
}

.contact-hero p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-paper-soft);
    max-width: 720px;
    margin: 0;
    line-height: 1.8;
    font-weight: var(--font-weight-light);
}

.contact-info-section {
    background-color: transparent;
    padding: var(--spacing-xl) 0;
}

.contact-info-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-info-header .section-title {
    margin-bottom: 0;
}

.contact-info-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.info-box {
    padding: 28px;
    border: 1px solid rgba(242, 237, 228, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.info-box::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red-bright), transparent);
}

.info-box:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
    border-color: rgba(223,31,38,0.28);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red), var(--shadow-soft);
}

.info-box-icon {
    width: 42px;
    height: 42px;
    color: var(--color-red-bright);
    margin-bottom: var(--spacing-md);
}

.info-box-icon svg {
    width: 100%;
    height: 100%;
}

.info-box h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: var(--spacing-md);
    color: var(--color-paper);
    font-family: var(--font-family-primary);
}

.info-box p {
    font-size: 15px;
    color: var(--color-paper-soft);
    line-height: 1.8;
}

.info-box a {
    color: var(--color-paper);
    font-weight: var(--font-weight-semibold);
}

.services-list {
    list-style: none;
}

.services-list li {
    font-size: 15px;
    color: var(--color-paper-soft);
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.services-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-red-bright);
}

.contact-page-form {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
}

.form-wrapper {
    max-width: 900px;
    margin: 0;
}

.form-wrapper h2 {
    font-size: clamp(48px, 7vw, 96px);
    margin-bottom: 12px;
    text-align: left;
}

.form-intro {
    text-align: left;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-paper-soft);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
    font-weight: var(--font-weight-light);
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
}

/* ============================================
   SIMPLE DECORATIVE HELPERS
   ============================================ */

.service-card,
.feature,
.info-box,
.seo-cms-item,
.portfolio-image,
.form-input {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ============================================
   SIDE NAVIGATION DOTS
   ============================================ */

.side-nav {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(242, 237, 228, 0.20);
    border: 1px solid rgba(242, 237, 228, 0.15);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.side-nav-dot:hover {
    background: rgba(242, 237, 228, 0.45);
    transform: scale(1.3);
}

.side-nav-dot.active {
    background: var(--color-red-bright);
    border-color: var(--color-red-bright);
    box-shadow: 0 0 10px rgba(223, 31, 38, 0.4);
    transform: scale(1.3);
}

.side-nav-dot::before {
    content: attr(title);
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-paper-soft);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.side-nav-dot:hover::before {
    opacity: 1;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(223, 31, 38, 0.85);
    border: 1px solid rgba(223, 31, 38, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(223, 31, 38, 0.25);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--color-red-bright);
    box-shadow: 0 6px 28px rgba(223, 31, 38, 0.4);
    color: #fff;
}

/* ============================================
   CONFIRMATION MODAL
   ============================================ */

.confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.confirmation-modal.active {
    display: flex;
}

.confirmation-modal-content {
    position: relative;
    background: var(--color-panel);
    border: 1px solid var(--color-divider);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
}

.confirmation-modal.active .confirmation-modal-content {
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.confirmation-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: var(--color-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.confirmation-modal-close:hover {
    color: var(--color-paper);
}

.confirmation-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--color-red-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-modal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-red-bright);
}

.confirmation-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.04em;
    color: var(--color-paper);
    margin-bottom: 10px;
}

.confirmation-modal-text {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .services-grid,
    .branding-features,
    .seo-cms-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid,
    .contact-info-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item:nth-child(n) {
        grid-column: span 6;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-4xl: 100px;
        --font-size-5xl: 92px;
        --font-size-4xl: 60px;
    }

    .hero {
        height: auto;
        max-height: none;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }

    .hero-layout {
        padding-right: 0;
        gap: var(--spacing-lg);
    }

    .hero-form-card {
        flex: 0 0 320px;
    }

    .hero-mark {
        width: clamp(220px, 34vw, 480px) !important;
    }

    .hero-title {
        font-size: clamp(42px, 7vw, 90px);
    }

    .process-step {
        padding: 24px 20px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 22px;
        --spacing-xl: 36px;
        --spacing-2xl: 52px;
        --spacing-3xl: 74px;
        --spacing-4xl: 84px;
        --font-size-5xl: 72px;
        --font-size-4xl: 52px;
        --font-size-3xl: 40px;
        --font-size-2xl: 28px;
    }

    .side-nav {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 12px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1001;
        padding: 80px 20px;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 0.18em;
        color: var(--color-paper-soft);
    }

    .nav-links li:last-child {
        margin-top: 8px;
    }

    .nav-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .promo-banner {
        padding: 8px 0;
    }

    .promo-text {
        font-size: 11px;
        gap: 4px;
    }

    .promo-text strong {
        font-size: 11px;
    }

    .promo-separator {
        display: none;
    }

    .hero {
        height: auto;
        max-height: none;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 0 30px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 0.18em;
        line-height: 1.5;
    }

    .hero-mark {
        width: clamp(140px, 45vw, 260px) !important;
        margin: 0 auto;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 14px;
        max-width: 100%;
        line-height: 1.55;
    }

    .hero-layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 0;
    }

    .hero-form-card {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px 24px;
        display: none;
    }

    .hero-form-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 58px);
        line-height: 0.92;
    }

    .hero-ctas {
        margin-top: 4px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-title,
    .form-wrapper h2,
    .final-cta h2 {
        font-size: clamp(40px, 12vw, 70px);
    }

    .services-grid,
    .branding-features,
    .seo-cms-content,
    .why-us-grid,
    .contact-info-grid,
    .footer-content,
    .form-row {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 20px 16px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 32px;
    }

    .services-header,
    .why-us-header,
    .branding-header,
    .seo-cms-header,
    .contact-header,
    .contact-info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-ctas,
    .why-us-ctas,
    .branding-ctas,
    .seo-cms-ctas,
    .contact-header-ctas,
    .contact-info-ctas {
        flex-wrap: wrap;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(n) {
        grid-column: span 1;
    }

    .about-layout {
        flex-direction: column;
    }

    .about-kanji-art {
        flex-direction: row;
        padding-right: 0;
    }

    .kanji-glyph {
        font-size: 48px;
    }

    .about-ctas {
        flex-direction: column;
    }

    .portfolio-image {
        height: 320px;
    }

    .contact-hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .contact-hero::before {
        display: none;
    }

    .contact-hero h1 {
        font-size: clamp(52px, 14vw, 90px);
    }

    .btn {
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-5xl: 60px;
        --font-size-4xl: 44px;
        --font-size-3xl: 34px;
        --font-size-2xl: 24px;
    }

    .logo a {
        font-size: 14px;
        letter-spacing: 0.18em;
    }

    .nav-links a {
        font-size: 15px;
    }

    .promo-text {
        font-size: 10px;
        flex-direction: column;
        gap: 2px;
    }

    .promo-text strong {
        font-size: 10px;
    }

    .promo-cta {
        font-size: 9px;
        padding: 3px 10px;
    }

    .hero {
        padding: 100px 0 50px !important;
    }

    .hero-title {
        font-size: clamp(32px, 12vw, 52px);
    }

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.5;
    }

    .hero-mark {
        width: clamp(140px, 60vw, 260px) !important;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-form-card {
        padding: 24px 20px;
    }

    .hero-form-title {
        font-size: 24px;
    }

    .hero-form-desc {
        font-size: 13px;
    }

    .hero-form-input {
        padding: 14px 16px;
        font-size: 15px;
    }

    .service-card,
    .feature,
    .info-box,
    .seo-cms-item {
        padding: 22px;
    }

    .portfolio-image {
        height: 280px;
        padding: 18px;
    }

    .about-content p,
    .branding-description,
    .final-cta p,
    .contact-hero p,
    .form-intro {
        font-size: 16px;
    }
}

/* ============================================
   LARGE SCREENS
   ============================================ */

/* 1440px–1536px: keep current look */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        max-width: 700px;
    }

    .hero-subtitle {
        max-width: 560px;
    }
}

/* 1537px+: freeze proportions to match the 1536px look */
@media (min-width: 1537px) {
    :root {
        --font-size-5xl: 112px;
        --font-size-4xl: 72px;
        --font-size-3xl: 48px;
        --font-size-2xl: 32px;
        --spacing-4xl: 128px;
        --spacing-3xl: 96px;
    }

    .container {
        max-width: 1400px;
    }

    /* Lock section titles */
    .section-title {
        font-size: 88px;
    }

    /* Lock hero to exact 1536px proportions */
    .hero-mark {
        width: 460px !important;
    }

    .hero-title {
        font-size: 78px;
        max-width: 600px;
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 540px;
    }

    .hero-kicker {
        font-size: 12px;
    }

    .hero-form-card {
        flex: 0 0 360px;
        padding: 34px 28px;
    }

    .hero-form-title {
        font-size: 32px;
    }

    .hero-form-desc {
        font-size: 14px;
    }

    .hero-layout {
        gap: 48px;
        padding-right: 0;
    }

    /* Lock card / item sizes */
    .service-card h3,
    .why-us-item h3 {
        font-size: 28px;
    }

    .service-card p,
    .why-us-item p,
    .feature p,
    .seo-cms-item p {
        font-size: 14px;
    }

    .about-content p,
    .branding-description {
        font-size: 20px;
    }

    .kanji-glyph {
        font-size: 76px;
    }

    .step-content h3 {
        font-size: 26px;
    }

    .feature h4,
    .seo-cms-item h3 {
        font-size: 24px;
    }

    .portfolio-item h3 {
        font-size: 28px;
    }

    /* Lock final CTA */
    .final-cta h2 {
        font-size: 92px;
        max-width: 800px;
    }

    .final-cta p {
        font-size: 19px;
    }

    /* Lock contact hero */
    .contact-hero h1 {
        font-size: 110px;
    }

    .form-wrapper h2 {
        font-size: 80px;
    }

    /* Footer */
    .footer::before {
        font-size: 140px;
    }
}

/* 1920px+: same proportions, slightly wider container */
@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }

    .hero .container {
        max-width: 1440px;
    }

    .hero-layout {
        gap: 64px;
    }

    .hero-mark {
        width: 480px !important;
    }

    .hero-title {
        font-size: 82px;
        max-width: 640px;
    }

    .hero-form-card {
        flex: 0 0 380px;
    }
}

/* 2560px+ ultra-wide: keep everything contained */
@media (min-width: 2560px) {
    .container {
        max-width: 1500px;
    }

    .hero .container {
        max-width: 1500px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section,
.hero-content,
.footer-content,
.contact-hero .container {
    animation: fadeInUp 0.65s ease-out;
}