/* =========================================================
   GINA — by Anaïs Girot — Design System
   Palette: plum #402531 · sky #D5EAF2 · coral #F25E3D
            lime #EDF263 · cream #FFF9F1
   Font: Épilogue (Google Fonts) — used for every text style,
   hierarchy is built with weight / size / italic / spacing.
   Loaded via a <link> tag in each page's <head> (not @import,
   which would serialise the font request behind this file). */

:root {
  --plum: #402531;
  --plum-soft: #56384a;
  --sky: #D5EAF2;
  --sky-deep: #b9dbe9;
  --coral: #F25E3D;
  --coral-dark: #d8462a;
  --lime: #EDF263;
  --cream: #FFF9F1;
  --white: #ffffff;

  --ink: var(--plum);
  --ink-soft: rgba(64, 37, 49, 0.72);
  --ink-faint: rgba(64, 37, 49, 0.5);
  --on-plum: var(--cream);
  --on-plum-soft: rgba(255, 249, 241, 0.75);

  --font: 'Epilogue', 'Helvetica Neue', Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --shadow-card: 0 18px 40px -22px rgba(64, 37, 49, 0.35);

  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

section { position: relative; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
h1, .h1 { font-size: clamp(2.5rem, 5.5vw + 1rem, 4.75rem); }
h2, .h2 { font-size: clamp(1.9rem, 3vw + 1rem, 3rem); }
h3, .h3 { font-size: clamp(1.35rem, 1.2vw + 1rem, 1.75rem); }
.lede {
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}
/* These dim relative to whatever text colour they inherit (dark ink on a
   light section, cream on a dark one) instead of a fixed colour, so they
   never go invisible on a coloured background. */
.body-l { font-size: clamp(1rem, 0.4vw + 1rem, 1.15rem); color: inherit; opacity: 0.82; }
.muted { color: inherit; opacity: 0.72; }
.script-accent {
  font-style: italic;
  font-weight: 500;
  color: inherit;
  opacity: 0.78;
}
.on-plum { color: var(--on-plum); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color .15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(242, 94, 61, 0.65);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-dark {
  background: var(--plum);
  color: var(--cream);
}
.btn-dark:hover { background: var(--plum-soft); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }
.btn-outline.on-plum-outline { border-color: var(--cream); color: var(--cream); }
.btn-outline.on-plum-outline:hover { background: var(--cream); color: var(--plum); }
.btn-ghost-sky {
  background: var(--sky);
  color: var(--plum);
}
.btn-ghost-sky:hover { background: var(--sky-deep); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(64, 37, 49, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}
.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.logo span { color: var(--coral); }
.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { position: relative; padding-block: 0.25rem; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  transition: right 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--coral); }
.header-cta { display: none; }

/* Desktop dropdown: The Plot > The Edit / The Build / The Story */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--plum);
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--sky); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--plum);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--cream);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 6.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; }
.mobile-menu a[aria-current="page"] { color: var(--coral); }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-submenu { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-submenu-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.9rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(64,37,49,0.15);
}
.mobile-submenu-links a { font-size: 1.05rem; font-weight: 600; opacity: 0.85; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- Section shells ---------- */
.section { padding-block: var(--section-y); }
.section-cream { background: var(--cream); }
.section-sky { background: var(--sky); }
.section-plum { background: var(--plum); color: var(--on-plum); }
.section-lime { background: var(--lime); }

.section-curve-top { clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%); margin-top: -1px; }
.section-curve-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%); }
.section-curve-both {
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
}

/* ---------- Hero layouts ---------- */
.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); }
.hero-media.transparent-media img { border-radius: 0; box-shadow: none; filter: drop-shadow(0 20px 30px rgba(64,37,49,0.25)); }
/* Let the transparent hero graphic rest right on the line between sections,
   the way it does in Anaïs's reference, instead of floating with a gap.
   The image dips a small, size-proportional amount into the next section
   and stays visible above its background (z-index) — and that next
   section gets extra top clearance so its own heading never sits under
   the overlap, at any viewport width. */
.hero-bleed-bottom { padding-bottom: 0; position: relative; z-index: 1; }
.hero-bleed-bottom .hero-media.transparent-media {
  position: relative;
  z-index: 5;
}
.hero-bleed-bottom .hero-media.transparent-media img { margin-bottom: -5%; }
.clears-hero-bleed { padding-top: clamp(5rem, 16vw, 9rem) !important; }

