/* =========================================================
   BLUSH BEAUTY STUDIO — COMPACT SHARED STYLESHEET
   Portfolio concept project — fictional brand
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --cream: #fff8f2;
  --cream-deep: #f7efe6;
  --neutral: #f4ece5;
  --plum: #4a1942;
  --plum-soft: #6b2c61;
  --pink: #f7b6d2;
  --pink-dim: #f4c9db;
  --lavender: #cdb4db;
  --lavender-dim: #e4d7ec;
  --ink: #2b1327;
  --line: rgba(74, 25, 66, 0.12);

  --serif: "Fraunces", "Iowan Old Style", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  margin: 0;
  font-weight: 500;
  color: var(--plum);
  line-height: 1.12;
}

p {
  margin: 0;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 18px;
  }
}

.eyebrow-mark {
  color: var(--plum-soft);
}

/* =========================================================
   CONCEPT BANNER
   ========================================================= */

.concept-banner {
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  padding: 7px 16px;
}

.concept-banner strong {
  font-weight: 600;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 28px;

  background: var(--cream);

  transition:
    background 0.35s var(--ease),
    padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-nav.scrolled {
  background: rgba(255, 248, 242, 0.94);
  backdrop-filter: blur(12px);
  padding: 11px 28px;
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--plum);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--plum);
  position: relative;
  padding: 3px 0;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--plum-soft);
  font-weight: 600;
}

.nav-cta {
  background: var(--plum);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;

  transition:
    background 0.3s,
    transform 0.3s;
}

.nav-cta:hover {
  background: var(--plum-soft);
  transform: translateY(-1px);
}

.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  z-index: 600;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--plum);
  border-radius: 2px;

  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}

.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);
}

@media (max-width: 900px) {
  .site-nav {
    padding: 14px 20px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--plum);

    flex-direction: column;
    justify-content: center;

    gap: 25px;

    transform: translateX(100%);
    transition: transform 0.45s var(--ease);

    z-index: 550;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .nav-links a::after {
    background: var(--pink);
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta-mobile {
    display: inline-block;
    background: var(--pink);
    color: var(--plum);

    margin-top: 8px;
    padding: 11px 25px;

    border-radius: 999px;

    font-family: var(--sans);
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 25px;

  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s;
}

.btn-primary {
  background: var(--plum);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--plum-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(74, 25, 66, 0.2);
}

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

.btn-outline:hover {
  background: var(--plum);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--plum);
}

.btn-light:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in > *:nth-child(1) {
  transition-delay: 0.04s;
}

.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.22s;
}

/* =========================================================
   HERO
   ========================================================= */

.page-hero {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  padding: 42px 28px 50px;

  display: grid;
  grid-template-columns: 1fr 0.82fr;

  gap: 45px;
  align-items: center;
}

.page-hero .copy {
  padding-left: 0;
}

.page-hero .copy h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  max-width: 620px;
}

.page-hero .copy p {
  margin-top: 18px;

  font-size: 1rem;
  max-width: 470px;

  color: var(--plum-soft);
}

.page-hero .copy .btn-row {
  margin-top: 24px !important;
}

.page-hero .media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;

  /* IMPORTANT: reduced from 4/5 */
  aspect-ratio: 5 / 4;

  background: linear-gradient(
    150deg,
    var(--lavender-dim),
    var(--pink-dim)
  );
}

.page-hero .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 8s var(--ease);
}

.page-hero .media:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 30px;

    padding: 32px 20px 45px;
  }

  .page-hero .media {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .page-hero .copy h1 {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 72px 28px;
}

.section.tight {
  padding: 48px 28px;
}

.section.plum {
  background: var(--plum);
  color: var(--cream);
}

.section.plum h2,
.section.plum h3 {
  color: var(--cream);
}

.section.neutral {
  background: var(--neutral);
}

.section-head {
  max-width: 640px;
  margin-bottom: 38px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
}

.section-head p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--plum-soft);
}

.section.plum .section-head p {
  color: var(--pink-dim);
}

@media (max-width: 640px) {
  .section {
    padding: 52px 18px;
  }

  .section.tight {
    padding: 40px 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }
}

