/* ─────────────────────────────────────────
   LUMIÈRE BEAUTY — CSS
   Clean & Minimalist | White + Beige + Pink
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --white:    #ffffff;
  --off-white:#faf8f5;
  --beige-50: #f7f2ec;
  --beige-100:#f0e4d8;
  --beige-200:#e8d5c4;
  --beige-300:#d4b5a0;
  --beige-400:#c49a80;
  --pink-50:  #fdf0f4;
  --pink-100: #f8d9e4;
  --pink-200: #f0b6cb;
  --pink-300: #d4899a;
  --pink-400: #c06a7e;
  --text-dark:#2a2118;
  --text-mid: #5a4a3a;
  --text-soft:#8a7060;
  --text-mute:#b0a090;
  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:36px;
  --shadow-sm:0 2px 12px rgba(90,60,30,.06);
  --shadow-md:0 8px 32px rgba(90,60,30,.10);
  --shadow-lg:0 20px 60px rgba(90,60,30,.13);
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --transition:.3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── CONTAINERS ── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: 7rem;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-300);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--pink-300);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--pink-300);
}

.section-desc {
  margin-top: 1.25rem;
  color: var(--text-soft);
  max-width: 520px;
  font-size: 1.05rem;
  font-weight: 300;
}

.section-head { margin-bottom: 4rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-tag { margin-inline: auto; }
.section-head.centered .section-desc { margin-inline: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--text-dark);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--pink-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 400;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--beige-200);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--pink-200);
  color: var(--pink-400);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 400;
  padding: .85rem 2rem;
  border-radius: 100px;
  border: 1.5px solid var(--text-dark);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

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

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.25rem 2rem;
  max-width: 1280px;
  margin-inline: auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.logo span {
  color: var(--pink-300);
  margin-left: .25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: .03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--pink-300); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--text-dark);
  color: var(--white);
  padding: .6rem 1.5rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--pink-400);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--beige-100);
}
.mobile-menu a {
  padding: .75rem 0;
  font-size: .95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--beige-50);
}
.mobile-menu .btn-mobile {
  margin-top: 1rem;
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: .8rem;
  border-radius: 100px;
  border: none;
}
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 2rem 5rem;
  max-width: 1280px;
  margin-inline: auto;
}

.hero-content { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-300);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--pink-300);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--pink-300);
}

.hero-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--beige-100);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--text-mute);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--beige-200);
}

/* hero visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  width: min(480px, 100%);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--beige-50);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--beige-50) 0%, var(--pink-50) 100%);
}

.placeholder-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.placeholder-inner svg { width: 120px; opacity: .7; }
.placeholder-inner p {
  font-size: .8rem;
  color: var(--beige-400);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.badge-icon {
  color: var(--pink-300);
  font-size: 1rem;
}

.hero-badge-2 {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--text-dark);
  border-radius: var(--radius-md);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
}
.badge-sub { font-size: .7rem; color: var(--beige-300); font-weight: 300; }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--text-dark);
  padding-block: 1rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beige-200);
  font-weight: 300;
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--pink-300);
  font-size: .6rem;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--beige-100);
  position: relative;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige-200);
}
.service-card.featured {
  background: var(--text-dark);
  border-color: transparent;
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-link {
  color: var(--beige-200) !important;
}
.service-card.featured .service-link { border-color: var(--beige-400); }
.service-card.featured:hover { box-shadow: 0 20px 60px rgba(0,0,0,.25); }

.service-badge-top {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--pink-300);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-weight: 500;
}

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  color: var(--pink-300);
  font-weight: 400;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--pink-100);
  padding-bottom: 2px;
  transition: var(--transition);
}
.service-link:hover {
  color: var(--pink-400);
  border-color: var(--pink-300);
  gap: .5rem;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* about visual */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-img-main {
  width: min(380px, 100%);
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl) 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-placeholder {
  width: 100%; height: 100%;
  background: var(--beige-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-placeholder svg { width: 150px; opacity: .6; }
.about-placeholder p {
  font-size: .8rem;
  color: var(--beige-400);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  background: var(--pink-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accent-placeholder svg { width: 100%; height: 100%; }

.about-exp-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--beige-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.exp-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}
.exp-text {
  font-size: .72rem;
  color: var(--text-soft);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .3rem;
}

/* about content */
.about-text {
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-text strong { color: var(--text-dark); font-weight: 500; }

.about-features {
  margin: 1.75rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.about-features li strong { color: var(--text-dark); font-weight: 500; }
.feature-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-300);
  margin-top: .55rem;
}

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio { background: var(--off-white); }

.portfolio-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--beige-200);
  color: var(--text-soft);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
}

.port-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }

