/* ============================================================
   Ever After Celebrations — Main Stylesheet
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #8B6914;
  --maroon:      #7B1F3A;
  --maroon-light:#A8304F;
  --rose:        #F2D7DF;
  --cream:       #FFF8F0;
  --dark:        #1A080E;
  --text:        #3D1A24;
  --text-muted:  #7A5060;
  --white:       #FFFFFF;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(26,8,14,.10);
  --shadow-lg: 0 12px 48px rgba(26,8,14,.16);

  --transition: .3s ease;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::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(--white); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ── */
.container { width: min(var(--max-w), 100% - 3rem); margin-inline: auto; }
.section   { padding-block: 6rem; }

.section__header { text-align: center; margin-bottom: 4rem; }
.section__eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: .75rem;
}
.section__title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 1rem;
}
.section__subtitle { color: var(--text-muted); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: var(--transition); white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white); box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
.btn--outline {
  border: 2px solid var(--gold); color: var(--gold-dark); background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: background var(--transition), box-shadow var(--transition);
}
.nav--scrolled {
  background: rgba(255,248,240,.96); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,8,14,.08);
}
.nav__container {
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--max-w), 100% - 3rem); margin-inline: auto;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-text {
  font-family: var(--font-head); font-size: 1.3rem; color: var(--maroon); font-weight: 700;
}
.nav__logo-sub { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { font-weight: 500; color: var(--text); transition: color var(--transition); font-size: .95rem; }
.nav__links a:hover { color: var(--maroon); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--white) !important; padding: .55rem 1.4rem; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(201,168,76,.3);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4) !important; }

/* hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav__toggle span { display: block; height: 2px; background: var(--maroon); border-radius: 2px; transition: var(--transition); }
.nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(123,31,58,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(201,168,76,.15) 0%, transparent 60%),
    linear-gradient(160deg, #1A080E 0%, #3D1224 40%, #1A080E 100%);
}
/* decorative pattern */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: patternDrift 20s linear infinite;
}
@keyframes patternDrift { to { background-position: 40px 40px; } }

.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(26,8,14,.4) 0%, transparent 70%);
}
.hero__content {
  position: relative; z-index: 1; text-align: center;
  padding: 8rem 1.5rem 8rem; max-width: 780px;
  animation: fadeUp .9s ease both;
}
.hero__eyebrow {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; font-weight: 700;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__subtitle { color: rgba(255,248,240,.75); font-size: 1.15rem; max-width: 500px; margin: 0 auto 2.5rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,248,240,.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  animation: fadeIn 2s 1s ease both; z-index: 0;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.6); } }

/* ── Services ── */
.services { background: var(--cream); }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid rgba(201,168,76,.12);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0; transform: translateY(20px);
}
.service-card.visible { animation: fadeUp .6s ease forwards; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.2rem; color: var(--maroon); margin-bottom: .5rem;
}
.service-card p { color: var(--text-muted); font-size: .95rem; }

/* ── About ── */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__image-wrap { position: relative; }
.about__image-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.about__image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about__badge-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.about__badge-label { font-size: .8rem; opacity: .85; text-transform: uppercase; letter-spacing: .1em; }

