/* =============================================
   Bump To Baby Photography — Main Stylesheet
   ============================================= */

:root {
  --cream: #faf8f4;
  --cream-deep: #f2ede6;
  --blush: #e8d5c4;
  --blush-light: #f5ece4;
  --gold: #c9a98a;
  --gold-dark: #a8845e;
  --sage: #8fa89a;
  --sage-light: #c5d4cc;
  --dark: #1e1c1a;
  --dark-mid: #2d2a26;
  --text: #3d3a36;
  --text-light: #7a7268;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

h1 em, h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow.light { color: var(--blush); }

.lead {
  font-size: 1.2rem;
  font-family: var(--font-elegant);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-blush {
  background: var(--blush-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

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

.btn-large { padding: 1.1rem 2.75rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(30, 28, 26, 0.97);
  padding: 0.875rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 28, 26, 0.72) 0%,
    rgba(30, 28, 26, 0.38) 60%,
    rgba(30, 28, 26, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 2rem;
  margin: 0 auto 0 8%;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}

.scroll-down svg {
  width: 32px;
  height: 32px;
}

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

/* =============================================
   QUOTE STRIP
   ============================================= */
.quote-strip {
  background: var(--dark-mid);
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--white);
}

.quote-strip p {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto 0.5rem;
}

.quote-strip cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.03); }

.about-img-accent {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  aspect-ratio: 1;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text { padding-left: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; color: var(--text-light); }
.about-text .btn { margin-top: 1.5rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-mid);
  transition: all var(--transition);
}

.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.06); }

.service-body {
  padding: 2rem 2.5rem;
}

.service-body h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.service-link:hover { color: var(--blush); }

/* =============================================
   WHY ELENA
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

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

.why-text h2 { margin-bottom: 2rem; }

.why-points { display: flex; flex-direction: column; gap: 1.75rem; }

.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-icon {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.why-point h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.why-point p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin: 0 0 3rem;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}

.gallery-item:hover::after { background: rgba(0,0,0,0.2); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-cta {
  text-align: center;
  padding: 1rem 0 0;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: scale(1.04);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-card.featured h4 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-duration { color: rgba(255,255,255,0.6); }
.pricing-card.featured li { color: rgba(255,255,255,0.8); }
.pricing-card.featured li::before { color: var(--gold); }

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: 0 0 8px 8px;
}

.pricing-badge {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-duration {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--blush);
}

.pricing-card.featured .pricing-duration { border-color: rgba(255,255,255,0.15); }

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.pricing-note p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-note a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.design-services {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}

.design-services-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.design-services h3 { margin-bottom: 0.75rem; }
.design-services p { color: var(--text-light); margin: 0; }

.design-icons {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.design-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  min-width: 80px;
}

.design-icon {
  font-size: 2rem;
}

.design-icon-item span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =============================================
   PROCESS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--blush);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 1rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  background: var(--blush-light);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
}

.process-step h4 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.testimonial-card p {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.testimonial-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 26, 0.75);
}

.cta-band-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-band-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-elegant);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-text h2 { margin-bottom: 1.25rem; }
.contact-text p { color: var(--text-light); margin-bottom: 2rem; }

.contact-details { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
}

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

.contact-social { margin-top: 2rem; }

.social-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}

.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--blush);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

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

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.form-success h3 { margin-bottom: 1rem; }
.form-success p { color: var(--text-light); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-links h4,
.footer-sessions h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-sessions ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a,
.footer-sessions li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links li a:hover,
.footer-sessions li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
}

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

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .why-img { max-width: 500px; margin: 0 auto; }
  .why-grid { direction: rtl; }
  .why-text { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 3rem; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .design-services-inner { flex-direction: column; }
  .design-icons { justify-content: center; }
}

@media (max-width: 700px) {
  .section { padding: 4.5rem 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  #navbar { padding: 1rem 1.25rem; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.75rem;
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-content { margin: 0; padding: 0 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-img-accent { right: 0; bottom: -2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}
