/* ===================================================================
   SAYYAN.IN — MODERN PREMIUM DESIGN SYSTEM
   TAGLINE: REAL MOMENTS. REAL LIFE.
   =================================================================== */

:root {
  /* Brand Colors */
  --primary-red: #dc2626;        /* Vivid Crimson Red */
  --primary-red-hover: #b91c1c;  /* Deep Red */
  --primary-red-light: #fef2f2;  /* Soft Red Tint */
  --primary-red-glow: rgba(220, 38, 38, 0.18);
  
  --color-black: #09090b;        /* Pitch Black */
  --color-black-surface: #121215;/* Slate Black */
  --color-black-subtle: #1c1c21; /* Card Black */
  
  --text-dark: #09090b;          /* Headings */
  --text-body: #334155;          /* Body text */
  --text-muted: #64748b;         /* Secondary text */
  --text-light: #94a3b8;         /* Subdued notes */
  
  --bg-white: #ffffff;           /* Crisp White */
  --bg-subtle: #f8fafc;          /* Very light slate */
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);
  
  /* Borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-dark: rgba(9, 9, 11, 0.12);
  --border-red: rgba(220, 38, 38, 0.25);
  
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px -4px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 22px 40px -10px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 12px 30px rgba(220, 38, 38, 0.22);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Layout & Transitions */
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Utilities */
.text-red {
  color: var(--primary-red);
}

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

.text-muted {
  color: var(--text-muted);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.32);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-dark {
  background-color: var(--color-black);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background-color: var(--color-black-subtle);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

/* ===================================================================
   SHARED HEADER & NAVIGATION
   =================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-red);
  background-color: var(--primary-red-light);
}

.nav-link.active {
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Toggle for Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.55rem;
  cursor: pointer;
  color: var(--text-dark);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 9, 11, 0.45);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================================
   SECTION UTILITIES & HEADERS
   =================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--border-red);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Page Intro Banner */
.page-header-banner {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-subtle) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-header-banner .section-title {
  margin-bottom: 0.75rem;
}

/* ===================================================================
   HERO SECTION (HOME PAGE)
   =================================================================== */
.hero-section {
  padding: 4.5rem 0 5.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--color-black);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.hero-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.hero-tag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-tag-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-red-light);
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero Visual Card */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.hero-photo-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-black);
}

.hero-photo-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-photo-card:hover .hero-photo-img {
  transform: scale(1.02);
}

.hero-photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  margin-right: 0.35rem;
}

.hero-floating-card {
  position: absolute;
  top: -1.25rem;
  right: -1rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-floating-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.hero-floating-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================================================
   SERVICES COMPONENT (HOME & SERVICES PAGE)
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: var(--primary-red);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: scaleX(0.5);
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--primary-red);
  color: #ffffff;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

/* ===================================================================
   PORTFOLIO COMPONENT & FILTERING
   =================================================================== */
.portfolio-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.filter-btn.active {
  background: var(--color-black);
  color: #ffffff;
  border-color: var(--color-black);
}

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

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.3);
}

.portfolio-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb-wrap.reels-ratio {
  aspect-ratio: 9 / 12;
}

.portfolio-thumb-wrap.square-ratio {
  aspect-ratio: 1 / 1;
}

.portfolio-placeholder-art {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.portfolio-placeholder-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.2);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.portfolio-category-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.portfolio-info {
  padding: 1.75rem 1.5rem 1.5rem;
}

.portfolio-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   SOCIAL MEDIA PAGE
   =================================================================== */
.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.social-showcase-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.social-card-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.social-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-ig {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
  color: #e1306c;
}

.icon-fb {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}

.social-card-platform {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
}

.social-card-handle {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.social-card-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.stay-connected-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.stay-connected-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.stay-connected-text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-card-value {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-card-hint {
  font-size: 0.8125rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-top: 0.15rem;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px var(--primary-red-glow);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: none;
}

.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ===================================================================
   ABOUT PAGE (FOUNDER PROFILE - WHO IS SAYYAN?)
   =================================================================== */
.about-header-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.about-vision-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-xs);
}

.about-vision-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
  flex-shrink: 0;
}

.about-grid-editorial {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

/* Founder Portrait Card */
.founder-col {
  position: sticky;
  top: 6.5rem;
}

.founder-portrait-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.09);
  transition: var(--transition-base);
}

.founder-portrait-card:hover {
  box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.3);
}

.founder-img-wrap {
  width: 100%;
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.founder-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}

.founder-portrait-card:hover .founder-img {
  transform: scale(1.015);
}

.founder-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.founder-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.founder-details-box {
  padding: 2rem 1.75rem 2.25rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.founder-name {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.founder-title-badge {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.founder-roles-summary {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-color);
  font-weight: 600;
}

.founder-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.founder-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  font-weight: 600;
}

.founder-meta-chip svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

/* Editorial Story Column */
.about-story-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.story-card-editorial {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.25rem 2.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.story-card-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.75rem;
  width: 50px;
  height: 4px;
  background: var(--primary-red);
  border-radius: var(--radius-full);
}

.story-lead-p {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.story-body-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.story-p {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.85;
  letter-spacing: -0.01em;
}

.story-vision-callout {
  margin-top: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--primary-red-light);
  border-left: 4px solid var(--primary-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Skills & Focus Pillars (SEO Optimized) */
.about-skills-panel {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
}

.about-skills-title {
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-skills-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.about-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.seo-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-fast);
}

.seo-tag-item:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-1px);
}

.seo-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-red);
  flex-shrink: 0;
}

.story-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ===================================================================
   SHARED CALLOUT BANNER (BOTTOM OF PAGES)
   =================================================================== */
.cta-banner-section {
  padding: 5rem 0;
  background: var(--color-black);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ===================================================================
   SHARED FOOTER
   =================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-brand-tagline {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-red);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-light);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.back-to-top-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-wrap {
    order: -1;
  }
  .hero-photo-card {
    max-width: 360px;
  }
  .hero-photo-img {
    height: 400px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-col {
    position: static;
    max-width: 440px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.0625rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .services-grid,
  .portfolio-grid,
  .social-channels-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-quick-tags {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-form-wrap {
    padding: 2rem 1.25rem;
  }
  .story-card-editorial {
    padding: 2rem 1.25rem;
  }
  .about-skills-panel {
    padding: 1.75rem 1.25rem;
  }
}