/* Let the ring graphic's right edge run all the way to the browser edge,
   on every screen size — not just once the container hits its max-width. */
.container.bleed-right .hero-media.transparent-media {
  margin-right: calc(-1 * var(--gutter));
}
@media (min-width: 900px) {
  .container.bleed-right { max-width: none; padding-right: 0; }
  .container.bleed-right .hero-media.transparent-media { margin-right: 0; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .hero-2col { grid-template-columns: 1.1fr 0.9fr; }
  .hero-2col.media-first { grid-template-columns: 0.9fr 1.1fr; }
  .hero-2col.media-first .hero-media { order: 2; }
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
/* 2 columns from a fairly small width so tablets (and landscape phones)
   never sit stuck in a single, long-scrolling column. */
@media (min-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Dense variant for simple image+name cards (client/portfolio walls) —
   more columns, sooner, so long lists don't turn into endless scroll. */
.portfolio-grid-compact { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 480px) { .portfolio-grid-compact { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .portfolio-grid-compact { grid-template-columns: repeat(6, 1fr); } }
.portfolio-grid-compact .portfolio-card { gap: 0.5rem; }
.portfolio-grid-compact .portfolio-card img { aspect-ratio: 1/1; object-fit: cover; border: none; }
.portfolio-grid-compact .portfolio-card h3 { font-size: 0.95rem; }
.portfolio-grid-compact .portfolio-card .tag { font-size: 0.66rem; }

.card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-card);
}
.card-cream { background: var(--cream); color: var(--plum); box-shadow: none; border: 1px solid rgba(64,37,49,0.1); }
.card-sky { background: var(--sky); color: var(--plum); box-shadow: none; }
.card-plum { background: var(--plum); color: var(--on-plum); box-shadow: none; }

.offer-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.offer-card .num { font-weight: 800; color: var(--coral); font-size: 0.9rem; }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pricing-card.is-featured { outline: 2px solid var(--coral); }
.pricing-card ul { display: flex; flex-direction: column; gap: 0.55rem; }
.pricing-card li { padding-left: 1.5rem; position: relative; }
.pricing-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--coral); font-weight: 800;
}
.price-tag { font-weight: 800; font-size: 1.05rem; }
.price-tag small { font-weight: 500; font-size: 0.85rem; color: inherit; opacity: 0.72; }

.portfolio-card { display: flex; flex-direction: column; gap: 0.9rem; }
.portfolio-card img {
  border-radius: var(--radius-m);
  border: 1px solid rgba(64, 37, 49, 0.14);
  aspect-ratio: 3/2;
  object-fit: contain;
  background: var(--cream);
  width: 100%;
}
.portfolio-card .tag { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); }
/* Each portfolio category keeps its own consistent image format instead of
   forcing every kind of file (screenshots, product photography, portraits)
   into the same crop. */
.portfolio-grid-edit .portfolio-card img { aspect-ratio: 4/3; object-fit: cover; border: none; }

/* ---------- Numbered columns (About) ---------- */
.numbered-col .num { font-size: 2rem; font-weight: 800; color: var(--coral); }
.numbered-col h3 { margin-top: 0.5rem; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(64,37,49,0.12);
  padding-block: 1.4rem;
  /* fade the track out at both edges instead of hard-cropping the text */
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: inherit;
  opacity: 0.8;
}
.marquee-track .marquee-star {
  opacity: 1;
  color: var(--cream);
  font-size: 0.9em;
}
.section-cream .marquee-track .marquee-star,
.section-sky .marquee-track .marquee-star {
  color: var(--coral);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; overflow-x: auto; }
}

/* ---------- Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 0.85rem; }
.accordion-item {
  border: 1.5px solid rgba(255,249,241,0.35);
  border-radius: 28px; /* generous radius: reads as a full pill when closed, a rounded card when open */
  overflow: hidden;
  background: transparent;
  transition: border-color 0.25s ease, box-shadow 0.3s cubic-bezier(.34,1.56,.64,1),
              transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.25s ease;
}
.section-cream .accordion-item,
.section-sky .accordion-item { border-color: rgba(64,37,49,0.25); }
/* Fun, on-brand "pop" when a panel opens — the row flips to a bright card
   with a lime ring, exactly like the accordions on Anaïs's reference. */
