/* ========================================
   PREMIUM PORTFOLIO - $50K DESIGN SYSTEM
   ======================================== */

:root {
    --pure-black: #050505;
    --rich-black: #0a0a0a;
    --charcoal: #141414;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --silver: #8a8a8a;
    --light-silver: #b0b0b0;
    --off-white: #f0f0f0;
    --pure-white: #ffffff;
    --accent: #c9a962;
    --accent-light: #d4bc7e;
    --accent-dark: #a68b4b;
    
    --bg-primary: var(--rich-black);
    --bg-secondary: var(--charcoal);
    --bg-tertiary: var(--dark-gray);
    --text-primary: var(--pure-white);
    --text-secondary: var(--silver);
    --text-muted: var(--medium-gray);
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-xxl: 120px;
    --space-section: 160px;
    
    --gutter: clamp(24px, 5vw, 80px);
    
    --font-display: 'Clash Display', 'Inter', sans-serif;
    --font-body: 'Neue Montreal', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scrollbar-width: thin;
scrollbar-color: var(--medium-gray) var(--rich-black);
font-display: swap;
}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
html {
scroll-behavior: auto;
}
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--rich-black);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Cursor Spotlight Effect */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.03) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-spotlight.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-spotlight {
        display: none;
    }
}

a {
color: inherit;
text-decoration: none;
tap-highlight-color: transparent;
-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

img {
max-width: 100%;
height: auto;
display: block;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}

@media (max-width: 768px) {
img {
image-rendering: auto;
}
}

button {
    background: none;
    border: none;
    font-family: inherit;
}

/* ========================================
   PRE-LOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: none;
}

.preloader-counter {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 600;
    color: var(--pure-white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s forwards;
}

.counter-number {
    line-height: 1;
}

.counter-percent {
    font-size: 0.4em;
    color: var(--accent);
    margin-left: 0.05em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 90px;
padding: 0 var(--gutter);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
mix-blend-mode: difference;
}

@media (max-width: 768px) {
.header {
mix-blend-mode: normal;
background: rgba(5, 5, 5, 0.95);
}
}

.logo {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
}

.logo.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.logo-img {
height: 100px;
width: auto;
object-fit: contain;
}

.nav {
display: flex;
align-items: center;
gap: var(--space-md);
opacity: 0;
transform: translateY(-20px);
}

.nav.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out) 0.1s, transform 0.6s var(--ease-out) 0.1s;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--pure-white);
    letter-spacing: 0.05em;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--rich-black);
    border-radius: 100px;
    transition: background 0.3s, transform 0.3s var(--ease-out);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 101;
  touch-action: manipulation;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--rich-black);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 600;
  color: var(--pure-white);
  opacity: 0;
  transform: translateY(20px);
  padding: var(--space-sm);
  display: block;
  touch-action: manipulation;
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px var(--gutter) var(--space-xxl);
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(10rem, 25vw, 35rem);
    font-weight: 700;
    color: var(--pure-white);
    opacity: 0.02;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    opacity: 0;
}

.hero-text.animate {
    opacity: 1;
}

.hero-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}

.hero-title .title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--pure-white);
    letter-spacing: -0.03em;
}

.hero-title .title-line.italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--silver);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--silver);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  min-height: 52px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  touch-action: manipulation;
}

.hero-cta.primary {
    background: var(--accent);
    color: var(--rich-black);
}

.hero-cta.primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
}

.hero-visual.animate {
    opacity: 1;
}

.hero-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s var(--ease-out);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}

.scroll-indicator.visible {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--silver), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
}

/* ========================================
   SECTION STYLING
   ======================================== */
.section-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.section-number.light {
    color: rgba(201, 169, 98, 0.5);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--space-section) var(--gutter);
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-header {
    position: sticky;
    top: 150px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: -0.02em;
}

.about-narrative {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--silver);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.about-narrative .highlight {
    color: var(--accent);
    font-weight: 500;
}

.about-cta {
    margin-top: var(--space-lg);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    transition: gap 0.3s var(--ease-out);
}

.text-link:hover {
    gap: 20px;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-header {
        position: relative;
        top: 0;
        margin-bottom: var(--space-lg);
    }
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */
.expertise {
    padding: var(--space-section) var(--gutter);
    background: var(--bg-secondary);
}

.expertise-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), border-color 0.3s;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.3);
}

