/* ==========================================================================
   Eva Monroe — UGC Specialist
   Design tokens + all styles. Mobile-first; breakpoints at 640px and 900px.
   ========================================================================== */

:root {
  /* Colors */
  --cream: #FAF6F1;
  --cream-deep: #F6EFE7;
  --blush: #F2D9D3;
  --blush-strong: #EDBFB7;
  --ink: #3E2C28;
  --brown: #6D5A52;
  --rose: #8C4351;
  --rose-deep: #9E4A5E;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, "Segoe UI", sans-serif;

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 2px 8px rgba(62, 44, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(62, 44, 40, 0.10);
  --shadow-lift: 0 14px 40px rgba(62, 44, 40, 0.14);

  /* Radii */
  --radius-card: 20px;
  --radius-phone: 28px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 10vw, 7.5rem);
  --nav-height: 76px;
}

/* ---------- Reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--rose);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

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

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Utilities ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
}

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

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
  margin-bottom: 0.9rem;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head__sub {
  font-size: 1.1rem;
}

.section-head--wide {
  max-width: none;
}

/* Wide heads let the h2 run across; keep their sub-copy at a readable measure */
.section-head--wide .section-head__sub {
  max-width: 46rem;
}

.section-head__sub--small {
  font-size: 0.95rem;
}

em {
  font-style: italic;
  color: var(--rose);
}

/* Buttons & links */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn--primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 2px solid var(--blush-strong);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.link-arrow:hover {
  color: var(--rose-deep);
  border-color: var(--rose-deep);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: var(--blush);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Media slots (photo/video placeholders) ---------- */

.media-slot {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.media-slot > img,
.media-slot > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.media-slot.has-media > img,
.media-slot.has-media > video {
  opacity: 1;
}

.media-slot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(160deg, var(--blush) 10%, var(--blush-strong) 90%);
  transition: opacity 0.5s ease;
}

.media-slot.has-media .media-slot__placeholder {
  opacity: 0;
  pointer-events: none;
}

.media-slot__monogram {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  color: var(--rose);
  opacity: 0.55;
}

.media-slot__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250, 246, 241, 0.85);
  color: var(--rose);
  font-size: 1.1rem;
  padding-left: 4px;
}

.media-slot__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
}

.media-slot--arch {
  border-radius: var(--radius-pill) var(--radius-pill) var(--radius-card) var(--radius-card);
  aspect-ratio: 4 / 5;
}

/* VSL slot: the video sits under the photo and takes over once vsl.mp4 exists */

.media-slot--vsl > video {
  z-index: 0;
}

.media-slot--vsl > img {
  z-index: 1;
}

.media-slot--vsl.has-vsl > img {
  opacity: 0;
  pointer-events: none;
}

.media-slot--vsl.has-vsl > video {
  cursor: pointer;
}

.vsl-play {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.vsl-play:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.media-slot--vsl.is-vsl-playing .vsl-play {
  opacity: 0.25;
}

.media-slot--vsl.is-vsl-playing .vsl-play:hover,
.media-slot--vsl.is-vsl-playing .vsl-play:focus-visible {
  opacity: 1;
}


/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Blur lives on a pseudo-element: backdrop-filter on .nav itself would turn it
   into the containing block for the fixed mobile menu overlay. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 246, 241, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav--scrolled {
  border-bottom-color: var(--blush);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-height);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
}

.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.3rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

@media (max-width: 899px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: var(--cream);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.nav-open .nav__menu {
    visibility: visible;
    opacity: 1;
  }

  .nav__link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
  }

  body.nav-open .nav__toggle-bar:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  body.nav-open .nav__toggle-bar:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(2.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  margin-bottom: 0.5em;
}

.hero__sub {
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero__media {
  position: relative;
  max-width: 320px;
  margin-inline: auto;
  width: 100%;
}

/* Cutesy offset frame around the hero photo/VSL, echoing the About section */
.hero__frame {
  position: relative;
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border: 2px solid var(--blush-strong);
  border-radius: var(--radius-pill) var(--radius-pill) var(--radius-card) var(--radius-card);
  z-index: 0;
}

.hero__frame .media-slot {
  position: relative;
  z-index: 1;
  border: 6px solid var(--blush-strong);
}

/* Bias the hero crop downward so both her hair and her hands stay in frame */
.hero__frame .media-slot > img,
.hero__frame .media-slot > video {
  object-position: 50% 72%;
}

.hero__caption {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
}

.hero__caption em {
  color: var(--rose);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: 4rem;
  }

  .hero__media {
    max-width: 400px;
  }
}

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

