/* ========================================================
   Charlotte Blench Digital — Main Stylesheet
   Warm neutral palette with refined serif typography
   ======================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors — neutral taupe palette */
  --accent: #8A8076;          /* Primary Warm Taupe (main accent) */
  --accent-light: #9e958c;
  --accent-dark: #6e6660;
  --accent-glow: rgba(138, 128, 118, 0.2);

  /* Brand Neutrals */
  --taupe: #8A8076;           /* Primary Warm Taupe */
  --cream: #F2E8DE;           /* Secondary Soft Cream Beige */
  --nude: #DCC8B2;            /* Accent 1 Warm Nude — used sparingly */
  --stone: #B7ACA1;           /* Accent 2 Stone Grey */
  --charcoal: #5F564F;        /* Neutral Dark Charcoal Brown */
  --offwhite: #FAF8F6;        /* Light Neutral Off-White */

  /* Surfaces (warm neutral) */
  --bg: #FAF8F6;
  --bg-alt: #F2E8DE;
  --surface: #ffffff;
  --surface-2: #F2E8DE;
  --surface-3: #ebe0d4;
  --surface-hover: #e8dbd0;

  /* Text */
  --text: #3d3630;
  --text-secondary: #6b625a;
  --text-muted: #8A8076;

  /* Borders */
  --border: rgba(95, 86, 79, 0.1);
  --border-light: rgba(95, 86, 79, 0.15);

  /* Typography */
  --font-body: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Pinyon Script', cursive;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- Section Utility ---------- */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Accent text */
.text-gradient {
  color: var(--stone);
  background: none;
  -webkit-text-fill-color: var(--stone);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--offwhite);
}

.btn-primary:hover {
  background: #4a423c;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(95, 86, 79, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: rgba(95, 86, 79, 0.05);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ========================================================
   HEADER
   ======================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: none;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 12px rgba(95, 86, 79, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: none;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  z-index: 10;
}

.logo-mark {
  display: none;
}

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

.footer-logo .logo-img {
  height: 40px;
}

.logo-text {
  display: none;
}

.logo-accent {
  color: var(--taupe);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Mobile open state */
.mobile-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 72px;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(60, 50, 40, 0.25) 0%,
    rgba(40, 35, 28, 0.55) 35%,
    rgba(25, 20, 15, 0.7) 100%
  );
}

/* (grid lines and orbs removed — clean hero) */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--container-pad);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-title-sub {
  font-size: 0.75em;
  font-weight: 300;
  opacity: 0.9;
  display: block;
  margin-top: 0.3em;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  background: transparent;
  white-space: nowrap;
}

.btn-primary-hero {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-primary-hero:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-hero .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-hero:hover .btn-arrow {
  transform: translateX(3px);
}

.hero-services {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.hero-service-pill {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-service-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* Hide elements no longer in hero */
.hero-badge {
  display: none;
}

.hero-badge-unused {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(138, 128, 118, 0.08);
  border: 1px solid rgba(138, 128, 118, 0.2);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* (hero subtitle/stats/scroll removed — simplified hero) */

/* ========================================================
   CLIENTS BAR
   ======================================================== */
.clients-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

.client-logo {
  opacity: 0.35;
  transition: opacity var(--transition-base);
  color: var(--text);
}

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

.client-logo svg {
  height: 26px;
  width: auto;
}

/* ========================================================
   SERVICES
   ======================================================== */
.services {
  background: var(--bg-alt);
}

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

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: rgba(138, 128, 118, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(95, 86, 79, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card:hover .service-link {
  gap: 0.6rem;
}

/* ========================================================
   PORTFOLIO / WORK
   ======================================================== */
.work-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition-fast);
}

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

.filter-btn.active {
  background: var(--charcoal);
  color: var(--offwhite);
  border-color: var(--charcoal);
}

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

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  cursor: pointer;
}

.work-card.hidden {
  display: none;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(95, 86, 79, 0.1);
}

.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--thumb-bg, var(--surface-2));
  overflow: hidden;
}

.work-thumb-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-svg {
  width: 80%;
  height: auto;
}

.work-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 54, 48, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-expand-label {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: #fff;
  transition: all var(--transition-fast);
}

.work-card:hover .work-expand-label {
  background: #fff;
  color: var(--charcoal);
}

.work-info {
  padding: 1.25rem 1.5rem;
}

.work-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.work-category-label {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.work-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 1.5rem;
}

.work-card.expanded .work-detail {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.work-detail p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.work-detail strong {
  color: var(--text);
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials {
  background: var(--bg-alt);
}

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

.testimonial-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(138, 128, 118, 0.2);
  box-shadow: 0 8px 32px rgba(95, 86, 79, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--avatar-hue, 210), 40%, 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(var(--avatar-hue, 210), 60%, 70%);
  flex-shrink: 0;
}

.testimonial-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================================
   ABOUT
   ======================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* About visual */
.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
}

.about-image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-illustration {
  width: 100%;
  height: auto;
}

.about-floating-card {
  position: absolute;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(95, 86, 79, 0.1);
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
}

.about-floating-card--1 {
  top: 10%;
  right: -10%;
}

.about-floating-card--2 {
  bottom: 15%;
  left: -8%;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.floating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Team */
.team-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.team-member {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.team-member:hover {
  border-color: rgba(138, 128, 118, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(95, 86, 79, 0.06);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: hsl(var(--avatar-hue, 210), 35%, 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--avatar-hue, 210), 50%, 65%);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================================
   PROCESS
   ======================================================== */
.process {
  background: var(--bg-alt);
}

.process-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}

.process-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.6rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================================
   CTA BANNER
   ======================================================== */
.cta-banner {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--stone);
  opacity: 0.12;
  top: -30%;
  left: -5%;
}

.cta-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--cream);
  opacity: 0.2;
  bottom: -30%;
  right: -5%;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ========================================================
   PRICING
   ======================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(138, 128, 118, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(95, 86, 79, 0.08);
}

.pricing-card--featured {
  border-color: var(--charcoal);
  background: linear-gradient(to bottom, rgba(95, 86, 79, 0.03), var(--surface));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--charcoal);
  color: var(--offwhite);
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.price-from {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check-icon {
  flex-shrink: 0;
}

/* ========================================================
   CONTACT
   ======================================================== */
.contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--accent);
}

/* Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input.error {
  border-color: #e74c3c;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8076' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: #fff;
}

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

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
  min-height: 1.1em;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* Submit button states */
.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  visibility: hidden;
}

.btn.loading .btn-loading {
  display: flex;
  position: absolute;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form success */
.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 320px;
}

/* ========================================================
   REACH ME INSTANTLY
   ======================================================== */
.reach-me {
  background: var(--bg);
}

.reach-me-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.reach-me-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.reach-me-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.reach-me-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reach-me-cards {
  display: flex;
  gap: 1rem;
}

.reach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  min-width: 130px;
  text-decoration: none;
  color: var(--text-primary);
}

.reach-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.reach-card svg {
  color: var(--accent);
}

.reach-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.reach-card-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================================
   INSTAGRAM SECTION
   ======================================================== */
.instagram-section {
  background: var(--bg-alt);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.instagram-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.instagram-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.instagram-handle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.instagram-handle:hover {
  color: var(--charcoal);
}

.instagram-gallery {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.instagram-gallery::-webkit-scrollbar {
  display: none;
}

.insta-item {
  flex: 0 0 auto;
  width: clamp(200px, 18vw, 280px);
  aspect-ratio: 1;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 35, 30, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-base);
  text-align: center;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.insta-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: background var(--transition-fast);
}

.insta-item:hover .insta-btn {
  background: rgba(255,255,255,0.15);
}

/* ========================================================
   QUESTIONS CAROUSEL
   ======================================================== */
.questions-bar {
  background: var(--charcoal);
  color: var(--offwhite);
  padding: 2rem 0;
  overflow: hidden;
}

.questions-carousel {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.questions-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollQuestions 30s linear infinite;
  width: max-content;
}

.question-item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
}

.question-divider {
  opacity: 0.3;
  font-size: 1.2rem;
}

@keyframes scrollQuestions {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.questions-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--offwhite);
  transition: opacity var(--transition-fast);
}

.questions-cta:hover {
  opacity: 0.7;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--offwhite);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-monogram {
  height: 40px;
  width: auto;
  animation: spinLogoY 4s linear infinite;
  filter: brightness(2.5);
}

@keyframes spinLogoY {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.footer-company-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-heading {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col a {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  align-items: center;
}

.footer-bottom p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================================
   SCROLL ANIMATIONS
   ======================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVE — Tablet
   ======================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 450px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ========================================================
   RESPONSIVE — Mobile
   ======================================================== */
@media (max-width: 768px) {
  .header-cta { display: none; }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100vh;
    background: var(--offwhite);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    padding: 6rem 2rem 2rem;
    z-index: 5;
    contain: layout;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
    padding-bottom: clamp(2rem, 4vh, 3rem);
  }

  .hero-content {
    padding: 1.5rem var(--container-pad);
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .hero-title-sub {
    font-size: 0.7em;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-services {
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding: 0 0.5rem;
  }

  .hero-service-pill {
    font-size: 0.55rem;
    letter-spacing: 0.02em;
  }

  .hero-service-divider {
    font-size: 0.6rem;
  }


  /* Grids to single column */
  .services-grid,
  .work-grid,
  .testimonials-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child,
  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  /* Reach me */
  .reach-me-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reach-me-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .reach-card {
    min-width: 100px;
    padding: 1.25rem 1rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  /* Clients */
  .clients-logos {
    gap: 1.5rem 2rem;
  }

  /* Process */
  .process-steps::before {
    left: 27px;
  }

  .process-step {
    gap: 1.25rem;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }

  /* Prevent horizontal overflow on mobile */
  main,
  section,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
  }

  /* Form row stacking on mobile */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* (stats mobile removed — simplified hero) */

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Additional Components ---------- */

/* Form row (side-by-side fields) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact location */
.contact-location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-location svg {
  flex-shrink: 0;
}

/* Section CTA (centered CTA below grids) */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
