/* ============================================
   ELSIE CONSULTING — Stylesheet
   Deep Navy + Gold | Editorial Design
   ============================================ */

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

:root {
  --navy: #0A1628;
  --navy-light: #142240;
  --navy-mid: #1C2E4A;
  --gold: #C5975B;
  --gold-light: #D4AD7A;
  --gold-pale: #E8D5B8;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

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

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(197, 151, 91, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1px solid rgba(197, 151, 91, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}

.nav__cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(197, 151, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 151, 91, 0.3), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__label {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.hero__subtitle {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(197, 151, 91, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 22, 40, 0.2);
}

.btn--outline-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn--arrow::after {
  content: '\2192';
  transition: var(--transition);
}

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

/* --- Stat Bar --- */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(197, 151, 91, 0.1);
}

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

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

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(197, 151, 91, 0.15);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-header .label {
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 560px;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Approach Section --- */
.approach {
  background: var(--cream);
}

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

.approach__card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: var(--transition);
  position: relative;
}

.approach__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.approach__card:hover::before {
  transform: scaleX(1);
}

.approach__card:hover {
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.08);
  transform: translateY(-2px);
}

.approach__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.approach__card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.approach__card p {
  font-size: 0.9375rem;
}

/* --- Services Section --- */
.services-home {
  background: var(--white);
}

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

.service-preview {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-preview:hover {
  border-color: rgba(197, 151, 91, 0.2);
  background: var(--white);
}

.service-preview__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.25rem;
}

.service-preview h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.service-preview p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.services-home__cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Differentiator / Why Section --- */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 151, 91, 0.3), transparent);
}

.why .section-header h2 {
  color: var(--white);
}

.why .section-header .label {
  color: var(--gold);
}

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

.why__text p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.why__text p:first-of-type {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-serif);
  line-height: 1.7;
}

.why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.why__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  margin-top: 0.5rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--cream-dark);
  text-align: center;
  padding: 5rem 0;
}

.cta-banner h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 3rem 0;
  border-top: 1px solid rgba(197, 151, 91, 0.15);
}

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

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo span {
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

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

/* ==============================
   ABOUT PAGE
   ============================== */

.page-hero {
  background: var(--navy);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 151, 91, 0.3), transparent);
}

.page-hero .label {
  margin-bottom: 1rem;
  display: block;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* About Content */
.about-content {
  background: var(--cream);
}

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

.about-photo {
  aspect-ratio: 3 / 4;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.about-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-bio h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.about-bio .about-title {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
  display: block;
}

.about-bio p {
  margin-bottom: 1.25rem;
}

.about-bio p.lead {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* Expertise Grid */
.expertise {
  background: var(--white);
}

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

.expertise__item {
  padding: 2rem;
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: var(--transition);
}

.expertise__item:hover {
  border-color: rgba(197, 151, 91, 0.3);
}

.expertise__item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.expertise__item p {
  font-size: 0.875rem;
}

/* Timeline */
.timeline {
  background: var(--cream);
}

.timeline__items {
  position: relative;
  padding-left: 3rem;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(197, 151, 91, 0.1));
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-4px);
}

.timeline__item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.timeline__item .timeline__org {
  font-size: 0.9375rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.timeline__item .timeline__date {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.timeline__item p {
  font-size: 0.9375rem;
}

/* ==============================
   SERVICES PAGE
   ============================== */

.services-intro {
  background: var(--cream);
}

.services-intro p {
  max-width: 700px;
  font-size: 1.125rem;
}

.services-grid {
  background: var(--white);
}

.services-grid__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(197, 151, 91, 0.2);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

.service-card__info h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card__info p {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197, 151, 91, 0.1);
  padding: 0.25rem 0.75rem;
}

.service-card__price {
  text-align: right;
  flex-shrink: 0;
  min-width: 140px;
}

.service-card__price .price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.service-card__price .price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Retainer Section */
.retainer {
  background: var(--navy);
  text-align: center;
}

.retainer h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.retainer > .container > p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
}

.retainer__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.retainer__tier {
  padding: 2.5rem 2rem;
  background: var(--navy-light);
  border: 1px solid rgba(197, 151, 91, 0.1);
  text-align: left;
  transition: var(--transition);
}

.retainer__tier:hover {
  border-color: rgba(197, 151, 91, 0.3);
}

.retainer__tier.featured {
  border-color: var(--gold);
  position: relative;
}

.retainer__tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
}

.retainer__tier h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.retainer__tier .price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.retainer__tier .price-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

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

.retainer__tier ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.retainer__tier ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  margin-top: 0.45rem;
}

.services-note {
  background: var(--cream);
  text-align: center;
}

.services-note p {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ==============================
   CONTACT PAGE
   ============================== */

.contact-content {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact__info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.contact__info > p {
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact__detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact__detail h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.contact__detail p {
  font-size: 0.9375rem;
}

/* Form */
.contact__form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(10, 22, 40, 0.06);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 2px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 151, 91, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* ==============================
   ANIMATIONS
   ============================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .retainer__tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat:nth-child(2)::after {
    display: none;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card__price {
    text-align: left;
  }

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

  .contact__form {
    padding: 2rem;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

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

  .page-hero {
    padding: 8rem 0 3.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .approach__card {
    padding: 2rem;
  }
}
