/* ============================================
   MONA RAZA — "Modern Authority" Design System
   monaraza.com
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --midnight-silk: #111827;
  --midnight-silk-90: rgba(17, 24, 39, 0.9);
  --midnight-silk-70: rgba(17, 24, 39, 0.7);
  --midnight-silk-40: rgba(17, 24, 39, 0.4);
  --midnight-silk-15: rgba(17, 24, 39, 0.15);
  --midnight-silk-08: rgba(17, 24, 39, 0.08);
  --champagne-glow: #FDF2F2;
  --champagne-glow-warm: #FBE8E8;
  --champagne-deep: #F5DADA;
  --terracotta: #C2410C;
  --terracotta-hover: #A3370A;
  --terracotta-light: rgba(194, 65, 12, 0.12);
  --terracotta-glow: rgba(194, 65, 12, 0.06);
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #FEF7F7;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 10rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 960px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Borders & Radius */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(17, 24, 39, 0.06);
  --shadow-medium: 0 8px 40px rgba(17, 24, 39, 0.1);
  --shadow-elevated: 0 16px 64px rgba(17, 24, 39, 0.12);
  --shadow-photo: 0 20px 60px rgba(17, 24, 39, 0.15);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.7s;
  --duration-reveal: 1s;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--midnight-silk);
  background-color: var(--champagne-glow);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}


/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: var(--midnight-silk-70);
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}


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

.container--narrow {
  max-width: var(--max-width-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-reveal) var(--ease-out-expo),
              transform var(--duration-reveal) var(--ease-out-expo);
}

.reveal.is-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; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--duration-reveal) var(--ease-out-expo),
              transform var(--duration-reveal) var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--duration-reveal) var(--ease-out-expo),
              transform var(--duration-reveal) var(--ease-out-expo);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-reveal) var(--ease-out-expo),
              transform var(--duration-reveal) var(--ease-out-expo);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(194, 65, 12, 0.3);
}

.btn--primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 65, 12, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--midnight-silk);
  border: 1.5px solid var(--midnight-silk-15);
}

.btn--outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--midnight-silk);
  box-shadow: var(--shadow-soft);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn__arrow {
  transition: transform var(--duration-fast) var(--ease-smooth);
  font-size: 1.1em;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav.is-scrolled {
  background: rgba(253, 242, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--midnight-silk-08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--midnight-silk);
}

.nav__logo span {
  color: var(--terracotta);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--midnight-silk-70);
  position: relative;
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--midnight-silk);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.7rem 1.6rem;
  font-size: 0.78rem;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight-silk);
  transition: all var(--duration-normal) var(--ease-smooth);
  border-radius: 2px;
}

.nav__mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--terracotta-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--midnight-silk);
}

.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  max-width: 480px;
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  aspect-ratio: 3 / 4;
  background: var(--champagne-deep);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlapping accent card behind photo */
.hero__accent-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-elevated);
  z-index: 3;
  max-width: 260px;
}

.hero__accent-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.hero__accent-card .stat-label {
  font-size: 0.82rem;
  color: var(--midnight-silk-70);
  margin-top: 0.3rem;
}

/* Decorative floating element */
.hero__float-element {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--terracotta-light);
  border-radius: var(--radius-xl);
  z-index: 0;
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: pulse-down 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--midnight-silk-40), transparent);
}

@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  aspect-ratio: 4 / 5;
  background: var(--champagne-deep);
  position: relative;
  z-index: 2;
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlapping background shape */
.about__shape {
  position: absolute;
  top: -30px;
  left: -30px;
  right: 30px;
  bottom: 30px;
  background: var(--terracotta-light);
  border-radius: var(--radius-xl);
  z-index: 1;
}

/* Small overlapping credential badge */
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--midnight-silk);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  z-index: 3;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--terracotta);
}

.about__badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.8;
}

.about__content {
  position: relative;
}

.about__eyebrow {
  margin-bottom: var(--space-sm);
}

.about__title {
  margin-bottom: var(--space-lg);
}

.about__description {
  margin-bottom: var(--space-md);
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: var(--space-lg) 0;
}

.about__credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--midnight-silk-70);
  box-shadow: var(--shadow-soft);
}

