/* ============================================
   CHERRY ASHLY ROADSHOWS — DESIGN SYSTEM
   Color Palette:
   #0B0F25 — Midnight Navy (primary dark)
   #CC5500 — Burnt Orange (accent)
   #EDE7D9 — Warm Ivory (light bg)
   #04471C — Forest Green (secondary accent)
   #F8CAA9 — Blush (highlight)
============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B0F25;
  --orange: #CC5500;
  --ivory: #EDE7D9;
  --green: #04471C;
  --blush: #F8CAA9;
  --white: #FFFFFF;
  --dark: #08090F;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --section-pad: 7rem;
  --container: 1320px;
  --gap: 2rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section-pad { padding: var(--section-pad) 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 500; }
h4 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

em { font-style: italic; color: var(--orange); }

p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(237, 231, 217, 0.75);
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.reveal-fade.is-visible { opacity: 1; }
.reveal-parallax img { transition: transform 0.1s linear; }

.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }
.delay-4 { transition-delay: 0.48s !important; }
.delay-5 { transition-delay: 0.60s !important; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border: 1.5px solid currentColor;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #a84400; border-color: #a84400; }

.btn-ghost {
  background: transparent;
  border-color: rgba(237, 231, 217, 0.4);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(237,231,217,0.07); }

.btn-light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy);
}
.btn-light:hover { background: var(--white); border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
}
.btn-dark:hover { background: #0f1530; border-color: #0f1530; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(11, 15, 37, 0.92);
  backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(237,231,217,0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,231,217,0.7);
  transition: color 0.3s;
}
.nav-links li a:hover { color: var(--ivory); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  transition: background 0.3s, color 0.3s;
}
.nav-links .nav-cta:hover { background: #a84400; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO VIDEO === */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No zoom animation for video — it already has motion */
  animation: none;
  transform: none;
}
/* Disable parallax on video */
.hero-video { will-change: auto; }


.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,15,37,0.55) 0%,
    rgba(11,15,37,0.7) 60%,
    rgba(11,15,37,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.2s var(--ease-out) both;
}
.hero-headline {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.4s var(--ease-out) both;
}
.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 0.6s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.8s var(--ease-out) both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  animation: fadeInUp 1s 1.2s var(--ease-out) both;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,231,217,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(237,231,217,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === STATEMENT === */
.statement {
  background: var(--ivory);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.statement .container { position: relative; z-index: 2; }
.statement-inner { max-width: 700px; }
.statement-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.statement-headline {
  color: var(--navy);
  margin-bottom: 2rem;
}
.statement-body {
  color: rgba(11,15,37,0.65);
  font-size: 1.1rem;
  max-width: 520px;
}
.statement-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  overflow: hidden;
}
.statement-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* === SERVICES PREVIEW === */
.services-preview { background: var(--dark); }
.section-header { margin-bottom: 3rem; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.section-title { color: var(--ivory); }
.section-title-dark { color: var(--navy); }

.services-scroll-track {
  display: flex;
  gap: 1.5px;
  overflow-x: auto;
  padding: 0 2rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.services-scroll-track::-webkit-scrollbar { display: none; }
.services-scroll-track:active { cursor: grabbing; }

.service-card {
  flex: 0 0 340px;
  background: rgba(237,231,217,0.04);
  border: 1px solid rgba(237,231,217,0.08);
  overflow: hidden;
  transition: border-color 0.3s;
  position: relative;
}
.service-card:hover { border-color: var(--orange); }
.service-card-img {
  height: 240px;
  overflow: hidden;
}
.service-card-img img {
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 2rem; }
.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.service-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  transition: letter-spacing 0.3s;
}
.service-link:hover { letter-spacing: 0.2em; }

/* === GALLERY MARQUEE === */
.gallery-marquee {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.marquee-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,15,37,0.45);
  backdrop-filter: blur(2px);
}
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  line-height: 1.4;
}
.marquee-track {
  position: absolute;
  inset: 0;
}
.marquee-inner {
  display: flex;
  height: 100%;
  gap: 4px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner img {
  height: 100%;
  width: 560px;
  flex-shrink: 0;
  object-fit: cover;
  filter: brightness(0.7);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STATS === */
.stats { background: var(--navy); border-top: 1px solid rgba(237,231,217,0.08); border-bottom: 1px solid rgba(237,231,217,0.08); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(237,231,217,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
}
.stat-num em {
  font-style: normal;
  color: var(--orange);
  font-size: 0.6em;
  vertical-align: super;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,231,217,0.45);
}

/* === CTA BAND === */
.cta-band {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-bg img {
  filter: brightness(0.3);
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,15,37,0.95) 40%, rgba(11,15,37,0.3));
}
.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.cta-band-content h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}
.cta-band-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(237,231,217,0.7);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(237,231,217,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.2rem;
}
.footer-brand p { font-size: 0.9rem; }
.footer-nav h4, .footer-contact h4 {
  color: rgba(237,231,217,0.4);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav ul a {
  font-size: 0.9rem;
  color: rgba(237,231,217,0.65);
  transition: color 0.3s;
}
.footer-nav ul a:hover { color: var(--ivory); }
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(237,231,217,0.65); transition: color 0.3s; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(237,231,217,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(237,231,217,0.3);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: 14rem 0 6rem;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  filter: brightness(0.22);
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,15,37,0.3), rgba(11,15,37,0.85));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: block;
}
.page-hero h1 { color: var(--ivory); }

