/* ==========================================
   NUDGE UNLTD — MAIN STYLESHEET v2.0
   Design language: Editorial agency
   Fonts: Syne (display/UI) + DM Serif Display (italic accents) + DM Sans (body)
   Palette: Ink #0E0A0F · Pink #FF2D78 · Cream #FFF6F0 · Muted #8A7F8D
   ========================================== */

/* ── CSS VARIABLES ── */
:root {
  --ink:          #0E0A0F;
  --ink-soft:     #1C1620;
  --pink:         #FF2D78;
  --pink-dark:    #CC1A5A;
  --pink-pale:    #FFF0F5;
  --pink-glow:    rgba(255, 45, 120, 0.18);
  --cream:        #FFF6F0;
  --white:        #ffffff;
  --muted:        #8A7F8D;
  --border:       rgba(14, 10, 15, 0.08);
  --border-med:   rgba(14, 10, 15, 0.14);

  /* Keep legacy names for any page templates that reference them */
  --primary-blue:       var(--pink);
  --primary-blue-dark:  var(--pink-dark);
  --primary-blue-light: #ff5fa0;
  --primary-blue-pale:  var(--pink-pale);
  --black:              var(--ink);
  --black-soft:         var(--ink-soft);
  --gray-900: #1C1620;
  --gray-800: #2e2832;
  --gray-700: #4a4450;
  --gray-600: #66606b;
  --gray-500: #887f8d;
  --gray-400: #aaa3ae;
  --gray-300: #ccc7cf;
  --gray-200: #e8e4ea;
  --gray-100: #f5f3f6;

  --success: #28a745;
  --warning: #ffc107;
  --error:   #dc3545;

  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;

  --container-max:  1280px;
  --section-padding: 100px;
  --nav-height:     72px;
  --marquee-height: 40px;
  --chrome-height:  calc(var(--marquee-height) + var(--nav-height));

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 2px 8px rgba(14, 10, 15, 0.05);
  --shadow-md: 0 4px 20px rgba(14, 10, 15, 0.08);
  --shadow-lg: 0 12px 40px rgba(14, 10, 15, 0.1);
  --shadow-xl: 0 24px 64px rgba(14, 10, 15, 0.14);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background-color: #fafaf9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--gray-600); }

.text-gradient {
  background: linear-gradient(135deg, var(--pink) 0%, #ff5fa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   ███  MARQUEE TICKER  ███
   ========================================== */

.marquee-wrap {
  height: var(--marquee-height);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-sep {
  color: var(--pink);
  font-size: 10px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   ███  NAVIGATION  ███
   ========================================== */

.navbar {
  position: sticky;
  top: 0;
  height: var(--nav-height);
  background: rgba(250, 250, 249, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.nav-logo-text span { color: var(--pink); }

/* Nav menus */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
  background: var(--gray-100);
}

.nav-link.nav-cta {
  background: var(--ink);
  color: var(--white);
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(14, 10, 15, 0.2);
}

.nav-link.nav-cta:hover, .nav-link.nav-cta.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 18px var(--pink-glow);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-drawer.open { max-height: 400px; }

.nav-drawer ul {
  padding: 16px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer .nav-link {
  width: 100%;
  text-align: left;
  border-radius: 8px;
  padding: 12px 16px;
}

.nav-drawer .nav-cta { margin-left: 0; margin-top: 8px; }

@media (max-width: 820px) {
  .nav-menu, .nav-menu-right { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================
   FLASH MESSAGES
   ========================================== */

.flash-container {
  position: fixed;
  top: calc(var(--chrome-height) + 16px);
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}

.flash-message {
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: flash-in 0.3s ease;
}

@keyframes flash-in {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.flash-success { background: #d4f0dc; color: #1a5c30; border: 1px solid #a8dbb8; }
.flash-error   { background: #fce8ec; color: #8c1b2b; border: 1px solid #f2b8c3; }
.flash-info    { background: var(--pink-pale); color: var(--pink-dark); border: 1px solid #f8c0d0; }

.flash-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
  line-height: 1;
}
.flash-close:hover { opacity: 1; }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  padding: 13px 28px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--pink-glow);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-med);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--pink-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-full { width: 100%; border-radius: 12px; }

/* ==========================================
   SECTION COMPONENTS
   ========================================== */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-badge::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--pink);
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg, .hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-soft) 55%, #2a0f1e 100%);
}

.hero-bg.image-mode,
.carousel-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg.carousel-mode {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: -2;
}
.carousel-slide.active { opacity: 1; z-index: -1; }

.hero-bg.image-mode::after,
.hero-bg.carousel-mode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,10,15,0.82) 0%, rgba(14,10,15,0.4) 55%, rgba(14,10,15,0.15) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,45,120,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,95,160,0.08) 0%, transparent 50%);
  z-index: -1;
}

.hero-content { width: 100%; }

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9ac0;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,45,120,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(255,45,120,0.1); }
}

.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-text p  { font-size: 1.1rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.8; font-weight: 300; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual shapes */
.hero-visual { position: relative; height: 500px; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff5fa0);
  opacity: 0.12;
  animation: float 6s ease-in-out infinite;
}
.hero-shape-1 { width: 320px; height: 320px; top: 8%;  right: 8%;  animation-delay: 0s; }
.hero-shape-2 { width: 200px; height: 200px; bottom: 18%; right: 28%; animation-delay: -2s; }
.hero-shape-3 { width: 140px; height: 140px; top: 42%; right: 0;   animation-delay: -4s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--pink);
  border-radius: 2px;
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(11px); opacity: 0.3; }
}