/* =========================================================
   CARD GRID
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .card-grid,
  .card-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .card-grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
  background: var(--cream);

  border-radius: 18px;
  overflow: hidden;

  border: 1px solid var(--line);

  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(74, 25, 66, 0.1);
}

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

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.65s var(--ease);
}

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

.service-card .body {
  padding: 19px 18px 21px;
}

.service-card .body h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}

.service-card .body p {
  font-size: 0.88rem;
  color: var(--plum-soft);
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-card {
  padding: 26px 23px;

  border-radius: 18px;

  background: var(--neutral);

  border-top: 3px solid var(--pink);

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 28px rgba(74, 25, 66, 0.08);
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.89rem;
  color: var(--plum-soft);
}

.feature-card:nth-child(2) {
  border-top-color: var(--lavender);
}

.feature-card:nth-child(3) {
  border-top-color: var(--plum);
}

.value-card {
  padding: 25px 22px;

  border-radius: 18px;

  background: var(--cream);
  border: 1px solid var(--line);
}

.value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  font-style: italic;
}

.value-card p {
  font-size: 0.89rem;
  color: var(--plum-soft);
}

/* =========================================================
   INTRO SECTION
   ========================================================= */

.intro-split {
  display: grid;

  grid-template-columns: 0.82fr 1.18fr;

  gap: 48px;

  align-items: center;
}

.intro-split .media {
  border-radius: 22px;
  overflow: hidden;

  aspect-ratio: 4 / 4.5;
}

.intro-split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.7s var(--ease);
}

.intro-split .media:hover img {
  transform: scale(1.03);
}

.intro-split .copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.intro-split .copy p {
  margin-top: 14px;

  color: var(--plum-soft);

  font-size: 1rem;

  max-width: 460px;
}

.intro-split .copy .btn {
  margin-top: 21px;
}

@media (max-width: 900px) {
  .intro-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-split .media {
    max-width: 560px;
  }
}

/* =========================================================
   GALLERY PREVIEW
   ========================================================= */

.media-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 190px;

  gap: 14px;
}

.media-grid .cell {
  border-radius: 17px;
  overflow: hidden;

  position: relative;
}

.media-grid .cell.tall {
  grid-row: span 2;
}

.media-grid .cell.wide {
  grid-column: span 2;
}

.media-grid .cell img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s var(--ease);
}

.media-grid .cell:hover img {
  transform: scale(1.05);
}

.media-grid .cell .tag {
  position: absolute;

  left: 12px;
  bottom: 12px;

  background: rgba(255, 248, 242, 0.92);

  color: var(--plum);

  font-size: 0.73rem;

  padding: 5px 12px;

  border-radius: 999px;

  font-weight: 600;
}

@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .media-grid .cell.wide {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .media-grid {
    gap: 10px;
    grid-auto-rows: 145px;
  }
}

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  border-radius: 26px;

  padding: 52px 48px;

  text-align: left;

  background: linear-gradient(
    135deg,
    var(--plum) 0%,
    #3a1234 100%
  );

  color: var(--cream);

  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";

  position: absolute;

  right: -70px;
  top: -70px;

  width: 250px;
  height: 250px;

  background: radial-gradient(
    circle,
    var(--pink) 0%,
    transparent 70%
  );

  opacity: 0.32;
}

.cta-band h2 {
  color: var(--cream);

  font-size: clamp(1.8rem, 3.4vw, 2.5rem);

  max-width: 600px;
}

.cta-band p {
  color: var(--pink-dim);

  margin-top: 12px;

  max-width: 520px;

  font-size: 0.98rem;
}

.cta-band .btn-row {
  margin-top: 24px;

  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .cta-band {
    padding: 38px 25px;
    border-radius: 22px;
  }
}

/* =========================================================
   TIMELINE
   ========================================================= */

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 8px;
  top: 6px;
  bottom: 6px;

  width: 2px;

  background: var(--line);
}

.timeline-step {
  position: relative;

  padding-bottom: 36px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";

  position: absolute;

  left: -34px;
  top: 2px;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--cream);

  border: 2px solid var(--pink);
}

.timeline-step h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.timeline-step p {
  color: var(--plum-soft);
  max-width: 480px;
}

.timeline-step .step-index {
  font-size: 0.78rem;

  color: var(--plum-soft);

  letter-spacing: 0.03em;

  margin-bottom: 4px;

  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--plum);

  color: var(--pink-dim);

  padding: 50px 28px 22px;
}

.footer-top {
  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr;

  gap: 32px;

  padding-bottom: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand h3 {
  color: var(--cream);

  font-style: italic;

  font-size: 1.45rem;
}

.footer-brand p {
  margin-top: 8px;

  color: var(--pink-dim);

  font-size: 0.88rem;

  max-width: 280px;
}

.footer-col h4 {
  color: var(--cream);

  font-family: var(--sans);

  font-size: 0.85rem;

  font-weight: 700;

  margin-bottom: 11px;
}

.footer-col a {
  display: block;

  padding: 4px 0;

  font-size: 0.86rem;

  color: var(--pink-dim);

  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 16px;

  flex-wrap: wrap;

  gap: 10px;
}

.footer-bottom p {
  font-size: 0.76rem;

  color: rgba(244, 201, 219, 0.7);

  max-width: 600px;
}

@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr;

    gap: 24px;
  }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;

  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;

  font-weight: 600;

  color: var(--plum);
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;

  border-radius: 10px;

  border: 1.5px solid var(--line);

  background: var(--cream);

  font-family: var(--sans);

  font-size: 0.9rem;

  color: var(--ink);

  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);

  box-shadow: 0 0 0 3px rgba(247, 182, 210, 0.25);

  outline: none;
}

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

