/* ============================================
   MOLONEY CONTRACTORS — Mockup
   Dark glassmorphism · black / orange / white
   ============================================ */

:root {
  /* Palette */
  --bg-0: #050505;
  --bg-1: #0c0c0d;
  --bg-2: #121214;
  --ink: #f4f1ec;
  --ink-soft: rgba(244, 241, 236, 0.72);
  --ink-mute: rgba(244, 241, 236, 0.42);

  /* Logo orange */
  --orange: #e89a3c;
  --orange-hot: #ff7a18;
  --orange-deep: #b87122;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-strong: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7),
                  0 1px 0 0 rgba(255, 255, 255, 0.06) inset;

  /* Type */
  --f-display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  /* Easing */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   ATMOSPHERIC BACKDROP
   ============================================ */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-0);
}

.bg-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 45% 35% at 18% 22%, rgba(232, 154, 60, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 75%, rgba(255, 122, 24, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 35% 25% at 50% 50%, rgba(184, 113, 34, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(232, 154, 60, 0.10) 0%, transparent 60%);
  filter: blur(40px);
  animation: meshDrift 30s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -2%) scale(1.05); }
  100% { transform: translate(-2%, 3%) scale(0.98); }
}

.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, transparent, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse 100% 100% at 50% 100%, transparent 30%, var(--bg-0) 100%);
}

/* ============================================
   GLASS PRIMITIVES
   ============================================ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  position: relative;
  isolation: isolate;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.02) 40%,
    rgba(232,154,60,0.12) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.glass-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.8),
    0 1px 0 0 rgba(255, 255, 255, 0.08) inset;
  border-radius: 28px;
  position: relative;
  isolation: isolate;
}

.glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.04) 35%,
    rgba(232,154,60,0.20) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 var(--pad);
  display: flex;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max);
  padding: 12px 14px 12px 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled .nav-inner {
  background: rgba(8, 8, 8, 0.55);
  padding: 8px 10px 8px 18px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
  transition: height 0.4s var(--ease);
}

.nav.scrolled .nav-brand img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--bg-0);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 24px -10px rgba(232, 154, 60, 0.7), 0 0 0 0 rgba(232, 154, 60, 0.4);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(232, 154, 60, 0.9), 0 0 0 4px rgba(232, 154, 60, 0.15);
}

.nav-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-0);
  position: relative;
}

.nav-cta .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--bg-0);
  opacity: 0.4;
  animation: pulse 1.8s var(--ease) infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   MOBILE BURGER + MENU
   ============================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.3s;
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links a {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}

.mobile-menu-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85) contrast(1.05);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.1) 30%, rgba(5,5,5,0.85) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.1) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.hero-line {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  white-space: nowrap;
}

.hero-title span {
  display: block;
}

.hero-title .accent {
  background: linear-gradient(110deg, var(--orange) 0%, var(--orange-hot) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: fadeUp 1.1s var(--ease) forwards, shimmer 6s linear infinite;
  animation-delay: var(--d, 0ms), 1.1s;
}

@keyframes shimmer {
  to { background-position: 200% 0; }
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--bg-0);
  box-shadow: 0 14px 40px -14px rgba(232, 154, 60, 0.8);
}

.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -14px rgba(255, 122, 24, 0.95);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  max-width: 720px;
  text-align: center;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.meta-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}

.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes scrollDot {
  0%, 20% { transform: translateY(0); opacity: 1; }
  80%, 100% { transform: translateY(18px); opacity: 0; }
}

/* Hero reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(90px, 12vw, 160px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(50px, 7vw, 80px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

.h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.h2 em {
  font-style: italic;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--orange);
  position: relative;
}

.section-lede {
  font-size: 1.07rem;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.6;
}

/* ============================================
   SECTION WATERMARK
   ============================================ */
.section-watermark {
  position: absolute;
  top: clamp(40px, 7vw, 100px);
  right: clamp(-20px, -2vw, 20px);
  width: clamp(260px, 30vw, 460px);
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: blur(0.4px) drop-shadow(0 0 30px rgba(232, 154, 60, 0.15));
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}

