/* ============================================================
   BLOOMI — Direction A: Bold & Playful
   Palette: warm cream, deep aubergine, coral, honey, bloom pink
   Type: Fraunces (display) · DM Sans (body) · Caveat (accent)
   ============================================================ */

:root {
  --cream: #FFF6EC;
  --cream-2: #FBEAD5;
  --ink: #1F1B24;
  --ink-soft: #3A3240;
  --coral: #E85A4F;
  --coral-deep: #C73E34;
  --pink: #E38BA8;
  --pink-deep: #C85F83;
  --gold: #E8B04B;
  --gold-deep: #B8841E;
  --sage: #7C9885;
  --white: #FFFFFF;

  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(31, 27, 36, 0.08);
  --shadow-md: 0 12px 36px rgba(31, 27, 36, 0.12);
  --shadow-lg: 0 30px 60px rgba(31, 27, 36, 0.18);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  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; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
em {
  font-style: italic;
  color: var(--coral-deep);
  font-feature-settings: "kern" 1;
  font-variant-alternates: normal;
}
.hero__title-accent {
  font-feature-settings: "kern" 1;
  font-variant-alternates: normal;
}
.section__title em {
  font-feature-settings: "kern" 1;
  font-variant-alternates: normal;
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(232, 90, 79, 0.1);
}
.eyebrow--light {
  color: var(--cream);
  background: rgba(255, 246, 236, 0.14);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(31, 27, 36, 0.22);
}
.btn--primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 90, 79, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 30px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 236, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  border-color: rgba(31, 27, 36, 0.08);
  background: rgba(255, 246, 236, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.6rem;
}
.nav__logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}
.nav__logo:hover .nav__logo-mark {
  transform: rotate(60deg);
}
.nav__logo-word { line-height: 1; }
.nav__menu {
  display: flex;
  gap: 28px;
  font-weight: 500;
}
.nav__menu a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav__menu a:hover { color: var(--coral-deep); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__menu {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    background: var(--cream);
    padding: 24px var(--gutter);
    gap: 20px;
    border-top: 1px solid rgba(31, 27, 36, 0.08);
    box-shadow: var(--shadow-md);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(227, 139, 168, 0.25), transparent 60%),
              radial-gradient(ellipse at 80% 10%, rgba(232, 176, 75, 0.2), transparent 55%),
              var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero__copy { position: relative; z-index: 2; }

.hero__title {
  margin: 18px 0 20px;
}
.hero__title-accent {
  display: inline-block;
  position: relative;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
  padding: 0 6px;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 16px;
  background: rgba(232, 176, 75, 0.45);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 28px;
  border-top: 1px dashed rgba(31, 27, 36, 0.2);
}
.hero__meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--ink);
}
.hero__meta span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Hero visual cluster */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
}
.hero__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  inset: 0;
  transform: rotate(1.5deg);
}
.hero__photo--small {
  width: 42%;
  aspect-ratio: 1;
  bottom: -32px;
  left: -32px;
  border: 8px solid var(--cream);
  transform: rotate(-6deg);
  z-index: 3;
}
.hero__scribble {
  position: absolute;
  top: -24px;
  right: -16px;
  width: 140px;
  color: var(--coral);
  transform: rotate(14deg);
  opacity: 0.85;
}
.hero__note {
  position: absolute;
  right: -8px;
  top: 22%;
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--ink);
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 14px;
  transform: rotate(6deg);
  box-shadow: var(--shadow-sm);
  z-index: 4;
}