/* ---------- Niches marquee ---------- */

.niches {
  background: var(--blush);
  padding-block: 2.2rem;
  overflow: hidden;
}

.niches__lead {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
  margin-bottom: 1.2rem;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  flex-shrink: 0;
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  white-space: nowrap;
}

.marquee__star {
  color: var(--rose);
  font-size: 1rem;
}

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

/* ---------- Work / portfolio ---------- */

.work__grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
}

.phone {
  flex: 0 0 min(72vw, 300px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* Bezel is an inset ring (not a border) so the box — and the video in it —
   stays exactly 9:16. */
.phone__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-phone);
  box-shadow: inset 0 0 0 6px var(--ink), var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone:hover .phone__frame {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 6px var(--ink), var(--shadow-lift);
}

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(62, 44, 40, 0.35);
  z-index: 3;
}

.phone__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(62, 44, 40, 0.18);
  color: var(--cream);
  font-size: 1.6rem;
  text-shadow: 0 2px 12px rgba(62, 44, 40, 0.5);
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.phone__frame.is-playing .phone__play {
  opacity: 0;
  background: transparent;
}

/* During a silent hover-preview, hovering shows the ▶ as the "click for sound" cue */
.phone__frame.is-playing .phone__play:hover,
.phone__frame.is-playing .phone__play:focus-visible {
  opacity: 1;
}

/* Once sound is playing (clicked), the button stays fully hidden — even under the cursor.
   Keyboard focus still reveals it for accessibility. */
.phone__frame.is-sound .phone__play,
.phone__frame.is-sound .phone__play:hover {
  opacity: 0;
}

.phone__frame.is-sound .phone__play:focus-visible {
  opacity: 1;
}

@media (min-width: 640px) {
  /* Flex-wrap + center so any number of cards (e.g. 5) leaves a balanced,
     centered trailing row instead of an empty grid cell. */
  .work__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .phone {
    flex: 0 1 calc(50% - 1.5rem);
    max-width: 300px;
    scroll-snap-align: none;
  }
}

@media (min-width: 900px) {
  .work__grid {
    gap: 2.5rem;
  }

  .phone {
    flex: 0 1 300px;
  }
}

/* ---------- Services ---------- */

.services__grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--blush);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* "Light up" on hover: lift + blush glow ring + accents warming up */
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blush-strong);
  box-shadow: var(--shadow-lift), 0 0 0 6px rgba(242, 217, 211, 0.55);
}

.service-card:hover .service-card__num {
  color: var(--rose-deep);
}

.service-card:hover .service-card__tag {
  background: var(--rose);
  color: var(--cream);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

/* Add-Ons card: the title sits where the number would be */
.service-card__top h3 {
  margin-bottom: 0;
}

.service-card__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: var(--rose);
  transition: color 0.25s ease;
}

.service-card__tag {
  padding: 0.3rem 0.85rem;
  background: var(--blush);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.service-card h3 {
  margin-bottom: 0.4em;
}

.service-card p {
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-card__list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.service-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ---------- Photos ---------- */

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

.photo-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Per-tile framing nudges within the cover crop */
.photos__grid .photo-card:nth-child(1) img {
  object-position: 50% 25%; /* Hawaiian Tropic GIF sits lower — shows more of the top */
}

.photos__grid .photo-card:nth-child(2) img {
  object-position: 0% 50%; /* Origani jar: fills the frame, anchored to the left edge */
}

.photos__grid .photo-card:nth-child(3) img {
  object-position: 50% 100%; /* Guerlain edit anchored to its bottom edge — crop only at the top */
}

.photos__grid .photo-card:nth-child(6) img {
  object-position: 50% 25%; /* sepia edit sits lower — script lettering more visible */
}

.photos__grid .photo-card:nth-child(7) img {
  object-position: 50% 75%; /* chat GIF sits higher — shows more of the bubbles */
}

.media-slot__monogram--sm {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-style: normal;
}

@media (min-width: 900px) {
  .photos__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ---------- About ---------- */

.about__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__media {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
}

.about__photo {
  position: relative;
  z-index: 1;
  border: 6px solid var(--blush-strong);
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  border: 2px solid var(--blush-strong);
  border-radius: var(--radius-pill) var(--radius-pill) var(--radius-card) var(--radius-card);
  z-index: 0;
}

.about__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.8rem;
}

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 42fr 58fr;
    gap: 5rem;
  }

  .about__media {
    max-width: 380px;
  }
}

