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

:root {
  --bg:        #ffffff;
  --bg-soft:   #f4f4f2;
  --bg-mid:    #eaeae6;
  --card-bg:   #f9f9f7;
  --border:    #e0e0da;
  --ink:       #1a1a18;
  --ink-mid:   #4a4a46;
  --muted:     #8a8a84;
  --accent:    #e83000;
  --accent2:   #ff6b3d;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

/* ── SOCIAL BAR ── */
.social-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
}

.social-bar .logo-sm {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.social-bar .logo-sm span { color: var(--accent); }

.social-links { display: flex; gap: 6px; align-items: center; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--bg-soft);
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); background: rgba(232,48,0,0.06); }
.social-links a svg { width: 16px; height: 16px; fill: currentColor; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 56px;
  padding-top: 56px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(232,48,0,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(232,48,0,0.08) 0%, transparent 60%),
    var(--ink);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 28px;
  color: #ffffff;
}
.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-sub {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-primary:hover { background: #c82800; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ── SECTION BASE ── */
section { padding: 96px 24px; }

.section-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 0 40px;
  color: #fff;
}
.ticker-track span.dot { color: rgba(255,255,255,0.45); padding: 0 4px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services { background: var(--bg-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 52px;
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: var(--card-bg); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(232,48,0,0.1);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(232,48,0,0.2); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ── GALLERY ── */
#work { background: var(--bg); }

.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.media-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 8px;
}

.media-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.media-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.media-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.media-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.media-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.media-item:nth-child(5) { grid-column: span 5; grid-row: span 3; }
.media-item:nth-child(6) { grid-column: span 3; grid-row: span 3; }

.media-item img, .media-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.media-item:hover img, .media-item:hover video { transform: scale(1.05); }

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.media-item:hover .media-overlay { opacity: 1; }

.media-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.play-btn svg { width: 18px; height: 18px; fill: var(--accent); margin-left: 3px; }
.media-item:hover .play-btn { background: var(--accent); border-color: var(--accent); }
.media-item:hover .play-btn svg { fill: white; }

.placeholder-tile {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pt-1 { background: linear-gradient(135deg, #e8e8e4 0%, #d4d0c8 100%); }
.pt-2 { background: linear-gradient(135deg, #e4e8e4 0%, #ccd4cc 100%); }
.pt-3 { background: linear-gradient(135deg, #e4e4f0 0%, #cccce0 100%); }
.pt-4 { background: linear-gradient(135deg, #f0ece0 0%, #e0d8c4 100%); }
.pt-5 { background: linear-gradient(135deg, #f0e4e0 0%, #e0ccc8 100%); }
.pt-6 { background: linear-gradient(135deg, #e0eaf0 0%, #c8d8e4 100%); }

.tile-icon { font-size: 32px; opacity: 0.4; }
.tile-add-label {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.3);
  font-family: var(--font-heading);
}

/* ── PROCESS ── */
#process { background: var(--bg-soft); }

.process-steps {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: all 0.3s;
}
.step:first-child { border-top: 1px solid var(--border); }
.step:hover { padding-left: 8px; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-body p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 520px;
}

/* ── RESULTS ── */
#results {
  background: var(--bg-mid);
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 64px;
}

.number-card {
  padding: 48px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.number-card:hover { background: var(--card-bg); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.number-card .big-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.number-card p {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ── CTA ── */
#contact {
  background: var(--ink);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: 'GROW';
  font-family: var(--font-display);
  font-size: clamp(120px, 25vw, 300px);
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

#contact .section-label { color: var(--accent2); justify-content: center; }
#contact .section-label::before { background: var(--accent2); }

#contact h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 24px;
}
#contact p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-dark:hover { background: #c82800; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }

footer p { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding-bottom: 80px; }
  .hero h1 { font-size: clamp(60px, 18vw, 90px); }
  section { padding: 72px 20px; }
  .media-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .media-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .media-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .social-bar { padding: 0 16px; }
  .social-links a { width: 32px; height: 32px; }
  footer { flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