@media (max-width: 992px) {
  .hero-content .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  background: var(--ink);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.feature-card:hover .feature-icon { background: var(--pink); }
.feature-icon svg { width: 30px; height: 30px; stroke: var(--white); }

.feature-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.feature-card p  { font-size: 14px; line-height: 1.7; color: var(--muted); }

@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

/* ==========================================
   STATS SECTION
   ========================================== */

.stats {
  padding: 80px 0;
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */

.about-preview { padding: var(--section-padding) 0; }

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image { position: relative; }

.image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 4/3;
}

.image-frame.large { aspect-ratio: 1; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.image-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-pale), var(--gray-100));
}

.image-placeholder svg { width: 72px; height: 72px; stroke: var(--gray-300); }

.experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.exp-number { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.exp-text   { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }

.about-preview-content h2 { margin-bottom: 20px; }
.about-preview-content > p { font-size: 1.05rem; margin-bottom: 28px; line-height: 1.8; font-weight: 300; }

.about-list { margin-bottom: 40px; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-700);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.about-list li:first-child { border-top: 1px solid var(--border); }

.about-list svg { width: 20px; height: 20px; fill: var(--pink); flex-shrink: 0; }

@media (max-width: 992px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 60px; }
  .experience-badge { bottom: 20px; right: 20px; }
}

/* ==========================================
   SERVICES PREVIEW SECTION
   ========================================== */

.services-preview {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after { opacity: 1; }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number,
.service-card:hover .service-link { color: var(--white); position: relative; z-index: 1; }
.service-card:hover .service-card > * { position: relative; z-index: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pink-pale);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition-base);
}

.service-card h3 { margin-bottom: 14px; font-size: 1.4rem; transition: color var(--transition-base); }
.service-card p  { margin-bottom: 24px; line-height: 1.7; font-size: 14px; color: var(--muted); transition: color var(--transition-base); }

.service-link {
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.service-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 50px; }

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================
   BLOG PREVIEW SECTION
   ========================================== */

.blog-preview { padding: var(--section-padding) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-pale), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-placeholder svg { width: 48px; height: 48px; stroke: var(--gray-300); }

.blog-card-content { padding: 28px; }
.blog-date { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); }
.blog-card-content h3 { margin: 10px 0; font-size: 1.15rem; line-height: 1.35; }
.blog-card-content h3 a { color: var(--ink); transition: color var(--transition-fast); }
.blog-card-content h3 a:hover { color: var(--pink); }
.blog-card-content p { font-size: 14px; margin-bottom: 16px; line-height: 1.7; color: var(--muted); }