/* === ABOUT PAGE === */
.about-intro { background: var(--ivory); padding: var(--section-pad) 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-intro-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-intro-text p { color: rgba(11,15,37,0.65); }
.about-intro-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--orange);
  pointer-events: none;
  z-index: -1;
}

.philosophy { background: var(--navy); padding: var(--section-pad) 0; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}
.philosophy-item {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(237,231,217,0.08);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.philosophy-item:hover::before { transform: scaleX(1); }
.philosophy-item:hover { background: rgba(204,85,0,0.05); }
.philosophy-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(237,231,217,0.07);
  line-height: 1;
  margin-bottom: 1rem;
}
.philosophy-item h3 { color: var(--ivory); font-size: 1.5rem; margin-bottom: 1rem; }
.philosophy-item p { font-size: 0.92rem; }

/* === SERVICES PAGE === */
.services-full { background: var(--navy); padding: var(--section-pad) 0; }
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  border-bottom: 1px solid rgba(237,231,217,0.06);
}
.service-section:nth-child(even) .service-section-img { order: -1; }
.service-section-img { overflow: hidden; }
.service-section-img img {
  height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.service-section:hover .service-section-img img { transform: scale(1.04); }
.service-section-body {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-section-body .service-num { font-size: 0.85rem; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 1.2rem; display: block; font-family: var(--font-display); }
.service-section-body h2 { color: var(--ivory); font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 1.2rem; }
.service-section-body p { margin-bottom: 2rem; }
.service-deliverables { margin-bottom: 2.5rem; }
.service-deliverables li {
  font-size: 0.88rem;
  color: rgba(237,231,217,0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(237,231,217,0.06);
  padding-left: 1.2rem;
  position: relative;
}
.service-deliverables li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

/* === WORK / PORTFOLIO === */
.work-grid-section { background: var(--dark); padding: var(--section-pad) 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.work-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(4) { grid-column: span 5; aspect-ratio: 16/9; }
.work-item:nth-child(5) { grid-column: span 3; aspect-ratio: 4/5; }
.work-item:nth-child(6) { grid-column: span 6; aspect-ratio: 16/9; }
.work-item:nth-child(7) { grid-column: span 6; aspect-ratio: 16/9; }
.work-item:nth-child(8) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(9) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(10) { grid-column: span 4; aspect-ratio: 4/5; }

.work-item img { transition: transform 0.7s var(--ease-out), filter 0.4s; }
.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,37,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-item:hover img { transform: scale(1.04); }
.work-item-meta h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 0.3rem; }
.work-item-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* === PROCESS PAGE === */
.process-section { background: var(--ivory); padding: var(--section-pad) 0; }
.process-steps { margin-top: 5rem; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(11,15,37,0.1);
  align-items: start;
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(11,15,37,0.1);
  line-height: 1;
  padding-top: 0.3rem;
}
.process-step-content h3 { color: var(--navy); font-size: 2.2rem; margin-bottom: 0.5rem; }
.process-step-content .step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}
.process-step-body p { color: rgba(11,15,37,0.6); font-size: 0.95rem; }
.process-step-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* === CONTACT PAGE === */
.contact-section { background: var(--ivory); padding: var(--section-pad) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1.5rem; font-size: clamp(2rem, 3vw, 3.5rem); }
.contact-info p { color: rgba(11,15,37,0.6); margin-bottom: 3rem; }
.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(11,15,37,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail h4 { color: rgba(11,15,37,0.4); margin-bottom: 0.3rem; }
.contact-detail a, .contact-detail p { color: var(--navy); font-size: 1rem; font-weight: 500; }
.contact-detail a:hover { color: var(--orange); }

.contact-form { background: var(--navy); padding: 3.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,231,217,0.45);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(237,231,217,0.04);
  border: 1px solid rgba(237,231,217,0.12);
  color: var(--ivory);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,231,217,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .statement-image { width: 30%; }
  .about-intro-grid { gap: 3rem; }
  .service-section-body { padding: 3rem; }
  .contact-grid { gap: 3rem; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step-img { display: none; }
}

@media (max-width: 900px) {
  :root { --section-pad: 5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(237,231,217,0.08); }
  .stat-item:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { aspect-ratio: 16/9; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .service-section { grid-template-columns: 1fr; min-height: auto; }
  .service-section:nth-child(even) .service-section-img { order: 0; }
  .service-section-img { aspect-ratio: 16/9; }
  .service-section-body { padding: 2.5rem; }
  .work-item:nth-child(n) { grid-column: span 12; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .statement-image { display: none; }
  .statement-inner { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1rem; }
  .nav-links .nav-cta { font-size: 0.85rem; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .hero { padding-bottom: 6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .hero-scroll-indicator { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
  .process-step-num { font-size: 3rem; }
  .gallery-marquee { height: 280px; }
}

/* === DARK BG UTILITY === */
.bg-dark { background: var(--dark); }
.bg-navy { background: var(--navy); }
.bg-ivory { background: var(--ivory); }
.color-navy { color: var(--navy); }
.color-ivory { color: var(--ivory); }
