@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --navy: #1e2a5e;
  --orange: #f5a623;
  --dark: #111827;
  --mid: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  position: relative;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.logo-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.navy { background: var(--navy); }
.dot.orange { background: var(--orange); border: 2px solid var(--orange); background: transparent; }
.dot.navy-fill { background: var(--navy); }

nav-links {
  display: none;
}

/* ── PAGE NAV LINKS (footer style) ── */
.page-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.page-nav a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.page-nav a:hover,
.page-nav a.active { color: var(--navy); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 2rem 4rem;
  background: var(--white);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.footer-logo .s { color: var(--navy); }
.footer-logo .i-orange { color: var(--orange); }
.footer-logo .dot-orange { color: var(--orange); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--mid);
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.footer-tagline strong { color: var(--orange); font-weight: 600; }

.footer-contact a {
  display: block;
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem 0;
  transition: opacity 0.2s;
}

.footer-contact a:hover { opacity: 0.75; }

/* ── BRAND WORD: simple. ── */
.brand {
  color: var(--navy);
  font-weight: 900;
}
.brand .i-char { color: var(--orange); }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

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

/* ── SECTION ── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-intro .text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-intro .text p {
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-photo {
  background: #e5e7eb;
  border-radius: 12px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--mid);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* ── MISSION BLOCK ── */
.mission-block {
  background: var(--light);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin: 0 2rem 4rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.mission-block .big-quote {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mission-block p {
  color: var(--mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── EXPERIENCE ACCORDION ── */
.experience-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.exp-photo {
  background: #e5e7eb;
  border-radius: 12px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.accordion-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  user-select: none;
  transition: color 0.2s;
}

.accordion-header:hover { color: var(--navy); }

.accordion-header .chevron {
  transition: transform 0.25s;
  color: var(--mid);
  font-size: 1.1rem;
}

.accordion-item.open .chevron { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body { max-height: 200px; }

.accordion-body p {
  padding: 0 0 1.25rem;
  color: var(--mid);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.video-card {
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a2e;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-card:hover { transform: scale(1.02); }

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}

.play-circle {
  width: 36px;
  height: 36px;
  background: rgba(255,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle::after {
  content: '';
  border-left: 12px solid white;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 5px;
  right: 6px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.7rem;
  padding: 1px 4px;
  border-radius: 3px;
}

/* ── CLIENTS ── */
.clients-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.clients-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.client-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.client-logo:hover { opacity: 1; }

.client-logo .sub { font-size: 0.6rem; font-weight: 400; display: block; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── AFFILIATE ── */
.affiliate-section {
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.affiliate-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--light);
  color: var(--mid);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.affiliate-section p {
  color: var(--mid);
  font-size: 0.9rem;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  text-align: center;
  padding: 4rem 2rem 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-hero p { color: var(--mid); line-height: 1.8; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  align-items: start;
}

.contact-info h3 { font-weight: 700; margin-bottom: 1.5rem; font-size: 1.1rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.75rem; color: var(--mid); font-weight: 500; }
.contact-item-value { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.contact-item-value a { color: var(--dark); text-decoration: none; }
.contact-item-value a:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

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

.form-group textarea { min-height: 130px; }

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

.submit-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

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

/* ── BLOG PAGE ── */
.blog-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.blog-hero p { color: var(--mid); line-height: 1.8; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.blog-card {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.blog-card-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, #2d4a9e 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body { padding: 1.25rem; flex: 1; }

.blog-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.blog-card-body p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

.blog-card-meta {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.75rem;
  color: var(--mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { height: 280px; }
  .experience-section { grid-template-columns: 1fr; gap: 2rem; }
  .exp-photo { height: 240px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-nav { gap: 1.5rem; flex-wrap: wrap; }
}
