/* ---------- Design tokens ---------- */
:root{
  --cream: #FFF4E8;
  --cream-deep: #F7E8D4;
  --coral: #FF6F59;
  --coral-deep: #E8543E;
  --turquoise: #2FD9C4;
  --turquoise-deep: #1FB9A6;
  --plum: #3B1F5C;
  --plum-deep: #2B1547;
  --muted: #6B5A7A;
  --white: #FFFFFF;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --wrap: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1,h2,h3{
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus{ left: 0; }

a:focus-visible,
button:focus-visible{
  outline: 2.5px solid var(--plum);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn--coral{ background: var(--coral); color: var(--white); }
.btn--coral:hover{ background: var(--coral-deep); }

.btn--outline{ background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn--outline:hover{ background: var(--plum); color: var(--white); }

.btn--outline-light{ background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-light:hover{ background: rgba(255,255,255,0.12); }

.btn--lg{ padding: 14px 28px; font-size: 15px; }

/* ---------- Nav ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,244,232,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(59,31,92,0.08);
}
.nav__inner{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.nav__brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav__mark{ height: 40px; width: auto; }
.nav__word{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--plum);
}
.nav__word-light{ font-weight: 500; opacity: 0.75; }

.nav__links{
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav__links a:hover{ color: var(--coral); }

.nav__toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
}

.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
}
.mobile-menu a{
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(59,31,92,0.08);
}
.mobile-menu .btn{ margin-top: 12px; align-self: flex-start; }

.nav.is-open .mobile-menu{ display: flex; }

/* ---------- Hero ---------- */
.hero{ padding: 64px 0 40px; }
.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 16px;
}
.hero__title{
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--plum);
}
.hero__sub{
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
}
.hero__actions{
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__art{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge{
  width: min(100%, 380px);
  filter: drop-shadow(0 18px 30px rgba(59,31,92,0.15));
}

/* ---------- Section shell ---------- */
.section-title{
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  text-align: center;
}
.section-sub{
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

/* ---------- Services ---------- */
.services{ padding: 64px 0; }
.services__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
}
.service-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.service-card--coral .service-card__icon{ background: var(--coral); }
.service-card--turquoise .service-card__icon{ background: var(--turquoise); }
.service-card h3{
  font-size: 21px;
  margin-bottom: 14px;
}
.service-card li{
  font-size: 14.5px;
  color: var(--muted);
  padding: 7px 0;
  border-top: 1px solid rgba(59,31,92,0.08);
}
.service-card li:first-child{ border-top: none; }

/* ---------- Process ---------- */
.process{ padding: 56px 0; background: var(--cream-deep); }
.process__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process__step{ text-align: left; }
.process__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.process__step h3{ font-size: 18px; margin-bottom: 8px; }
.process__step p{ color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery{ padding: 64px 0; }
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.ba-card{ margin: 0; }
.ba-card__images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
}
.ba-card__side{
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}
.ba-card__side--before{ background: #C9BFB0; }
.ba-card__side--after{ background: var(--turquoise); }
.ba-card:nth-child(2) .ba-card__side--after{ background: var(--coral); }
.ba-card:nth-child(3) .ba-card__side--after{ background: var(--plum); }
.ba-card figcaption{
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Trust strip ---------- */
.trust-strip{
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 18px 24px;
  border-top: 1px solid rgba(59,31,92,0.08);
  border-bottom: 1px solid rgba(59,31,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-strip svg{ color: var(--coral); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band{ background: var(--plum); padding: 56px 0; }
.cta-band__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: clamp(24px, 3vw, 30px); }
.cta-band p{ color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 14.5px; }
.cta-band__actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer{ background: var(--plum-deep); color: rgba(255,255,255,0.85); }
.footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 24px 32px;
}
.footer__brand{ display: flex; align-items: center; gap: 12px; }
.footer__mark{ height: 36px; width: auto; }
.footer__word{ font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 16px; }
.footer__tag{ font-size: 12.5px; color: var(--turquoise); margin-top: 2px; }

.footer__col{ display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer__heading{ font-weight: 700; color: var(--white); margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__col a:hover{ color: var(--turquoise); }

.footer__social{ display: flex; gap: 12px; }
.footer__social a{
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer__social a:hover{ border-color: var(--turquoise); color: var(--turquoise); }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .nav__links, .nav__cta{ display: none; }
  .nav__toggle{ display: flex; }

  .hero__inner{ grid-template-columns: 1fr; text-align: center; }
  .hero__sub{ margin-left: auto; margin-right: auto; }
  .hero__actions{ justify-content: center; }
  .hero__art{ order: -1; }
  .hero__badge{ width: min(70%, 260px); }

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

  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }

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

@media (max-width: 520px){
  .footer__inner{ grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}