.blog-link {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-cta { text-align: center; margin-top: 48px; }

@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background: var(--ink);
  z-index: -2;
}

.cta-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,45,120,0.15) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(255,95,160,0.1) 0%, transparent 50%);
  z-index: -1;
}

.cta-content { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.45); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; font-weight: 300; }

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--ink);
  padding: 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 28px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand col */
.footer-brand {}

.footer-logo-link { display: inline-flex; align-items: center; margin-bottom: 20px; }
.footer-logo-img  { height: 48px; width: auto; object-fit: contain; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
}
.footer-logo-text span { color: var(--pink); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 340px;
  font-weight: 300;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--pink-glow);
}

/* Nav col */
.footer-col-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  font-weight: 400;
}

.footer-links a:hover { color: var(--pink); }

/* Contact col */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-list svg {
  flex-shrink: 0;
  stroke: var(--pink);
  margin-top: 2px;
  opacity: 0.8;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 36px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  transition: gap var(--transition-fast);
}

.footer-cta-link:hover { gap: 12px; }
.footer-cta-link svg { transition: transform var(--transition-fast); }
.footer-cta-link:hover svg { transform: translateX(4px); }

/* Footer legacy aliases (for any existing templates using these) */
.footer-brand     {}
.footer-nav-col   {}
.footer-contact-col {}

.footer-logo      { display: inline-flex; align-items: center; }
.footer-logo img  { height: 48px; width: auto; }
.footer-logo span { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); }

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-soft) 55%, #2a0f1e 100%);
  z-index: -1;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,45,120,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(255,95,160,0.08) 0%, transparent 50%);
}

.page-header-content { max-width: 780px; margin: 0 auto; }

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9ac0;
  margin-bottom: 20px;
}

.page-header-content h1 { color: var(--white); margin-bottom: 20px; }
.page-header-content p  { font-size: 1.2rem; color: rgba(255,255,255,0.45); font-weight: 300; }

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-story { padding: var(--section-padding) 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 { margin-bottom: 22px; }
.story-content p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; font-weight: 300; }

.mission-vision { padding: 80px 0; background: var(--gray-100); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--white);
  padding: 52px 44px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mv-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.mv-card:hover .mv-icon { background: var(--pink); }
.mv-icon svg { width: 34px; height: 34px; stroke: var(--white); }
.mv-card h3 { margin-bottom: 14px; font-size: 1.5rem; }
.mv-card p  { font-size: 15px; line-height: 1.8; color: var(--muted); font-weight: 300; }

.core-values { padding: var(--section-padding) 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 40px 36px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-md);
  transform: translateY(-4px);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--pink-pale);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}

.value-card h3 { margin-bottom: 10px; }
.value-card p  { font-size: 14px; line-height: 1.75; color: var(--muted); font-weight: 300; }

.team-section { padding: var(--section-padding) 0; background: var(--gray-100); }

@media (max-width: 992px) {
  .story-grid, .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }

/* ==========================================
   SERVICES PAGE
   ========================================== */

.services-full { padding: var(--section-padding) 0; }

.services-list { display: flex; flex-direction: column; gap: 60px; }

.service-full-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 50px;
  align-items: start;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  transition: all var(--transition-base);
}

.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateX(4px);
}

.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-card:hover.reverse { transform: translateX(-4px); }

.service-full-icon {
  width: 96px; height: 96px;
  background: var(--ink);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.service-full-card:hover .service-full-icon { background: var(--pink); }
.service-full-icon svg { width: 42px; height: 42px; stroke: var(--white); }

.service-full-content { position: relative; }

.service-full-number {
  position: absolute;
  top: -24px; right: 0;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  z-index: -1;
  letter-spacing: -0.05em;
}

.service-full-content h3  { font-size: 1.7rem; margin-bottom: 14px; }
.service-full-content > p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; font-weight: 300; }

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 14px;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Process section */
.process-section { padding: var(--section-padding) 0; background: var(--gray-100); }

.process-timeline {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 33px;
  top: 100px;
  bottom: -40px;
  width: 1.5px;
  background: var(--border-med);
}