.expertise-card:hover::before {
    opacity: 1;
}

.card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-tertiary);
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    line-height: 1;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: var(--space-sm);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WORK SECTION - CONSISTENT CARD DESIGN
   ======================================== */
.work {
    padding: var(--space-section) var(--gutter);
}

.work-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
}

.work-projects {
    max-width: 1400px;
    margin: 0 auto;
}

.project {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project:last-child {
    border-bottom: none;
}

.project:nth-child(even) {
    direction: rtl;
}

.project:nth-child(even) > * {
    direction: ltr;
}

.project-content {
    padding: var(--space-lg);
}

.project-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.project-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.project-description {
    font-size: 1rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pure-white);
  padding: 16px 32px;
  min-height: 52px;
  border: 1px solid var(--medium-gray);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  touch-action: manipulation;
}

.project-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--rich-black);
    gap: 20px;
}

/* Consistent Project Mockup */
.project-visual {
    position: relative;
}

.project-mockup {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.6s var(--ease-out);
}

.project:hover .project-mockup {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.project-mockup img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.project-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
    filter: blur(20px);
}

@media (max-width: 1024px) {
    .project {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .project:nth-child(even) {
        direction: ltr;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--space-section) var(--gutter);
    background: var(--bg-secondary);
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 var(--space-md);
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--pure-white);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.testimonial-author cite {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--pure-white);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--silver);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    transition: all 0.3s var(--ease-out);
}

.testimonial-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--rich-black);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.testimonial-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-section {
    padding: var(--space-section) var(--gutter);
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: var(--space-xl);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--silver);
    margin-top: var(--space-md);
}

.contact-form {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s var(--ease-out);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-question {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--accent);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--pure-white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-input::placeholder {
    color: var(--silver);
}

.form-input.error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-input.valid {
    border-color: var(--accent);
    background-color: rgba(201, 169, 98, 0.05);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-out);
    display: none;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.loading {
    background: rgba(201, 169, 98, 0.1);
    color: var(--accent);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: var(--space-xl);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    width: 0%;
    transition: width 0.5s var(--ease-out);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  min-height: 52px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  touch-action: manipulation;
}

.btn-primary {
    background: var(--accent);
    color: var(--rich-black);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}

/* Hero Secondary CTA */
.hero-cta.secondary {
    background: transparent;
    color: var(--silver);
    border: 1px solid var(--medium-gray);
}

.hero-cta.secondary:hover {
    color: var(--pure-white);
    border-color: var(--silver);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
}

.footer-top {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxl) var(--gutter);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--rich-black) 100%);
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--pure-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.footer-subtitle {
    font-size: 1.25rem;
    color: var(--silver);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--pure-white);
  padding: 20px 40px;
  min-height: 60px;
  border: 1px solid var(--medium-gray);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  touch-action: manipulation;
  text-align: center;
}

.footer-email:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--rich-black);
    gap: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--gutter);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials {
    display: flex;
    gap: var(--space-md);
}

.social-link {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all 0.3s var(--ease-out);
  touch-action: manipulation;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--rich-black);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--silver);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-section: 80px;
    --space-xxl: 60px;
    --space-xl: 40px;
    --space-lg: 32px;
    --gutter: 20px;
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .header {
height: 70px;
padding: 0 var(--gutter);
}

.logo-img {
height: 50px;
}

.menu-toggle {
display: flex;
}

.hero {
min-height: auto;
padding: 100px var(--gutter) 60px;
}

.hero-bg-text {
font-size: clamp(4rem, 15vw, 12rem);
}

.hero-main {
grid-template-columns: 1fr;
gap: var(--space-lg);
}

.hero-text {
text-align: center;
}

.hero-label {
font-size: 10px;
margin-bottom: var(--space-sm);
}

.hero-title .title-line {
font-size: clamp(2rem, 8vw, 3rem);
}