/* ---------- Process ---------- */

.process__steps {
  list-style: none;
  position: relative;
  display: grid;
  gap: 2.2rem;
  padding-left: 0;
}

.process-step {
  position: relative;
  padding-left: 4.2rem;
}

.process-step__num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: 0.3em;
  padding-top: 0.55rem;
}

.process-step p {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}

.process__cta {
  margin-top: 1.8rem;
}

@media (min-width: 900px) {
  .process__cta {
    text-align: right;
  }
}

/* vertical dotted rail (mobile) */
.process__steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 26px;
  border-left: 2px dashed var(--blush-strong);
}

@media (min-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  .process-step {
    padding-left: 0;
    padding-top: 4.4rem;
  }

  .process-step__num {
    top: 0;
    left: 0;
  }

  /* horizontal dotted connector */
  .process__steps::before {
    left: 60px;
    right: 60px;
    top: 26px;
    bottom: auto;
    border-left: none;
    border-top: 2px dashed var(--blush-strong);
  }
}

/* ---------- FAQ ---------- */

.faq__list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--blush);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-item__heading {
  margin: 0;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__panel p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  font-size: 0.98rem;
}

/* ---------- Contact (dark inversion) ---------- */

.contact {
  background: var(--ink);
  color: var(--blush);
}

.contact h2 {
  color: var(--cream);
}

.contact__inner {
  display: grid;
  gap: 3rem;
}

.contact__sub {
  font-size: 1.1rem;
  color: var(--blush);
}

.contact__sub u {
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lift);
  max-width: 560px;
  width: 100%;
}

.contact-form__row {
  display: grid;
  gap: 0;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.field label span[aria-hidden] {
  color: var(--rose);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--blush-strong);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(140, 67, 81, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238C4351' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.field.field--invalid input,
.field.field--invalid textarea {
  border-color: var(--rose-deep);
}

.field__error {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-deep);
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.4rem;
}

.contact-form__status {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form__status .form-alert {
  background: #fff;
  border: 1.5px solid var(--rose-deep);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--rose-deep);
  margin: 0;
}

.contact-form__success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3em;
}

.contact-form__success p {
  margin: 0;
  color: var(--brown);
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--blush);
  padding-block: 3rem 2rem;
}

.footer__inner {
  display: grid;
  gap: 2rem;
}

.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.2em;
}

.footer__name span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--rose);
}

.footer__tagline {
  font-size: 0.95rem;
  margin: 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.footer__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--rose);
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--rose);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  align-items: center;
  font-size: 0.9rem;
}

.footer__meta a {
  color: var(--rose);
  font-weight: 500;
}

.footer__meta p {
  margin: 0;
}

@media (min-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }

  /* Page links in one straight line, centered between brand and socials */
  .footer__nav {
    justify-self: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .footer__social {
    justify-self: end;
  }

  .footer__meta {
    grid-column: 1 / -1;
    justify-content: space-between;
    border-top: 1px solid var(--blush);
    padding-top: 1.4rem;
    margin-top: 0.6rem;
  }
}

/* ---------- Scroll reveal (JS-gated, motion-safe) ---------- */

@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  html.js [data-reveal].revealed {
    opacity: 1;
    transform: none;
  }

  html.js [data-reveal-delay="1"] {
    transition-delay: 0.12s;
  }

  html.js [data-reveal-delay="2"] {
    transition-delay: 0.24s;
  }

  html.js [data-reveal-delay="3"] {
    transition-delay: 0.36s;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 1;
    padding-right: 0;
  }

  .marquee__group[aria-hidden="true"] {
    display: none;
  }

  .btn,
  .service-card,
  .phone__frame,
  .faq-item__icon,
  .faq-item__panel {
    transition: none;
  }
}