.about__credential-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

.about__signature {
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--midnight-silk-40);
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--midnight-silk-08), transparent);
}

.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.services__eyebrow {
  margin-bottom: var(--space-sm);
}

.services__title {
  margin-bottom: var(--space-md);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--champagne-glow);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--duration-normal) var(--ease-smooth);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color var(--duration-normal);
}

.service-card:hover .service-card__number {
  color: var(--terracotta);
}

.service-card__title {
  margin-bottom: var(--space-sm);
}

.service-card__description {
  margin-bottom: var(--space-lg);
  font-size: 0.92rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap var(--duration-fast);
}

.service-card__link:hover {
  gap: 0.9rem;
}


/* ============================================
   RESULTS / SOCIAL PROOF
   ============================================ */
.results {
  padding: var(--space-4xl) 0;
  background: var(--midnight-silk);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(194, 65, 12, 0.08), transparent 60%);
  pointer-events: none;
}

.results__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.results__title {
  color: var(--white);
}

.results__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.results__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.stat:last-child::after {
  display: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.4;
  position: absolute;
  top: 1.2rem;
  left: 1.8rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terracotta);
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}


/* ============================================
   FEATURED IN
   ============================================ */
.featured {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
}

.featured::before,
.featured::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--midnight-silk-08), transparent);
}

.featured::before { top: 0; }
.featured::after { bottom: 0; }

.featured__label {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.featured__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}

.featured__logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  color: var(--midnight-silk-40);
  letter-spacing: 0.04em;
  transition: color var(--duration-fast);
  white-space: nowrap;
}

.featured__logo:hover {
  color: var(--midnight-silk-70);
}


/* ============================================
   BLOG / INSIGHTS
   ============================================ */
.blog {
  padding: var(--space-4xl) 0;
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
}

.blog__header-text {
  max-width: 500px;
}

.blog__eyebrow {
  margin-bottom: var(--space-sm);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  background: var(--champagne-deep);
  overflow: hidden;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.blog-card__body {
  padding: 1.8rem;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--midnight-silk-40);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  transition: color var(--duration-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--terracotta);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--midnight-silk-40);
}


/* ============================================
   NEWSLETTER / LEAD MAGNET
   ============================================ */
.newsletter {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter__inner {
  background: var(--midnight-silk);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.1), transparent 60%);
  pointer-events: none;
}

.newsletter__inner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(253, 242, 242, 0.04), transparent 60%);
  pointer-events: none;
}

.newsletter__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.newsletter__eyebrow {
  margin-bottom: var(--space-sm);
}

.newsletter__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.newsletter__subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xl);
}

.newsletter__form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--duration-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter__input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--terracotta);
}

.newsletter__disclaimer {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram {
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.instagram__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.instagram__eyebrow {
  margin-bottom: var(--space-xs);
}

.instagram__handle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
}

.instagram__handle a {
  color: var(--terracotta);
  transition: opacity var(--duration-fast);
}

.instagram__handle a:hover {
  opacity: 0.7;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.instagram__item {
  aspect-ratio: 1;
  background: var(--champagne-deep);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.instagram__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0);
  transition: background var(--duration-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram__item:hover::after {
  background: rgba(17, 24, 39, 0.3);
}

.instagram__item:hover img {
  transform: scale(1.08);
}

.instagram__overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity var(--duration-fast);
  color: var(--white);
  font-size: 1.5rem;
}

.instagram__item:hover .instagram__overlay-icon {
  opacity: 1;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight-silk);
  color: var(--white);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 300px;
}

.footer__brand .nav__logo {
	color: #fff;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--terracotta);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__contact-icon {
  color: var(--terracotta);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-link {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--duration-fast);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--champagne-glow);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--midnight-silk);
  transition: color var(--duration-fast);
}

.mobile-menu__link:hover {
  color: var(--terracotta);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__visual {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .results__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .stat::after {
    display: none;
  }

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

  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero__accent-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .hero__scroll-indicator {
    display: none;
  }

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

  .newsletter__form {
    flex-direction: column;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .featured__logos {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .about__credentials {
    justify-content: center;
  }

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