.accordion-item.is-open {
  background: var(--cream);
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime);
  transform: translateY(-2px) scale(1.01);
}
.accordion-item.is-open .accordion-trigger,
.accordion-item.is-open .accordion-panel-inner {
  color: var(--plum);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  text-align: left;
  color: inherit;
}
.accordion-trigger .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 0; /* hide the literal "+" text content in the markup */
  transition: transform 0.3s ease;
}
.accordion-trigger .icon::before {
  content: "›";
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1;
}
.accordion-item.is-open .accordion-trigger .icon {
  transform: rotate(90deg);
  color: var(--coral);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-inline: 1.5rem;
}
.accordion-panel-inner { padding-bottom: 1.3rem; opacity: 0.9; }
.accordion-item.is-open .accordion-panel { max-height: 600px; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}
@media (min-width: 800px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-step { position: relative; padding-top: 1.5rem; border-top: 3px solid var(--coral); }
.timeline-step .step-num { font-weight: 800; font-size: 1.1rem; color: var(--coral); }
.timeline-step .step-week { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: inherit; opacity: 0.6; }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-m); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.compare-table th, .compare-table td {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(64,37,49,0.1);
  font-size: 0.92rem;
  vertical-align: top;
}
.compare-table thead th { background: var(--plum); color: var(--on-plum); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table tbody th { font-weight: 700; white-space: nowrap; }
.compare-table tbody tr:nth-child(even) { background: rgba(213,234,242,0.4); }

/* ---------- FAQ list uses accordion classes above ---------- */

/* ---------- Forms ---------- */
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-field label { font-weight: 700; font-size: 0.9rem; }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(64,37,49,0.2);
  background: var(--white);
  font-size: 1rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
/* Contact page: show the form before the contact details on small screens */
@media (max-width: 639px) {
  .contact-grid form { order: -1; margin-bottom: 2.5rem; }
}
.form-note { font-size: 0.85rem; color: inherit; opacity: 0.72; margin-top: 0.5rem; }

/* ---------- CTA banners ---------- */
.cta-banner {
  background: var(--coral);
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.cta-banner.is-dark { background: var(--plum); }
.cta-banner.is-sky { background: var(--sky); color: var(--plum); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sky);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
}
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(64,37,49,0.15);
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.gap-s { gap: 0.75rem; }
.gap-m { gap: 1.5rem; }
.gap-l { gap: 2.5rem; }
.mt-l { margin-top: clamp(2rem, 4vw, 3rem); }
.mb-l { margin-bottom: clamp(2rem, 4vw, 3rem); }
.max-w-prose { max-width: 60ch; }
.center-col { margin-inline: auto; text-align: center; }
.divider { height: 1px; background: rgba(64,37,49,0.15); border: none; margin-block: 1.5rem; }
.on-plum .divider { background: rgba(255,249,241,0.2); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.checklist li { padding-left: 1.6rem; position: relative; margin-bottom: 0.9rem; }
.checklist.on-plum li::before, .checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- Collage stage (home "Hi, I'm Anaïs" flatlay) ---------- */
.collage-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
  margin-inline: auto;
}
.collage-item {
  position: absolute;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), z-index 0s;
}
.collage-item img { width: 100%; display: block; pointer-events: none; border-radius: 0; box-shadow: none; }
.collage-item.has-caption { cursor: pointer; }
.collage-item.has-caption:hover,
.collage-item.has-caption:focus-visible,
.collage-item.has-caption.is-active {
  transform: scale(1.08) rotate(0deg) !important;
  z-index: 30 !important;
}
.collage-item .hover-caption {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  background: var(--plum);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}
.collage-item.has-caption:hover .hover-caption,
.collage-item.has-caption:focus-visible .hover-caption,
.collage-item.has-caption.is-active .hover-caption {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 640px) {
  .collage-item .hover-caption { white-space: normal; width: max-content; max-width: 60vw; text-align: center; }
}

/* ---------- Photo carousel (The Story) ---------- */
.carousel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.carousel img {
  flex: 0 0 auto;
  width: min(72vw, 320px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-m);
  scroll-snap-align: start;
}
.carousel-controls { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 0.9rem; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.carousel-btn:hover { background: var(--coral); color: var(--cream); }

/* ---------- Instagram follow block ---------- */
.instagram-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.instagram-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral), #c94e8a 60%, #6f4bd6);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 1.6rem;
}
