/* ============================================================
   BENJAMIN CO//LAB — Global Styles
   Palette: #0d0d0d bg · #ffffff text · #EA6E43 accent
   ============================================================ */

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

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1c1c1c;
  --text: #ffffff;
  --text-muted: #888888;
  --accent: #EA6E43;
  --accent-hover: #d85f34;
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --nav-h: 72px;
  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ============================================================
   NAV
   ============================================================ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

#nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-link {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Cover viewport maintaining 16:9 */
  width: 100vw;
  height: 56.25vw;   /* 16:9 based on width */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 based on height */
  transform: translate(-50%, -50%);
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.1) 40%,
    rgba(13, 13, 13, 0.7) 80%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
  padding-bottom: clamp(60px, 10vh, 120px);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-slash {
  color: var(--accent);
}

.hero-tagline {
  margin-top: 1.5rem;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 5vh, 48px);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-title a:hover {
  color: var(--accent);
}

.work-subtitle {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-subtitle a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.work-subtitle a:hover {
  color: var(--accent);
}

a.work-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

/* ============================================================
   STATEMENT
   ============================================================ */

.section-statement {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--border);
}

.statement-text {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.3;
  max-width: 900px;
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
}

.statement-meta {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.statement-location {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location-pin::before {
  content: '// ';
  color: var(--accent);
}

.location-email {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.location-email:hover {
  color: var(--accent-hover);
}

.statement-highlight {
  color: var(--accent);
}

.statement-llc {
  font-size: 0.5em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  vertical-align: super;
  margin-left: 2px;
}

.statement-divider {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.statement-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.statement-btn-primary {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.statement-btn-primary:hover {
  color: var(--accent);
}

.statement-btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.statement-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   SERVICES
   ============================================================ */

.section-services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
}

.service-card {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.service-card:hover {
  background: #171717;
}

.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #000;
}

.service-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.service-body {
  padding: 2rem;
  flex: 1;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.service-name {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-name a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-name a:hover {
  color: var(--accent);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  color: var(--text-muted);
  border-radius: 2px;
}

/* ============================================================
   LUXURY HOSPITALITY
   ============================================================ */

.section-hospitality {
  position: relative;
  padding: clamp(100px, 15vw, 200px) 0;
  overflow: hidden;
}

.hospitality-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/Screenshot 2026-04-01 at 12.45.37 PM.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: saturate(0.7);
}

.section-hospitality:hover .hospitality-bg {
  transform: scale(1);
}

.hospitality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 50%,
    rgba(13,13,13,0.88) 100%
  );
}

.hospitality-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hospitality-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.75rem 0 1.25rem;
}

.hospitality-desc {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hospitality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hospitality-tags span {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  color: rgba(255,255,255,0.6);
  border-radius: 2px;
}

.hospitality-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: background 0.25s, gap 0.25s;
  letter-spacing: 0.02em;
}

.hospitality-btn:hover {
  background: var(--accent-hover);
  gap: 1.5rem;
}

/* ============================================================
   BIO
   ============================================================ */

.section-bio {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--border);
}

.bio-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.bio-img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.bio-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.bio-img:hover {
  filter: grayscale(0%);
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.bio-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.5rem 0 0.5rem;
}

.bio-role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.bio-text {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
}

.bio-text em {
  font-style: italic;
  color: var(--accent);
}

.bio-collab {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  max-width: 680px;
}

.bio-collab-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.bio-collab-list {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}

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

  .bio-img-wrap {
    position: static;
    max-width: 280px;
  }
}

/* ============================================================
   FEATURED WORK
   ============================================================ */