.port-placeholder {
  width: 100%; height: 100%;
  background: var(--bg, var(--beige-100));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  transition: var(--transition);
}
.port-placeholder span {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beige-400);
  font-weight: 400;
}
.port-item:hover .port-placeholder { filter: brightness(.92); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,33,24,.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.port-overlay p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-style: italic;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-item.hidden { display: none; }

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process { background: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--beige-200);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .6rem;
}
.step p {
  font-size: .875rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
}
.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--beige-300);
  padding: 2.5rem .5rem;
  padding-top: 4.5rem;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--beige-50); }

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--beige-100);
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-card.featured {
  background: var(--text-dark);
  border-color: transparent;
}
.testi-card.featured .testi-stars { color: var(--pink-200); }
.testi-card.featured .testi-text  { color: var(--beige-200); }
.testi-card.featured strong        { color: var(--white); }
.testi-card.featured span          { color: var(--beige-400); }

.testi-stars {
  color: var(--beige-400);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.testi-text {
  font-size: .95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr, var(--beige-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-mid);
  font-weight: 500;
  flex-shrink: 0;
}
.testi-author div:last-child {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.testi-author strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.testi-author span {
  font-size: .78rem;
  color: var(--text-mute);
  font-weight: 300;
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { background: var(--white); }

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

.price-card {
  border: 1px solid var(--beige-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.price-card.popular {
  background: var(--text-dark);
  border-color: transparent;
  padding-top: 3rem;
}
.price-card.popular .price-tier,
.price-card.popular .price-for,
.price-card.popular .price-features li {
  color: var(--beige-200);
}
.price-card.popular .price-amt { color: var(--white); }
.price-card.popular .price-features li.muted { color: var(--text-soft); opacity: .5; }

.popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink-300);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 500;
}

.price-tier {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}

.price-amt {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: .5rem;
}
.price-amt span {
  font-size: 1.2rem;
  font-weight: 300;
}

.price-for {
  font-size: .85rem;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--beige-100);
}
.popular .price-for { border-color: rgba(255,255,255,.1); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: .875rem;
  color: var(--text-mid);
  font-weight: 300;
}
.price-features li.muted {
  color: var(--text-mute);
  text-decoration: line-through;
  text-decoration-color: var(--beige-200);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--text-mute);
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--beige-50); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: flex-start;
}

.contact-text {
  color: var(--text-soft);
  font-weight: 300;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: .95rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--beige-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .2rem;
}
.contact-item span {
  font-size: .9rem;
  color: var(--text-soft);
  font-weight: 300;
}

/* form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--beige-100);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 300;
  outline: none;
  transition: var(--transition);
  resize: none;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-mute); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-200);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--pink-50);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
  font-size: .95rem;
}
.submit-btn svg { width: 18px; height: 18px; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-mute);
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: var(--beige-200);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-block: 5rem;
}

.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--pink-200); }
.footer-brand p {
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--beige-400);
  font-weight: 300;
  line-height: 1.7;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.75rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-300);
  transition: var(--transition);
  padding: 9px;
}
.footer-socials a svg { width: 100%; height: 100%; }
.footer-socials a:hover {
  border-color: var(--pink-300);
  color: var(--pink-200);
  background: rgba(212,137,154,.1);
}

.footer-links h5,
.footer-contact h5 {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer-links a {
  display: block;
  font-size: .875rem;
  color: var(--beige-400);
  font-weight: 300;
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink-200); }

.footer-contact p {
  font-size: .875rem;
  color: var(--beige-400);
  font-weight: 300;
  margin-bottom: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  width: min(1200px, 100% - 3rem);
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--beige-400);
  font-weight: 300;
}

/* ═══════════════════════════════════════
   SCROLL TOP
═══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--pink-400);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 9rem 5rem;
    gap: 3rem;
  }
  .hero-content { align-items: center; }
  .hero-desc { margin-inline: auto; }
  .hero-visual { justify-content: center; }
  .hero-img-wrap { width: min(360px, 80vw); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { justify-content: flex-start; }
  .about-img-main { width: min(380px, 100%); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .process-steps { flex-wrap: wrap; }
  .step { flex: 1 1 calc(50% - 2rem); }
  .step-arrow:nth-child(4) { display: none; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .section { padding-block: 5rem; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 7rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-badge { left: 0; bottom: 1.5rem; }
  .hero-badge-2 { right: 0; top: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .port-item.wide { grid-column: span 2; }
  .port-item.tall { grid-row: span 1; }

  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .step { flex: 1 1 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-item.wide { grid-column: span 1; }
  .about-exp-badge { right: 0; }
}