/* Ticker */
.hero__ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 4px solid var(--coral);
}
.ticker__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
}
.ticker__track span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ticker__track span::after {
  content: '❋';
  color: var(--gold);
  font-style: normal;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; margin-top: 20px; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
}
.section__head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  margin-top: 18px;
  margin-bottom: 14px;
}
.section__lede {
  font-size: 1.1rem;
  max-width: 60ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--coral-deep);
}
.service-card ul {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.service-card ul li {
  padding-left: 22px;
  position: relative;
}
.service-card ul li::before {
  content: '❋';
  position: absolute;
  left: 0;
  color: var(--coral);
}

.service-card--coral { background: linear-gradient(180deg, #FFE3DF 0%, var(--white) 55%); }
.service-card--pink  { background: linear-gradient(180deg, #F9DCE5 0%, var(--white) 55%); }
.service-card--gold  { background: linear-gradient(180deg, #FBE7C0 0%, var(--white) 55%); }

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

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 1;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--a {
  width: 70%;
  aspect-ratio: 4 / 5;
  top: 0; left: 0;
  transform: rotate(-2deg);
}
.about__photo--b {
  width: 58%;
  aspect-ratio: 1;
  bottom: 0; right: 0;
  border: 8px solid var(--cream);
  transform: rotate(3deg);
  z-index: 2;
}
.about__sticker {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.about__values {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}
.about__values div {
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(31, 27, 36, 0.18);
}
.about__values strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink);
}
.about__values span { color: var(--ink-soft); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__values div { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream-2); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.process__num {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.process__step:nth-child(2) .process__num { background: var(--pink-deep); }
.process__step:nth-child(3) .process__num { background: var(--gold-deep); }
.process__step:nth-child(4) .process__num { background: var(--ink); }
.process__step h3 { margin-bottom: 8px; }
.process__step p { margin: 0; font-size: 0.96rem; }

@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 18px;
}
.portfolio__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.portfolio__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio__item:hover img { transform: scale(1.07); }
.portfolio__item--tall { grid-row: span 2; }
.portfolio__item--wide { grid-column: span 2; }
.portfolio__item figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 14px 18px;
  background: rgba(255, 246, 236, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.portfolio__item figcaption span {
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.portfolio__item figcaption strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
}
.portfolio__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .portfolio__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .portfolio__item--tall { grid-row: span 1; }
  .portfolio__item--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--wide { grid-column: span 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -14px;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--coral);
  line-height: 1;
}
.testimonial p {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(31, 27, 36, 0.18);
}
.testimonial footer img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial footer strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.testimonial footer span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

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

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 79, 0.45), transparent 65%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -8%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 176, 75, 0.3), transparent 65%);
  pointer-events: none;
}
.cta__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.cta__copy h2 { color: var(--cream); margin: 18px 0 18px; }
.cta__copy h2 em { color: var(--gold); }
.cta__copy p { color: rgba(255, 246, 236, 0.78); max-width: 48ch; }
.cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  font-size: 1.05rem;
}
.cta__contacts a {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--cream);
  border-bottom: 1px dashed rgba(255, 246, 236, 0.4);
  padding-bottom: 2px;
  width: fit-content;
}
.cta__contacts a:hover { color: var(--gold); border-color: var(--gold); }
.cta__contacts span { color: rgba(255, 246, 236, 0.6); font-size: 0.95rem; }

.cta__form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.cta__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.cta__form input,
.cta__form select,
.cta__form textarea {
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(31, 27, 36, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232, 90, 79, 0.15);
}
.cta__form textarea { resize: vertical; min-height: 96px; }
.cta__form button { justify-self: start; margin-top: 4px; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream-2);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p {
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.footer__logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__logo img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.footer__col h3 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}
.footer__col a {
  display: block;
  padding: 4px 0;
  color: var(--ink);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--coral-deep); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px dashed rgba(31, 27, 36, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ============================================================
   LEGAL PAGE (confidentialitate.html)
   ============================================================ */
.legal__inner {
  max-width: 760px;
}
.legal__title {
  margin: 18px 0 8px;
}
.legal__updated {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.legal__lede {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  padding: 22px 26px;
  background: var(--cream-2);
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.legal__block {
  margin-bottom: 36px;
}
.legal__block h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 12px;
}
.legal__block p,
.legal__block li {
  color: var(--ink-soft);
}
.legal__block ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__block ul li {
  position: relative;
  padding-left: 22px;
}
.legal__block ul li::before {
  content: '❋';
  position: absolute;
  left: 0;
  color: var(--coral);
}
.legal__block a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__block a:hover {
  color: var(--ink);
}
.legal__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed rgba(31, 27, 36, 0.2);
}
.legal__back a {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--coral-deep);
}
.legal__back a:hover { color: var(--ink); }

/* Form consent line */
.cta__form-consent {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: -4px 0 0;
  line-height: 1.5;
}
.cta__form-consent a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta__form-consent a:hover { color: var(--ink); }
