:root {
  --orange: #f2571c;
  --orange-light: #ff8a4d;
  --dark: #0b0b0d;
  --dark-2: #151316;
  --dark-3: #1e1b1f;
  --cream: #f7f3ee;
  --gray: #a8a3a0;
  --radius: 18px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .eyebrow, .btn, .statement-text {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* Buttons */
.btn {
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 110px 200% at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 138, 77, 0.5), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn > span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(242, 87, 28, 0.35);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 87, 28, 0.45);
}

.btn-outline {
  border: 1.5px solid rgba(247, 243, 238, 0.35);
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.logo { height: 40px; width: auto; }

.hero-logo {
  height: 180px;
  margin-bottom: 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 0 40px;
}

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

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 30s infinite;
}

.hero-bg-img:nth-child(1) { animation-delay: 0s; }
.hero-bg-img:nth-child(2) { animation-delay: 5s; }
.hero-bg-img:nth-child(3) { animation-delay: 10s; }
.hero-bg-img:nth-child(4) { animation-delay: 15s; }
.hero-bg-img:nth-child(5) { animation-delay: 20s; }
.hero-bg-img:nth-child(6) { animation-delay: 25s; }

@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  14%  { opacity: 1; }
  18%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.88);
  background-image: radial-gradient(ellipse 60% 50% at 50% 15%, rgba(242, 87, 28, 0.14), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-inner h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-inner h1 .accent {
  font-weight: 600;
  background-image: linear-gradient(45deg, var(--orange), var(--orange-light), var(--orange), var(--orange-light));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accentShift 4s ease infinite;
}

@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-divider {
  width: 90px;
  height: 3px;
  margin: 20px 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  animation: dividerPulse 1.8s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* Services */
.services {
  padding: 100px 0 60px;
  background: var(--dark-2);
}

.section-lead {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.text-orange {
  color: var(--orange);
}

.services-lead {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.services-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.service-card {
  width: 100%;
  max-width: 620px;
  margin: 0 24px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: left;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  position: sticky;
  overflow: hidden;
}

.service-card[data-index="0"] { top: 100px; z-index: 1; }
.service-card[data-index="1"] { top: 150px; z-index: 2; }
.service-card[data-index="2"] { top: 200px; z-index: 3; }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 200px 200% at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 138, 77, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(242, 87, 28, 0.12);
  color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 32px; height: 32px; }

.service-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-text p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* Statement */
.statement {
  padding: 110px 0;
  background: var(--dark);
  position: relative;
}

.statement-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.statement-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.statement-text {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.statement-text-lg {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
}

.statement-text span {
  color: var(--orange);
  font-style: italic;
}

/* Studio */
.studio {
  padding: 100px 0;
  background: var(--dark-2);
}

.studio-text {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.studio-text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 8px 0 20px;
}

.studio-text p {
  color: var(--gray);
  font-size: 1.05rem;
}

.studio-gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.studio-gallery {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: studioGalleryLoop 30s linear infinite;
}

.studio-gallery img {
  width: clamp(220px, 27vw, 360px);
  height: 320px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.studio-gallery img:hover { transform: scale(1.03); }

@keyframes studioGalleryLoop {
  to { transform: translateX(var(--gallery-loop-width)); }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.testimonials-lead {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark-2);
  padding: 32px 44px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonials-grid img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(242, 87, 28, 0.2), transparent 70%),
    var(--dark-2);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.final-cta .tagline {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--orange-light);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
}

/* Footer */
.site-footer {
  padding: 50px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--gray);
}

.footer-logo-col {
  width: 50%;
  display: flex;
  align-items: center;
}

.logo-footer { height: 110px; width: auto; opacity: 0.9; }

.footer-social-col {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-item svg { width: 22px; height: 22px; flex-shrink: 0; }

.footer-social-item:hover {
  color: var(--orange-light);
  transform: translateX(4px);
}

.copy {
  display: block;
  text-align: center;
  margin-top: 40px;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  opacity: 0.7;
  color: var(--gray);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .statement-inner { grid-template-columns: 1fr; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-card { padding: 26px 22px; gap: 18px; }
  .service-card[data-index="0"] { top: 80px; }
  .service-card[data-index="1"] { top: 115px; }
  .service-card[data-index="2"] { top: 150px; }
}

@media (max-width: 520px) {
  .studio-gallery img { height: 260px; }
}
