/* =============================================
   BASE & RESET
   ============================================= */

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

:root {
  --bg: #f7f5f0;
  --bg-2: #eeeae2;
  --bg-3: #e5e1d8;
  --border: #d4cfc6;
  --text: #1a1714;
  --text-muted: #6b6660;
  --text-dim: #9c9890;
  --accent: #e8401c;
  --accent-bright: #ff5a30;
  --green: #1fa869;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
  --max-width: 1100px;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* =============================================
   LAYOUT
   ============================================= */

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

/* =============================================
   NAVIGATION
   ============================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.7;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--text);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
}

.btn-dark:hover {
  background: #2d2a27;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.text-link {
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
}

.text-link:hover {
  opacity: 0.7;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,64,28,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,64,28,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

/* =============================================
   ABOUT SECTION
   ============================================= */

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

.about-body {
  max-width: 620px;
}

.about-body h2 {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-body .text-link {
  display: inline-block;
  margin-top: 0.5rem;
}

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

.services {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-2);
  padding: 2.5rem;
}

.service-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CTA BAND
   ============================================= */

.cta-band {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-note {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

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

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

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

footer span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

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

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */

.page-header {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.page-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.page-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* =============================================
   WORK PAGE
   ============================================= */

.work-grid-section {
  padding: 5rem 0;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0d;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-1 { background: linear-gradient(135deg, #c9d4e8, #a8b8d8); }
.thumb-2 { background: linear-gradient(135deg, #c9e8d4, #a8d8bc); }
.thumb-3 { background: linear-gradient(135deg, #e8c9c9, #d8a8a8); }
.thumb-4 { background: linear-gradient(135deg, #e8e0c9, #d8cca8); }
.thumb-5 { background: linear-gradient(135deg, #c9dce8, #a8cad8); }
.thumb-6 { background: linear-gradient(135deg, #dcc9e8, #caa8d8); }

.work-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.2s ease;
}

.work-thumb:hover::before {
  background: rgba(0,0,0,0.25);
}

.play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  z-index: 1;
  padding-left: 3px;
}

.work-thumb:hover .play-btn {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.work-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.work-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.work-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   ACTING PAGE
   ============================================= */

.acting-bio {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.bio-photo {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-photo span {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio-text h2 {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.bio-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.bio-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.credits {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

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

.credit-category h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.credit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credit-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
}

.credit-list li:last-child {
  border-bottom: none;
}

.credit-title {
  font-size: 0.9rem;
  color: var(--text);
}

.credit-role {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: right;
  flex-shrink: 0;
}

.specs {
  padding: 6rem 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.spec-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.spec-value {
  font-size: 0.95rem;
  color: var(--text);
}

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

.contact-section {
  padding: 6rem 0;
}

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

.contact-form-col h2,
.contact-info-col h2 {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

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

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.contact-value {
  font-size: 1rem;
  color: var(--text);
}

a.contact-value:hover {
  color: var(--accent);
}

.social-links h3 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.social-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

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

.contact-note p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav ul {
    gap: 1.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .credits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .spec-item:nth-child(2) {
    border-right: none;
  }

  .spec-item:nth-child(3),
  .spec-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-photo {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 1.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  nav ul li a {
    font-size: 0.8rem;
  }

  nav ul {
    gap: 1rem;
  }

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

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

  .spec-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
