/* ==========================================================================
   BRANDING BY VICTOR — Design System
   Dark luxury. Black, white, restraint.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-elevated-2: #161616;
  --line: rgba(245, 244, 241, 0.14);
  --line-soft: rgba(245, 244, 241, 0.07);
  --text: #f5f4f1;
  --text-muted: #a3a19b;
  --text-faint: #6b6a65;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  --radius-sm: 4px;
  --radius-md: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
input, textarea { background: none; }

html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--text); color: var(--bg); }

:focus-visible {
  outline: 1.5px solid var(--text);
  outline-offset: 4px;
}

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; will-change: transform; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor-dot { width: 5px; height: 5px; background: var(--text); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(245,244,241,0.5);
  transition: width 0.25s var(--ease-soft), height 0.25s var(--ease-soft), opacity 0.25s var(--ease-soft), border-color .25s;
}
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: var(--text); }
.cursor-ring.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease-lux), visibility 0.8s var(--ease-lux);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-mark { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; animation: pulseMark 1.8s var(--ease-soft) infinite; }
.preloader-logo { width: 100%; height: 100%; object-fit: cover; }
@keyframes pulseMark { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.92); opacity: 0.75; } }
.preloader-bar { width: 160px; height: 1px; background: var(--line); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 0%; background: var(--text); animation: loadBar 1.6s var(--ease-lux) forwards; }
@keyframes loadBar { to { width: 100%; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.5s var(--ease-lux), background-color 0.4s var(--ease-soft), color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  white-space: nowrap;
  position: relative;
}
.btn-solid { background: var(--text); color: var(--bg); border: 1px solid var(--text); }
.btn-solid:hover { background: var(--bg); color: var(--text); box-shadow: 0 0 0 1px var(--text) inset, 0 0 34px rgba(245,244,241,0.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--text); background: rgba(245,244,241,0.06); transform: translateY(-2px); }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  display: block;
}
.eyebrow::before { content: '—'; margin-right: 0.6em; color: var(--text-faint); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 20ch;
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; border-top: 1px solid var(--line-soft); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.view-all { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; padding-bottom: 2px; border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease-soft), gap 0.3s var(--ease-soft); }
.view-all:hover { border-color: var(--text); gap: 0.8rem; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.5s var(--ease-lux), background-color 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux), backdrop-filter 0.5s var(--ease-lux);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 1rem 0;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-soft);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0%;
  background: var(--text); transition: width 0.4s var(--ease-lux);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.7rem 1.5rem; }

.menu-toggle { display: none; width: 30px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; }
.menu-toggle span { display: block; height: 1px; width: 100%; background: var(--text); transition: transform 0.4s var(--ease-lux), opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; top: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.mobile-nav-links a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.mobile-cta { margin-top: 0.5rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 6rem; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center right; transform: scale(1.08); animation: heroZoomOut 2.4s var(--ease-lux) forwards; }
@keyframes heroZoomOut { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.86) 32%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.65) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.1) 70%, rgba(10,10,10,0.95) 100%);
}

.hero-badge {
  position: absolute; right: clamp(1.5rem, 6vw, 6rem); top: 50%; transform: translateY(-50%);
  width: clamp(120px, 13vw, 190px); height: clamp(120px, 13vw, 190px);
  color: rgba(245,244,241,0.85);
  display: none;
  align-items: center; justify-content: center;
}
.hero-badge-svg { width: 100%; height: 100%; animation: spinBadge 22s linear infinite; text-transform: uppercase; }
@keyframes spinBadge { to { transform: rotate(360deg); } }
.hero-badge-center {
  position: absolute; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; color: var(--text);
}

.hero-inner { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9.2vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(110%); animation: heroLineIn 1.1s var(--ease-lux) forwards; }
.hero-title .line:nth-child(1) span { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.28s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.41s; }
@keyframes heroLineIn { to { transform: translateY(0); } }

.hero-desc { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--text-muted); max-width: 34ch; margin-bottom: 2.4rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; right: var(--gutter); bottom: 2.6rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
}
.scroll-label { font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: var(--line); position: relative; overflow: hidden; }
.scroll-line i { position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--text); animation: scrollDrip 2.2s var(--ease-soft) infinite; }
@keyframes scrollDrip { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

@media (min-width: 900px) { .hero-badge { display: flex; } }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.service-card {
  background: var(--bg);
  padding: 2.4rem 1.9rem;
  transition: background-color 0.5s var(--ease-soft);
}
.service-card:hover { background: var(--bg-elevated); }
.service-icon { width: 34px; height: 34px; margin-bottom: 1.6rem; color: var(--text); transition: transform 0.5s var(--ease-lux); }
.service-card:hover .service-icon { transform: translateY(-4px); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 0.6rem; }
.service-desc { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.55; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CASES
   ========================================================================== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.case-card { display: block; }
.case-media {
  display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}
.case-image, .case-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux), opacity 0.6s ease; }
.case-video { opacity: 0; }
.case-video.is-active { opacity: 1; }
.case-media:hover .case-image, .case-media:hover .case-video { transform: scale(1.07); }
.case-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.75) 100%); transition: background-color 0.4s; }
.case-number { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; color: rgba(245,244,241,0.85); background: rgba(10,10,10,0.45); padding: 0.3rem 0.6rem; border: 1px solid rgba(245,244,241,0.2); backdrop-filter: blur(4px); }
.case-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.85);
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid rgba(245,244,241,0.55);
  background: rgba(10,10,10,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  opacity: 0; transition: opacity 0.4s var(--ease-soft), transform 0.5s var(--ease-lux), background-color 0.3s;
  z-index: 2;
}
.case-media:hover .case-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.case-play:hover { background: var(--text); color: var(--bg); }
.case-caption { padding-top: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.case-category { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.02em; }
.case-title-link { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.case-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.case-arrow { flex-shrink: 0; transition: transform 0.4s var(--ease-lux); }
.case-title-link:hover .case-arrow { transform: translateX(6px); }

@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-paragraphs { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0 2.2rem; max-width: 46ch; }
.about-paragraphs p { color: var(--text-muted); font-weight: 300; font-size: 1.02rem; }
.about-media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-sm); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 3vw, 2.4rem); counter-reset: step; }
.process-card { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.process-number { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-faint); display: block; margin-bottom: 1.4rem; }
.process-icon { width: 30px; height: 30px; margin-bottom: 1.6rem; color: var(--text); }
.process-icon svg { width: 100%; height: 100%; }
.process-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.process-desc { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.55; }

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.testimonial-card { padding: 2.4rem 2.2rem; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: var(--bg-elevated); display: flex; flex-direction: column; gap: 1.6rem; }
.testimonial-quote { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; line-height: 1.55; }
.testimonial-quote::before { content: '“'; }
.testimonial-quote::after { content: '”'; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-author { font-size: 0.86rem; font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 900px) { .testimonials-track { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-inner { max-width: 860px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.7rem 0; text-align: left;
}
.faq-question span:first-child { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.4s var(--ease-lux), opacity 0.3s; }
.faq-icon::before { width: 100%; height: 1px; }
.faq-icon::after { width: 1px; height: 100%; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-lux); }
.faq-answer p { padding-bottom: 1.7rem; color: var(--text-muted); font-weight: 300; max-width: 62ch; font-size: 0.95rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; padding: clamp(5rem, 11vw, 10rem) 0; overflow: hidden; border-top: 1px solid var(--line-soft); }
.cta-band-media { position: absolute; inset: 0; z-index: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.55); transform: scale(1.02); }
.cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.85) 100%); }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.1; letter-spacing: -0.01em; max-width: 16ch; margin-bottom: 0.9rem; }
.cta-desc { color: var(--text-muted); font-weight: 300; max-width: 40ch; }

@media (max-width: 700px) { .cta-band-inner { flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form-inner { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(2.5rem, 6vw, 6rem); }
.contact-form-head .section-title { margin-bottom: 1rem; }
.contact-form-desc { color: var(--text-muted); font-weight: 300; max-width: 34ch; }

.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: 0.6rem; }
.form-field label { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.form-field input, .form-field textarea {
  border: none; border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.1rem;
  font-size: 1rem;
  transition: border-color 0.35s var(--ease-soft);
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--text); outline: none; }
.form-submit { align-self: flex-start; margin-top: 0.6rem; min-width: 180px; }
.form-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-status { font-size: 0.88rem; min-height: 1.2em; color: var(--text-muted); }
.form-status.is-success { color: var(--text); }
.form-status.is-error { color: #e07a6b; }

@media (max-width: 860px) { .contact-form-inner { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.footer-company { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.footer-slogan { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.2rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s var(--ease-soft); }
.footer-nav a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer-contact a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s var(--ease-soft); }
.footer-contact a:hover { color: var(--text); }
.footer-social { display: flex; gap: 0.9rem; margin-top: 0.4rem; }
.footer-social a, .social-static { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: border-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft); }
.footer-social a:hover { border-color: var(--text); color: var(--text); }
.social-static { opacity: 0.55; }

.footer-bottom { border-top: 1px solid var(--line-soft); padding: 1.6rem 0 2.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.8rem; color: var(--text-faint); }
.footer-legal-sep { margin: 0 0.5em; }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ==========================================================================
   RESPONSIVE — HEADER NAV COLLAPSE
   ========================================================================== */
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   MISC RESPONSIVE TYPE
   ========================================================================== */
@media (max-width: 560px) {
  .btn { padding: 0.9rem 1.6rem; font-size: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
