﻿:root {
  /* Primary */
  --rose: #d91a34;
  /* Pepsi Blue */
  --rose-light: #F62440;
  /* Lighter Blue */
  --rose-pale: #e7e3d4;
  /* Purple Accent */

  /* Backgrounds */
  --beige: #FFF2DB;
  /* Cards */
  --ivory: #FFFAF3;
  /* Main Background */

  --text: #591810;
  /* --text-muted: #94A3B8;
  --text-light: #64748B; */

  --white: #fef1dd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'poppins', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f5ebe6;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      #ff6b81 0%,
      #F62440 50%,
      #d91a34 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      #ff8a9b 0%,
      #ff4d67 50%,
      #F62440 100%);
}

html {
  scroll-behavior: smooth;
}

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-pale));
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: #FFF2DB;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 115, 124, 0.12);
  box-shadow: 0 4px 32px rgba(196, 115, 124, 0.06);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #591810;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #591810;
  ;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--rose);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(243, 238, 233, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--rose);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 5%;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

/* GRADIENT BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(196, 115, 124, 0.12);
  top: -100px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(225, 211, 202, 0.3);
  bottom: 0;
  left: -80px;
  animation: float2 15s ease-in-out infinite;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(196, 115, 124, 0.08);
  top: 40%;
  right: 10%;
  animation: float1 18s ease-in-out infinite reverse;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.08);
  }
}

/* SECTIONS */
section {
  position: relative;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rose);
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 6vw, 55px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #6b100d;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-light) 50%, var(--beige) 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(196, 115, 124, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(196, 115, 124, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--rose);
  color: white;
  box-shadow: 0 8px 24px rgba(196, 115, 124, 0.25);
}

/* HERO IMAGE */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-photo-frame {
  width: 500px;
  height: 420px;
  border-radius: 200px 200px 160px 160px;
  background: linear-gradient(160deg,
      #0F172A 0%,
      rgba(0, 92, 185, 0.25) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid #F62440;
  box-shadow: 0 32px 80px rgba(196, 115, 124, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196, 115, 124, 0.3), transparent 50%);
  z-index: -1;
}

.hero-avatar {
  font-family: 'DM Serif Display', serif;
  font-size: 180px;
  line-height: 1;
  color: rgba(196, 115, 124, 0.2);
  user-select: none;
  position: absolute;
  bottom: -20px;
}

.hero-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--rose);
  opacity: 0.3;
  letter-spacing: -2px;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
  border: 1px solid rgba(196, 115, 124, 0.1);
}

.hero-badge .badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--rose);
  line-height: 1.1;
}

.hero-badge .badge-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.hero-badge-2 {
  position: absolute;
  top: 40px;
  left: -24px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(196, 115, 124, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  border-radius: 15px;
}

/* SECTION HEADER */
.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--rose);
  opacity: 0.5;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  font-weight: 500;
}

.section-title em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.section-desc {
  font-size: 17px;
  color: #6B100D;
  max-width: 920px;
  margin-top: 20px;
  line-height: 1.75;
}

/* ABOUT */
#about {
  padding: 120px 0;
  background: var(--white);

}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-card {
  background: #FFFAF3;
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(196, 115, 124, 0.1);
  margin-bottom: 20px;
}

.about-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #d91a34;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 15px;
  font-size: 16px;
  line-height: 1.75;
  color: #6b100d;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196, 115, 124, 0.15), rgba(225, 211, 202, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(196, 115, 124, 0.15);
}

.highlight-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #d91a34;
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 14px;
  color: #6b100d;
  line-height: 1.65;
}

/* EXPERIENCE */
#experience {
  padding: 120px 0;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--rose), rgba(196, 115, 124, 0.1));
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 40px;
  transition: all 0.3s;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 4px rgba(196, 115, 124, 0.2);
  transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(196, 115, 124, 0.15);
  transform: scale(1.3);
}

.timeline-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.timeline-company {
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.timeline-role {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--text);
  line-height: 1.2;
}

.timeline-duration {
  font-size: 13px;
  color: #6B100D;
  white-space: nowrap;
  background: var(--ivory);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(196, 115, 124, 0.15);
  margin-top: 4px;
}

.timeline-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.timeline-achievements li {
  font-size: 15px;
  color: #6B100D;
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}

.timeline-achievements li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #d8150e;
  font-size: 12px;
  top: 3px;
}

/* CASE STUDIES */
#case-studies {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  background: var(--ivory);
  border-radius: 15px;
  padding: 44px;
  margin-bottom: 30px;
    border-radius: 15px;
  border: 1px solid rgba(196, 115, 124, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--beige));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(196, 115, 124, 0.14), 0 4px 16px rgba(196, 115, 124, 0.08);
  border-color: rgba(196, 115, 124, 0.2);
}

.case-card:hover::before {
  transform: scaleX(1);
}

.case-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg,
      #0F172A 0%,
      #005CB9 100%);
  border-color: transparent;
}

.case-card.featured .case-tag {
  background: rgba(196, 115, 124, 0.3);
  color: var(--rose-pale);
}

.case-card.featured .case-title {
  color: white;
}

.case-card.featured .case-excerpt {
  color: rgba(255, 255, 255, 0.6);
}

.case-card.featured .case-metric {
  border-color: rgba(255, 255, 255, 0.1);
}

.case-card.featured .metric-num {
  color: var(--rose-light);
}

.case-card.featured .metric-label {
  color: rgba(255, 255, 255, 0.5);
}

.case-card.featured::before {
  background: linear-gradient(90deg, var(--rose), var(--rose-pale));
}