.hero-description {
font-size: 0.95rem;
margin-bottom: var(--space-md);
}

.hero-cta-group {
flex-direction: column;
gap: var(--space-sm);
}

.hero-cta {
width: 100%;
justify-content: center;
padding: 14px 24px;
font-size: 13px;
}

.hero-visual {
order: -1;
margin-bottom: var(--space-md);
}

.hero-image-wrapper {
max-width: 280px;
transform: none;
}

.hero-image-wrapper:hover {
transform: none;
}

.scroll-indicator {
display: none;
}

.about {
padding: var(--space-section) var(--gutter);
}

.about-container {
grid-template-columns: 1fr;
gap: var(--space-lg);
}

.about-header {
position: relative;
top: 0;
margin-bottom: var(--space-md);
}

.about-title {
font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.about-narrative {
font-size: 1rem;
line-height: 1.8;
}

.expertise {
padding: var(--space-section) var(--gutter);
}

.expertise-header {
margin-bottom: var(--space-lg);
}

.expertise-grid {
grid-template-columns: 1fr;
gap: var(--space-md);
}

.expertise-card {
padding: var(--space-md);
}

.card-number {
font-size: 2rem;
top: var(--space-sm);
right: var(--space-sm);
}

.card-content h3 {
font-size: 1.1rem;
}

.work {
padding: var(--space-section) var(--gutter);
}

.work-header {
margin-bottom: var(--space-xl);
}

.project {
grid-template-columns: 1fr;
gap: var(--space-lg);
padding: var(--space-lg) 0;
}

.project:nth-child(even) {
direction: ltr;
}

.project-content {
padding: 0;
}

.project-category {
font-size: 10px;
}

.project-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-bottom: var(--space-sm);
}

.project-description {
font-size: 0.95rem;
margin-bottom: var(--space-md);
}

.project-link {
padding: 12px 20px;
font-size: 13px;
}

.project-mockup {
padding: 8px;
transform: none;
}

.project:hover .project-mockup {
transform: none;
}

.testimonials {
padding: var(--space-section) var(--gutter);
}

.testimonials-header {
margin-bottom: var(--space-lg);
}

.testimonial-slide {
padding: 0;
}

.testimonial-text {
font-size: 1.1rem;
margin-bottom: var(--space-lg);
}

.testimonial-nav {
  margin-top: var(--space-lg);
  gap: var(--space-sm);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}

.contact-section {
padding: var(--space-section) var(--gutter);
}

.contact-header {
margin-bottom: var(--space-lg);
}

.contact-form {
padding: var(--space-lg);
border-radius: 16px;
}

.form-question {
font-size: 1.1rem;
margin-bottom: var(--space-md);
}

.form-input {
padding: 14px 16px;
font-size: 0.95rem;
}

.progress-bar {
margin-top: var(--space-lg);
}

.footer-top {
min-height: auto;
padding: var(--space-xxl) var(--gutter);
}

.footer-title {
font-size: clamp(2rem, 6vw, 3.5rem);
margin-bottom: var(--space-md);
}

.footer-subtitle {
font-size: 1rem;
margin-bottom: var(--space-lg);
}

.footer-email {
font-size: 1rem;
padding: 16px 24px;
}

.footer-bottom {
flex-direction: column;
gap: var(--space-md);
padding: var(--space-md) var(--gutter);
}

.footer-socials {
  gap: var(--space-sm);
}

.social-link {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}

.footer-copyright {
font-size: 12px;
text-align: center;
}
}

@media (max-width: 480px) {
:root {
--space-section: 60px;
}

.hero {
padding: 90px var(--gutter) 50px;
}

.hero-title .title-line {
font-size: clamp(1.75rem, 9vw, 2.5rem);
}

.hero-image-wrapper {
max-width: 220px;
border-radius: 12px;
}

.about-narrative {
font-size: 0.95rem;
}

.expertise-card {
padding: var(--space-sm);
}

.project-link {
width: 100%;
justify-content: center;
}

.contact-form {
padding: var(--space-md);
}

.footer-email {
flex-direction: column;
gap: var(--space-sm);
text-align: center;
}
}