.section-head,
.services-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .section-watermark {
    opacity: 0.035;
    right: -40px;
    top: 20px;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.svc {
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.5s var(--ease), border-color 0.5s;
  cursor: default;
  overflow: hidden;
}

.svc::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,154,60,0.25), transparent 70%);
  filter: blur(20px);
  bottom: -100px;
  right: -100px;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  z-index: -1;
}

.svc:hover {
  transform: translateY(-4px);
}

.svc:hover::after {
  opacity: 1;
  transform: translate(-20px, -20px);
}

.svc-num {
  color: var(--orange);
  font-size: 0.78rem;
}

.svc h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}

.svc p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-top: 4px;
}

.svc-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(232, 154, 60, 0.12);
  color: var(--orange);
  border: 1px solid rgba(232, 154, 60, 0.22);
  margin-top: 10px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-1);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  isolation: isolate;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.85) saturate(0.95);
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.g-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.g-item:hover .g-meta {
  transform: translateY(0);
  opacity: 1;
}

.g-meta .mono { color: var(--orange); }
.g-meta span:last-child {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.about-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-lab {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-card {
  position: absolute;
  overflow: hidden;
  padding: 0;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-img-card:first-of-type {
  top: 0;
  right: 0;
  width: 78%;
  height: 70%;
  transform: rotate(2deg);
  z-index: 1;
}

.about-img-card--alt {
  bottom: 0;
  left: 0;
  width: 56%;
  height: 50%;
  transform: rotate(-3deg);
  z-index: 2;
}

.about-img-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
}

.about-img-tag .mono {
  color: var(--orange);
  font-size: 0.68rem;
}

/* ============================================
   PROCESS
   ============================================ */
.proc-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: proc;
}

.proc {
  padding: 32px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.proc-num {
  color: var(--orange);
  font-size: 0.72rem;
}

.proc h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.proc p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.words-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.word {
  padding: 32px 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.word:nth-child(1) { grid-column: span 3; }
.word:nth-child(2) { grid-column: span 3; }
.word:nth-child(3) { grid-column: span 2; }
.word:nth-child(4) { grid-column: span 2; }
.word:nth-child(5) { grid-column: span 2; }

.word-mark {
  font-family: var(--f-display);
  font-size: 4.5rem;
  color: var(--orange);
  line-height: 0.7;
  height: 30px;
  opacity: 0.85;
}

.word blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}

.word figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.word figcaption strong {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.word figcaption span {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  max-width: 1200px;
}

.contact-card {
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,154,60,0.32), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left .kicker { margin-bottom: 18px; }
.contact-left .h2 { margin-bottom: 18px; }

.contact-left p {
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(232,154,60,0.08);
  border: 1px solid rgba(232,154,60,0.25);
  margin-bottom: 14px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.contact-phone:hover {
  background: rgba(232,154,60,0.14);
  border-color: rgba(232,154,60,0.45);
  transform: translateY(-2px);
}

.contact-phone .mono {
  color: var(--orange);
  font-size: 0.7rem;
}

.phone-big {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.3s, border-color 0.3s;
}

.contact-email:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,0.2);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: vertical;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-mute);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.06);
}

.contact-form select { appearance: none; cursor: pointer; }

.form-success {
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(232, 154, 60, 0.12);
  border: 1px solid rgba(232, 154, 60, 0.3);
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px var(--pad) 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
  height: 110px;
  width: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  color: var(--ink-mute);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 32ch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-h {
  color: var(--orange);
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-mute);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-on-scroll.in {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { justify-content: space-between; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { height: 460px; }

  .proc-grid { grid-template-columns: repeat(2, 1fr); }

  .words-grid { grid-template-columns: 1fr; }
  .word:nth-child(n) { grid-column: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 2; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .nav { top: 10px; }
  .nav-inner { padding: 8px 8px 8px 14px; }
  .nav-brand img { height: 46px; }
  .nav.scrolled .nav-brand img { height: 40px; }
  .nav-cta { padding: 8px 14px; font-size: 0.82rem; }

  .hero { padding-top: 100px; }
  .hero-eyebrow { padding: 8px 14px; gap: 10px; font-size: 0.7rem; }
  .hero-meta { padding: 16px 18px; gap: 16px; }
  .meta-divider { display: none; }

  .proc-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: 1; grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