.process-number {
  width: 66px; height: 66px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--transition-base);
}

.process-step:hover .process-number { background: var(--pink); }
.process-content h3 { font-size: 1.45rem; margin-bottom: 10px; }
.process-content p  { font-size: 1.05rem; line-height: 1.75; font-weight: 300; color: var(--muted); }

@media (max-width: 768px) {
  .service-full-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .service-full-card.reverse { direction: ltr; }
  .service-full-icon { width: 76px; height: 76px; }
  .service-full-number { display: none; }
  .service-features { grid-template-columns: 1fr; }
  .process-step { gap: 24px; }
  .process-number { width: 50px; height: 50px; font-size: 1.15rem; }
  .process-step:not(:last-child)::after { left: 24px; top: 78px; }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section { padding: var(--section-padding) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 40px; font-weight: 300; }

.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }

.contact-item { display: flex; gap: 16px; }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--pink-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--pink); }

.contact-text h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-text p { color: var(--gray-800); font-size: 15px; }

.contact-social h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 42px; height: 42px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--ink);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-links svg { width: 18px; height: 18px; fill: var(--gray-600); transition: fill var(--transition-fast); }
.social-links a:hover svg { fill: var(--white); }

.contact-form-wrapper {
  background: var(--white);
  padding: 52px;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 { margin-bottom: 28px; font-size: 1.5rem; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 15px;
  border: 1.5px solid var(--border-med);
  border-radius: 14px;
  transition: all var(--transition-fast);
  background: var(--white);
  color: var(--ink);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-pale);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { height: 400px; }

.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-pale), var(--gray-100));
  position: relative;
}

.map-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content { text-align: center; color: var(--gray-400); }
.map-content svg { width: 56px; height: 56px; margin-bottom: 14px; stroke: var(--gray-300); }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-wrapper { padding: 40px; }
}
@media (max-width: 576px) { .contact-form-wrapper { padding: 28px 22px; } }

/* ==========================================
   BLOG PAGE
   ========================================== */

.blog-section { padding: var(--section-padding) 0; }

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.blog-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-full .blog-card-image { aspect-ratio: unset; height: 100%; min-height: 240px; }

.blog-card-full .blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.blog-meta { margin-bottom: 10px; }
.blog-card-full h2 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-full h2 a { color: var(--ink); transition: color var(--transition-fast); }
.blog-card-full h2 a:hover { color: var(--pink); }
.blog-card-full p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; flex-grow: 1; color: var(--muted); font-weight: 300; }
.blog-card-full .blog-link { color: var(--pink); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 60px; }

.pagination-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--border-med);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--transition-fast);
}

.pagination-link:hover { border-color: var(--pink); color: var(--pink); }
.pagination-link svg { width: 14px; height: 14px; }

.pagination-numbers { display: flex; gap: 6px; }

.pagination-number {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--transition-fast);
}

.pagination-number:hover { background: var(--gray-100); }

.pagination-number.active { background: var(--ink); color: var(--white); }
.pagination-ellipsis { width: 40px; text-align: center; color: var(--muted); }

/* Blog empty state */
.blog-empty { text-align: center; padding: 80px 20px; }

.empty-icon {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon svg { width: 46px; height: 46px; stroke: var(--gray-300); }
.blog-empty h2 { margin-bottom: 10px; }
.blog-empty p  { font-size: 1.05rem; color: var(--muted); }

/* Newsletter */
.newsletter-section { padding: 0 0 var(--section-padding); }

.newsletter-card {
  background: var(--ink);
  padding: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -80px; right: 100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content h2 { color: var(--white); margin-bottom: 8px; }
.newsletter-content p  { color: rgba(255,255,255,0.45); font-size: 1.05rem; font-weight: 300; }

.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }

.newsletter-form input {
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 15px;
  width: 280px;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

.newsletter-form .btn-primary {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 6px 20px var(--pink-glow);
}

.newsletter-form .btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--pink-glow);
}

@media (max-width: 992px) {
  .blog-grid-full { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; text-align: center; padding: 48px 36px; }
  .newsletter-form { flex-direction: column; width: 100%; max-width: 400px; }
  .newsletter-form input { width: 100%; }
}