.section-work {
  padding: clamp(80px, 12vw, 160px) 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 4px;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-item.work-large {
  grid-column: span 2;
}

.work-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item:hover .work-img {
  transform: scale(1.06);
}

.work-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-item:hover .work-info {
  opacity: 1;
}

.work-client {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.work-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.work-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   BRANDS
   ============================================================ */

.section-brands {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}

.brand-item {
  flex: 1;
  min-width: 160px;
  padding: 2.5rem 2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition: color 0.3s, background 0.3s;
}

.brand-item:last-child { border-right: none; }

.brand-item:hover {
  color: var(--text);
  background: rgba(234, 110, 67, 0.06);
}

/* ============================================================
   CREATIVE ADVENTURE HIGHLIGHTS
   ============================================================ */

.section-highlights {
  padding: clamp(100px, 15vw, 200px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.highlights-intro {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 1.25rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover {
  border-color: rgba(234, 110, 67, 0.3);
  transform: translateY(-4px);
}

.highlight-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover .highlight-img {
  transform: scale(1.05);
}

.highlight-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-partner {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.highlight-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.highlight-desc em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* Staggered reveal for highlights */
.highlights-grid .highlight-card:nth-child(1).reveal { transition-delay: 0s; }
.highlights-grid .highlight-card:nth-child(2).reveal { transition-delay: 0.1s; }
.highlights-grid .highlight-card:nth-child(3).reveal { transition-delay: 0.2s; }
.highlights-grid .highlight-card:nth-child(4).reveal { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   MID-PAGE CTA
   ============================================================ */

.section-cta {
  padding: clamp(40px, 8vw, 80px) 0;
  text-align: center;
}

.cta-inner {
  display: flex;
  justify-content: center;
}

.cta-mid {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cta-mid:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   CONTACT
   ============================================================ */

.section-contact {
  padding: clamp(100px, 15vw, 200px) 0;
}

.contact-inner {
  max-width: 720px;
}

.contact-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 1rem 0 1.5rem;
}

.contact-headline em {
  font-style: italic;
  color: var(--accent);
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, gap 0.25s;
  margin-bottom: 2.5rem;
}

.cta-btn:hover {
  background: var(--accent);
  color: #fff;
  gap: 1.5rem;
}

/* Contact Form */
.contact-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.875rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select option {
  background: var(--surface2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, gap 0.25s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent);
  color: #fff;
  gap: 1.5rem;
}

.form-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.5rem;
}

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

.contact-socials {
  display: flex;
  gap: 2rem;
}

.contact-socials a {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-socials a:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-email {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer-email:hover {
  border-color: var(--accent);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered reveal for grids */
.services-grid .service-card:nth-child(1).reveal { transition-delay: 0s; }
.services-grid .service-card:nth-child(2).reveal { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3).reveal { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4).reveal { transition-delay: 0.3s; }

.work-grid .work-item:nth-child(1).reveal { transition-delay: 0s; }
.work-grid .work-item:nth-child(2).reveal { transition-delay: 0.08s; }
.work-grid .work-item:nth-child(3).reveal { transition-delay: 0.16s; }
.work-grid .work-item:nth-child(4).reveal { transition-delay: 0.24s; }
.work-grid .work-item:nth-child(5).reveal { transition-delay: 0.32s; }
.work-grid .work-item:nth-child(6).reveal { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

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

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .work-item.work-large {
    grid-column: span 2;
  }

  .brands-row {
    flex-direction: column;
  }

  .brand-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .brand-item:last-child { border-bottom: none; }

  .statement-location {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .statement-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hospitality-tags {
    gap: 0.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .hero-scroll {
    display: none;
  }

  .section-statement {
    padding: clamp(60px, 10vw, 100px) 0;
  }

  .statement-text {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 2.5rem;
  }

  .statement-meta {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .meta-number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .bio-inner {
    gap: 2rem;
  }

  .bio-name {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .bio-text {
    font-size: 0.95rem;
  }

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

  .service-body {
    padding: 1.25rem;
  }

  .service-name {
    font-size: 1.15rem;
  }

  .service-desc {
    font-size: 0.85rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .work-item.work-large {
    grid-column: span 1;
  }

  .work-info {
    opacity: 1;
  }

  .hospitality-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hospitality-btn {
    font-size: 0.85rem;
    padding: 0.85rem 1.5rem;
  }

  .contact-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .contact-form {
    width: 100%;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-email {
    font-size: 0.8rem;
  }

  .mobile-link {
    font-size: 1.5rem;
  }

  .section-services,
  .section-work,
  .section-brands,
  .section-bio {
    padding: clamp(60px, 10vw, 100px) 0;
  }
}