.about__content { opacity: 0; transform: translateX(20px); }
.about__content.visible { animation: fadeRight .7s ease forwards; }
.about__content .section__title { text-align: left; }
.about__content p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about__pillars { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.about__pillar {
  display: flex; flex-direction: column;
  padding: 1rem 1.25rem; background: var(--cream);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
}
.about__pillar strong { color: var(--maroon); font-size: .95rem; }
.about__pillar span { color: var(--text-muted); font-size: .88rem; }

/* ── Gallery ── */
.gallery { background: var(--dark); }
.gallery .section__title { color: var(--white); }
.gallery .section__eyebrow { color: var(--gold); }
.gallery .section__subtitle { color: rgba(255,248,240,.6); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  opacity: 0; transform: scale(.97);
  aspect-ratio: 4/3;
}
.gallery__item.visible { animation: fadeScale .6s ease forwards; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: unset; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,8,14,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span { color: var(--white); font-family: var(--font-head); font-size: 1rem; font-style: italic; }
.gallery__cta { text-align: center; margin-top: 3rem; }

/* ── Gallery Filters ── */
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery__filter {
  padding: .5rem 1.25rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,248,240,.6);
  background: transparent; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.gallery__filter:hover {
  border-color: var(--gold); color: var(--gold);
}
.gallery__filter.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent; color: var(--white);
  box-shadow: 0 4px 14px rgba(201,168,76,.4);
}

/* gallery item hide/show */
.gallery__item {
  transition: opacity .35s ease, transform .35s ease;
}
.gallery__item.hidden {
  display: none;
}
.gallery__item.fade-in {
  animation: fadeScale .4s ease forwards;
}

/* uniform grid when filtered */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item { aspect-ratio: 4/3; }

.gallery__empty {
  text-align: center; color: rgba(255,248,240,.5); font-style: italic;
  padding: 2rem; font-size: .95rem;
}
.gallery__empty a { color: var(--gold); text-decoration: underline; }

/* ── Process ── */
.process { background: var(--cream); }
.process__steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.process__step {
  flex: 1; min-width: 200px; text-align: center; padding: 2rem 1.5rem;
  opacity: 0; transform: translateY(16px);
}
.process__step.visible { animation: fadeUp .6s ease forwards; }
.process__num {
  font-family: var(--font-head); font-size: 3rem; color: var(--gold-light);
  line-height: 1; margin-bottom: .75rem; font-weight: 700;
}
.process__step h3 { font-family: var(--font-head); color: var(--maroon); margin-bottom: .5rem; font-size: 1.15rem; }
.process__step p { color: var(--text-muted); font-size: .9rem; }
.process__connector {
  flex: 0 0 auto; width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  margin-top: 3.5rem; align-self: flex-start;
}

/* ── Testimonials ── */
.testimonials { background: var(--maroon); }
.testimonials .section__eyebrow { color: var(--gold-light); }
.testimonials .section__title { color: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 2rem;
  opacity: 0; transform: translateY(16px);
}
.testimonial.visible { animation: fadeUp .6s ease forwards; }
.testimonial__stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial p { color: rgba(255,248,240,.85); font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial__author strong { display: block; color: var(--white); }
.testimonial__author span { font-size: .85rem; color: rgba(255,248,240,.5); }

/* ── Contact ── */
.contact { background: var(--white); }

/* Preferred contact options */
.contact__preferred { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; margin: 0 auto 0; }

/* Instagram DM — top single tab */
.contact__preferred-top {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--cream); border-radius: var(--radius-lg); padding: 1.4rem 2rem;
  border: 1.5px solid var(--border); color: var(--text);
  transition: var(--transition);
}
.contact__preferred-top:hover { background: var(--rose); border-color: var(--maroon); color: var(--maroon); }
.contact__preferred-top strong { display: block; font-size: 1.05rem; color: var(--maroon); margin-bottom: .15rem; }
.contact__preferred-top span { font-size: .88rem; color: var(--text-muted); }
.contact__preferred-arrow { margin-left: auto; font-size: 1.3rem; color: var(--gold-dark); }

/* Phone & Instagram secondary */
.contact__preferred-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__preferred-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--cream); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border); color: var(--text);
  transition: var(--transition);
}
.contact__preferred-item:hover { background: var(--rose); border-color: var(--maroon); color: var(--maroon); }
.contact__preferred-icon { font-size: 1.5rem; }
.contact__preferred-item strong { display: block; font-size: .95rem; color: var(--maroon); }
.contact__preferred-item span { font-size: .82rem; color: var(--text-muted); }

/* Divider */
.contact__divider {
  display: flex; align-items: center; gap: 1rem;
  max-width: 720px; margin: 2.5rem auto;
}
.contact__divider::before, .contact__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.contact__divider span {
  font-size: .82rem; color: var(--text-muted); white-space: nowrap;
  letter-spacing: .05em; text-transform: uppercase; font-weight: 500;
}

/* Form wrapper */
.contact__form-wrap { max-width: 720px; margin: 0 auto; }
.contact__form { display: flex; flex-direction: column; gap: 1rem; }