.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(196, 115, 124, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.case-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}

.case-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  /* margin-bottom: 32px; */
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
}

.case-link-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-link-arrow {
  transform: translateX(6px);
}

/* .case-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(196, 115, 124, 0.12); 
  flex-wrap: wrap;
} */

.case-metric {
  flex: 1;
  min-width: 80px;
  padding: 0 20px 0 0;
}

.case-metric:not(:last-child) {
  border-right: 1px solid rgba(196, 115, 124, 0.12);
  margin-right: 20px;
}

.metric-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--rose);
  line-height: 1.1;
}

.metric-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.4;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--ivory);
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(196, 115, 124, 0.1);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-body {
  max-height: 85vh;
  overflow-y: auto;
  padding: 56px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--rose);
  color: white;
}

.modal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 32px;
}

.modal-section {
  margin-bottom: 32px;
}

.modal-section h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.modal-section p,
.modal-section li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.modal-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.modal-metric-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(196, 115, 124, 0.12);
}

.modal-metric-card .num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--rose);
}

.modal-metric-card .lbl {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* PROCESS */
#process {
  padding: 120px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(196, 115, 124, 0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
    border-radius: 15px;
}

.process-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(196, 115, 124, 0.1);
}

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

.process-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: #D91A34;
  line-height: 1;
  margin-bottom: 20px;
}

.process-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
}

.process-desc {
  font-size: 14px;
  line-height: 1.75;
}

/* SKILLS */
#skills {
  padding: 120px 0;
  background: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.skills-category {
  margin-bottom: 40px;
}

.skills-category-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.skills-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ivory);
  color: var(--text);
  border: 1px solid rgba(196, 115, 124, 0.15);
  transition: all 0.25s ease;
}

.pill:hover {
  background: rgba(196, 115, 124, 0.08);
  border-color: rgba(196, 115, 124, 0.35);
  color: var(--rose);
  transform: translateY(-1px);
}

.pill.tool {
  background: white;
  border: 1px solid rgba(196, 115, 124, 0.2);
}

.tools-float {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tool-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid rgba(196, 115, 124, 0.12);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s;
  min-width: 88px;
  cursor: default;
}

.tool-badge .tool-icon {
  font-size: 24px;
  line-height: 1;
}

.tool-badge:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(196, 115, 124, 0.14);
  border-color: rgba(196, 115, 124, 0.3);
}

/* TESTIMONIALS */
#testimonials {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(196, 115, 124, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
    border-radius: 15px;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(196, 115, 124, 0.08);
}

.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: #D91A34;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 115, 124, 0.12);
}





.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #b8130d, #dca694);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* CONTACT */
#contact {
  padding: 140px 300px;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(196, 115, 124, 0.1);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-link:hover {
  background: rgba(196, 115, 124, 0.06);
  border-color: rgba(196, 115, 124, 0.3);
  transform: translateX(4px);
}

.contact-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(196, 115, 124, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-link:hover .contact-link-icon {
  background: var(--rose);
  color: white;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(196, 115, 124, 0.2);
  background: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: all 0.3s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: white;
  box-shadow: 0 0 0 4px rgba(196, 115, 124, 0.1);
}

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

/* FOOTER */
footer {
  padding: 24px 5%;
  text-align: center;
  border-top: 1px solid rgba(196, 115, 124, 0.1);
}

footer p {
  font-size: 13px;
  color: var(--text-light);
}

footer span {
  color: var(--rose);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* body {
  cursor: none;
} */



.custom-cursor {
  width: 4px;
  height: 4px;
  border: 8px solid #591810;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(196, 115, 124, 0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-photo-frame {
    justify-content: center;
    align-items: center;
    width: 273.33px;
    height: 226.7px;
  }

  .custom-cursor {
    display: none;
  }

  #contact {
    padding: 120px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-frame {
    width: 410px;
    height: 340px;
  }

  .hero-initials {
    font-size: 52px;
  }

  .hero-badge {
    right: 0;
    bottom: 16px;
  }

  .hero-badge-2 {
    left: 0;
    top: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-card.featured {
    grid-column: span 1;
  }

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

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .modal {
    padding: 32px;
  }

  .modal-metrics-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

    #hero {
    min-height: auto;
    padding: 100px 20px 60px;
    display: flex;
   justify-content: center;
    align-items: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-inline: auto;
  }

  .container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding-inline: 20px;
    box-sizing: border-box;
  }

  #hero {
    min-height: auto;
    padding: 100px 5% 60px;
  }

  .custom-cursor {
    display: none;
  }

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

  .case-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  #contact {
    padding: 120px 20px;
  }
}

.testimonial-card,
.contact-link {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  will-change: transform;
}

.testimonial-card:hover,
.contact-link:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .15),
    0 0 30px rgba(246, 36, 64, .18);
}

.process-card {
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.process-card:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .12),
    0 0 30px rgba(246, 36, 64, .15);
}

.hero-subtitle .fi {
  font-size: 14px;
  justify-content: center;
  align-items: center;
  margin-left: 0.2em;
  border-radius: 2px;
} 

@media (max-width: 600px) {
  #hero {
    padding: 100px 20px 60px;
    justify-content: center;
    text-align: center;
  }

  .hero-inner {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    justify-items: center;
  }

  .hero-text,
  .hero-visual {
    width: 100%;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual > .hero-photo-frame {
    width: min(78vw, 280px);
    height: min(70vw, 265px);
    margin: 0 auto;
  }

  .hero-visual > .hero-photo-frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero-eyebrow::before {
    margin-bottom: 8px;
  }
}