.contact-info-card {
  background: var(--neutral);

  border-radius: 20px;

  padding: 28px 25px;
}

.contact-info-card .row {
  display: flex;

  gap: 14px;

  padding: 13px 0;

  border-bottom: 1px solid var(--line);
}

.contact-info-card .row:last-child {
  border-bottom: none;
}

.contact-info-card .row h4 {
  font-size: 0.8rem;

  color: var(--plum-soft);

  margin-bottom: 3px;

  font-weight: 700;
}

.contact-info-card .row p {
  font-size: 0.9rem;
}

.map-placeholder {
  border-radius: 20px;

  height: 280px;

  margin-top: 40px;

  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--line) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--line) 40px
    ),
    var(--cream-deep);

  display: flex;

  align-items: center;
  justify-content: center;

  position: relative;
}

.map-placeholder .pin {
  width: 42px;
  height: 42px;

  border-radius: 50% 50% 50% 0;

  background: var(--plum);

  transform: rotate(-45deg);

  position: relative;
}

.map-placeholder .pin::after {
  content: "";

  position: absolute;

  inset: 11px;

  background: var(--pink);

  border-radius: 50%;
}

.map-placeholder span.label {
  position: absolute;

  bottom: 20px;

  background: var(--cream);

  padding: 7px 15px;

  border-radius: 999px;

  font-size: 0.78rem;

  color: var(--plum-soft);

  box-shadow: 0 5px 14px rgba(74, 25, 66, 0.1);
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.filter-row {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 17px;

  border-radius: 999px;

  border: 1.5px solid var(--line);

  font-size: 0.82rem;

  font-weight: 600;

  color: var(--plum-soft);

  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--plum);

  color: var(--cream);

  border-color: var(--plum);
}

.masonry {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;

  grid-auto-flow: dense;
}

.masonry .g-item {
  border-radius: 16px;

  overflow: hidden;

  cursor: pointer;

  position: relative;

  grid-row: span 2;
}

.masonry .g-item.short {
  grid-row: span 1;
}

.masonry .g-item.tall {
  grid-row: span 3;
}

.masonry .g-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s var(--ease);
}

.masonry .g-item:hover img {
  transform: scale(1.06);
}

.masonry .g-item.hide {
  display: none;
}

@media (max-width: 1024px) {
  .masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .masonry {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;

  inset: 0;

  background: rgba(43, 19, 39, 0.94);

  z-index: 900;

  display: flex;

  align-items: center;
  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.3s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(88vw, 900px);

  max-height: 82vh;

  border-radius: 12px;

  object-fit: contain;
}

.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;

  color: var(--cream);

  font-size: 1.4rem;

  background: rgba(255, 255, 255, 0.12);

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  transition: background 0.25s;
}

.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox .lb-close {
  top: 20px;
  right: 20px;
}

.lightbox .lb-prev {
  left: 20px;
  top: 50%;

  transform: translateY(-50%);
}

.lightbox .lb-next {
  right: 20px;
  top: 50%;

  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .lightbox .lb-prev {
    left: 8px;
  }

  .lightbox .lb-next {
    right: 8px;
  }

  .lightbox .lb-close {
    top: 10px;
    right: 10px;
  }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
  display: flex;

  gap: 11px;

  align-items: center;

  margin-top: 25px;

  font-size: 0.8rem;

  color: var(--plum-soft);

  font-weight: 600;
}

.trust-strip .dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--pink);
}

/* =========================================================
   RESPONSIVE FINAL TOUCHES
   ========================================================= */

@media (max-width: 640px) {
  .btn {
    padding: 11px 21px;
    font-size: 0.84rem;
  }

  .btn-row {
    gap: 9px;
  }

  .trust-strip {
    margin-top: 20px;
    gap: 8px;
    font-size: 0.74rem;
  }
}

/* =========================================================
   SMALL SCREEN SPACING
   ========================================================= */

@media (max-width: 480px) {
  .page-hero {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .page-hero .copy p {
    font-size: 0.92rem;
  }

  .service-card .body {
    padding: 17px;
  }

  .feature-card {
    padding: 22px 19px;
  }

  .cta-band {
    padding: 32px 21px;
  }
}