/* form */
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: .35rem; }
.form__group label { font-size: .82rem; font-weight: 600; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }
.form__group input,
.form__group select,
.form__group textarea {
  padding: .75rem 1rem; border: 1.5px solid rgba(201,168,76,.25); border-radius: var(--radius);
  background: var(--cream); color: var(--text); font-size: .95rem; transition: border-color var(--transition);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form__group textarea { resize: vertical; min-height: 110px; }
.form__note { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

/* ── Validation styles ── */
.input--error {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
  animation: shake .3s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.field-error {
  font-size: .78rem; color: #e53e3e; margin-top: .25rem;
  display: flex; align-items: center; gap: .3rem;
}
.field-error::before { content: '⚠'; font-size: .8rem; }

/* ── Testimonial Popup ── */
.t-popup {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.t-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(26,8,14,.7); backdrop-filter: blur(6px);
  cursor: pointer;
}
.t-popup__card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 520px; width: 100%; overflow: hidden;
  animation: popupIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.t-popup__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--text); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
  border: none; font-family: inherit;
}
.t-popup__close:hover { background: var(--maroon); color: var(--white); }
.t-popup__photo-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: var(--cream);
}
.t-popup__photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.t-popup__stars {
  position: absolute; bottom: 1rem; left: 1.25rem;
  color: var(--gold); font-size: 1.1rem; letter-spacing: .1em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.t-popup__body { padding: 1.75rem 2rem 2rem; }
.t-popup__quote {
  font-family: var(--font-head); font-style: italic; font-size: 1.05rem;
  color: var(--text); line-height: 1.7; margin-bottom: 1.25rem;
}
.t-popup__quote::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: .1rem; }
.t-popup__quote::after  { content: '\201D'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: .1rem; }
.t-popup__author { margin-bottom: 1.5rem; }
.t-popup__author strong { display: block; color: var(--maroon); font-size: .95rem; }
.t-popup__author span   { font-size: .82rem; color: var(--text-muted); }
.t-popup__cta { width: 100%; justify-content: center; }

/* ── Footer ── */
.footer { background: var(--dark); padding-block: 4rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); margin-bottom: .75rem; }
.footer__brand p { color: rgba(255,248,240,.5); font-size: .9rem; line-height: 1.7; margin-bottom: .75rem; }
.footer__instagram { color: var(--gold-light); font-size: .85rem; transition: color var(--transition); }
.footer__instagram:hover { color: var(--gold); }
.footer__links h4, .footer__services h4, .footer__contact h4 {
  font-family: var(--font-head); color: var(--gold); margin-bottom: 1.1rem; font-size: 1rem;
}
.footer__links li, .footer__services li { margin-bottom: .5rem; }
.footer__links a { color: rgba(255,248,240,.55); font-size: .9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__services li { color: rgba(255,248,240,.55); font-size: .9rem; }
.footer__contact a { display: block; color: rgba(255,248,240,.55); font-size: .9rem; margin-bottom: .5rem; transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact p { color: rgba(255,248,240,.4); font-size: .85rem; margin-top: .75rem; }
.footer__payments {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.footer__payments p { color: rgba(255,248,240,.4); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.footer__payment-methods { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer__payment-methods span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,248,240,.7); font-size: .82rem; font-weight: 500;
  padding: .35rem .9rem; border-radius: 50px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer__bottom p { color: rgba(255,248,240,.3); font-size: .8rem; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Animations ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeScale { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

/* stagger service cards */
.service-card:nth-child(2) { animation-delay: .1s; }
.service-card:nth-child(3) { animation-delay: .2s; }
.service-card:nth-child(4) { animation-delay: .05s; }
.service-card:nth-child(5) { animation-delay: .15s; }
.service-card:nth-child(6) { animation-delay: .25s; }
.service-card:nth-child(7) { animation-delay: .1s; }
.service-card:nth-child(8) { animation-delay: .2s; }
.service-card:nth-child(9) { animation-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { right: 1rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .process__connector { display: none; }
}

@media (max-width: 640px) {
  .section { padding-block: 4rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--cream);
    padding: 1.5rem; box-shadow: var(--shadow); gap: 1.25rem;
  }
  .nav__links--open { display: flex; }
  .nav__links .nav__cta { text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__badge { position: relative; margin-top: 1.5rem; display: inline-block; right: auto; bottom: auto; }
}
