@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --white: #f6f6f4;
  --gray: #9a9a9a;
  --light-gray: #e4e4e2;
  --accent: #f37522;
  --border: #2a2a2a;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

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

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

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

/* ---------- Header ---------- */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link img { height: 56px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

.main-nav a {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover { background: #ff8c3f; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
}

.hero-logo { width: 260px; margin: 0 auto 28px; }

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 18px;
}

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

.hero p {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.page-hero h1 { font-size: clamp(28px, 4vw, 42px); }
.page-hero p { color: var(--gray); margin-top: 10px; font-size: 16px; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }

.section-intro {
  font-family: 'Inter', sans-serif;
  color: #555;
  max-width: 620px;
  font-size: 16px;
  margin-bottom: 48px;
}

.section-dark { background: var(--near-black); color: var(--white); }
.section-dark .section-intro { color: var(--gray); }

/* ---------- Grid / Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.card .icon {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }

.card p { font-family: 'Inter', sans-serif; color: #555; font-size: 15px; }

.card ul { margin-top: 14px; padding-left: 18px; font-size: 14px; color: #444; }
.card ul li { margin-bottom: 6px; }

.card-dark {
  background: #1d1d1d;
  border: 1px solid var(--border);
}
.card-dark h3 { color: var(--white); }
.card-dark p, .card-dark ul { color: var(--gray); }

/* ---------- Stats ---------- */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.cta-band p { font-family: 'Inter', sans-serif; margin-bottom: 28px; font-size: 16px; }

/* ---------- Lists ---------- */
.check-list { list-style: none; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--accent);
}
.info-block p, .info-block a { font-family: 'Inter', sans-serif; color: #333; font-size: 15px; }

form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #fff;
}

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

textarea { resize: vertical; min-height: 120px; }

.field { display: flex; flex-direction: column; }

/* ---------- Portfolio / Video Cards ---------- */
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1d1d1d, #0a0a0a);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.video-card .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.video-card:hover .play-icon { transform: scale(1.08); }

.video-card .play-icon::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 4px;
}

.video-card .video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.video-card .video-label h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-card .video-label span {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 13px;
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.portfolio-note {
  background: #fdeee3;
  border: 1px solid #f8caa3;
  border-radius: 4px;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8a3f10;
  margin-bottom: 44px;
}

/* ---------- Reviews / Testimonials ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 30px 26px;
}

.stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p.quote {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

.review-cta {
  text-align: center;
  margin-top: 48px;
}

.review-cta p {
  font-family: 'Inter', sans-serif;
  color: #555;
  margin-bottom: 18px;
  font-size: 15px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-top img { height: 46px; margin-bottom: 14px; }
.footer-top p { font-family: 'Inter', sans-serif; font-size: 14px; max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--gray); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: block; }
}