@media (max-width: 768px) {
  .blog-card-full { grid-template-columns: 1fr; }
  .blog-card-full .blog-card-image { min-height: 200px; }
}

/* ==========================================
   BLOG POST PAGE
   ========================================== */

.post-header {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}

.post-header-content { max-width: 780px; margin: 0 auto; text-align: center; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}

.back-link:hover { color: var(--pink); }
.back-link svg { width: 16px; height: 16px; }

.post-header-content h1 { color: var(--white); margin-bottom: 24px; font-size: clamp(2rem, 4vw, 2.8rem); }

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.post-meta > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.post-meta svg { width: 15px; height: 15px; }

.post-content-section { padding: var(--section-padding) 0; }
.post-article { max-width: 780px; margin: 0 auto; }

.post-featured-image { margin-bottom: 50px; border-radius: 24px; overflow: hidden; }
.post-featured-image img { width: 100%; }

.post-body { font-size: 1.05rem; line-height: 1.95; color: var(--gray-700); }

.post-body h2, .post-body h3, .post-body h4 { margin-top: 40px; margin-bottom: 18px; }
.post-body p { margin-bottom: 22px; color: var(--gray-700); }
.post-body ul, .post-body ol { margin-bottom: 24px; padding-left: 24px; }
.post-body li { margin-bottom: 8px; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body a { color: var(--pink); text-decoration: underline; }
.post-body blockquote { margin: 32px 0; padding: 24px 32px; border-left: 3px solid var(--pink); background: var(--pink-pale); font-style: italic; border-radius: 0 12px 12px 0; }

.post-footer { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }

.post-share { display: flex; align-items: center; gap: 16px; }
.post-share > span { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.share-links { display: flex; gap: 8px; }

.share-links a {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.share-links a:hover { background: var(--ink); border-color: transparent; }
.share-links svg { width: 16px; height: 16px; fill: var(--gray-500); transition: fill var(--transition-fast); }
.share-links a:hover svg { fill: var(--white); }

.post-navigation { text-align: center; margin-top: 60px; }

/* ==========================================
   TEAM / CAROUSEL
   ========================================== */

.carousel-container {
  position: relative !important;
  padding: 0 60px !important;
  overflow: visible !important;
}

.team-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 24px !important;
  padding: 20px 0 40px !important;
  scrollbar-width: none !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth !important;
}

.team-grid::-webkit-scrollbar { display: none !important; }

.team-card {
  flex: 0 0 calc(33.333% - 16px) !important;
  min-width: calc(33.333% - 16px) !important;
  max-width: calc(33.333% - 16px) !important;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  scroll-snap-align: start;
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.team-image { width: 100% !important; height: 300px !important; overflow: hidden !important; }
.team-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform var(--transition-slow); }
.team-card:hover .team-image img { transform: scale(1.06); }

.team-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-pale), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-placeholder svg { width: 72px; height: 72px; stroke: var(--gray-300); }

.team-info { padding: 28px; text-align: center; }
.team-info h3 { margin-bottom: 6px; font-size: 1.2rem; }
.team-role { color: var(--pink); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.team-info > p:last-child { font-size: 13px; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* Nav buttons */
.nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border-med) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  box-shadow: var(--shadow-md) !important;
  transition: all 0.3s ease !important;
  color: var(--ink) !important;
}

.nav-btn:hover {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px var(--pink-glow) !important;
}

.nav-btn svg { width: 22px !important; height: 22px !important; stroke: currentColor !important; }

.prev-btn { left: -24px !important; }
.next-btn { right: -24px !important; }

@media (max-width: 768px) {
  .carousel-container { padding: 0 44px !important; }

  .team-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .nav-btn { width: 40px !important; height: 40px !important; }
  .nav-btn svg { width: 18px !important; height: 18px !important; }
  .prev-btn { left: 0 !important; }
  .next-btn { right: 0 !important; }
}

/* ==========================================
   ADMIN — keep these untouched, just inherit
   ========================================== */

/* Admin pages use their own template — no styles needed here. */