/* ===================================================================
   YOUR SOCIAL SOLUTIONS — DESIGN SYSTEM
   Palette: official YSS brand colors (see /images/README.md for swap guide)
   =================================================================== */

:root {
  /* ---- Brand color tokens — EXACT hex codes from YSS brand kit ---- */
  --c-red: #54110F;        /* primary red — buttons, headlines on light bg */
  --c-brown: #30160F;      /* deep brown — darkest backgrounds, body text */
  --c-pink: #F39FA9;       /* primary pink — highlighter swipes, accents */
  --c-pink-2: #FCA8B2;     /* secondary pink — soft accents, hover states */
  --c-cream: #FEF2DF;      /* primary cream — light backgrounds */
  --c-cream-2: #F7E4D7;    /* secondary cream — card backgrounds, dividers */
  --c-white: #FFFFFF;
  --c-black: #000000;

  /* ---- Legacy aliases (used throughout the stylesheet) ----
     Kept so every existing .class rule below keeps working.
     Edit the hex values above, never these aliases. */
  --c-oxblood: var(--c-red);
  --c-oxblood-deep: var(--c-brown);
  --c-espresso: var(--c-brown);
  --c-ivory: var(--c-cream);
  --c-ivory-dim: var(--c-cream-2);
  --c-rose: var(--c-pink);
  --c-rose-soft: var(--c-pink-2);
  --c-peach: var(--c-cream-2);
  --c-terracotta: var(--c-red);

  /* Type */
  --f-display: 'Fraunces', serif;
  --f-script: 'Instrument Serif', serif;
  --f-body: 'Inter', sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --side-pad: clamp(1.5rem, 6vw, 5rem);
}


* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-body);
  background: var(--c-ivory);
  color: var(--c-espresso);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) {
  body { cursor: auto; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

::selection {
  background: var(--c-rose);
  color: var(--c-espresso);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-terracotta);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===================== GRAIN OVERLAY ===================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-terracotta), var(--c-rose));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--c-oxblood);
  transition: opacity 0.2s, background 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-oxblood);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.3s, background 0.3s, opacity 0.2s;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  background: rgba(61, 15, 12, 0.06);
}
.cursor-ring.on-dark {
  border-color: var(--c-ivory);
}
.cursor-dot.on-dark {
  background: var(--c-ivory);
}
@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===================== TYPE UTILITIES ===================== */
.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ===================== HIGHLIGHT SWIPE EFFECT ===================== */
.highlight-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.highlight-text {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-family: var(--f-display);
}
.highlight-swipe {
  position: absolute;
  bottom: 0.06em;
  left: -0.06em;
  right: -0.06em;
  height: 0.5em;
  background: var(--c-rose);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}
.highlight-swipe--rose { background: var(--c-rose); }
.highlight-swipe--peach { background: var(--c-peach); }

.highlight-wrap.in-view .highlight-swipe {
  animation: swipeIn 0.7s var(--ease-out) forwards;
}
@keyframes swipeIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.1rem 2.4rem;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}
.btn span { position: relative; z-index: 2; }
.btn--primary {
  background: var(--c-oxblood);
  color: var(--c-ivory);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-espresso);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 1;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 15, 12, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-espresso);
  border: 1.5px solid var(--c-espresso);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: var(--c-espresso);
  color: var(--c-ivory);
}
.btn--lg {
  padding: 1.4rem 3rem;
  font-size: 1.05rem;
}

/* ===================== REVEAL ANIMATIONS (base state) ===================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-word {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-word.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* staggered reveal delays for groups */
.reveal-up:nth-of-type(1) { transition-delay: 0s; }
.reveal-up:nth-of-type(2) { transition-delay: 0.08s; }
.reveal-up:nth-of-type(3) { transition-delay: 0.16s; }
.reveal-up:nth-of-type(4) { transition-delay: 0.24s; }

/* placeholder image blocks — gradient shows until a real photo is added.
   Drop matching files into /images (see /images/README.md) and they
   render automatically, no code changes needed. */
.ph {
  background: linear-gradient(135deg, #6b2420 0%, #3D0F0C 55%, #1A0605 100%);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(242,196,168,0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(232,160,172,0.2), transparent 50%);
  pointer-events: none;
}
.ph img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--side-pad);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 1rem var(--side-pad);
  mix-blend-mode: normal;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61,15,12,0.08);
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--c-ivory);
  mix-blend-mode: inherit;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav__home-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.55rem;
  flex-shrink: 0;
  color: inherit;
}
.nav.scrolled .nav__logo { color: var(--c-oxblood); mix-blend-mode: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ivory);
  overflow: hidden;
  height: 1.3em;
  display: inline-flex;
}
.nav.scrolled .nav__link { color: var(--c-oxblood); }
.nav__link span {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.nav__link::before {
  content: attr(data-text);
}
.nav__link:hover span { transform: translateY(-100%); }
.nav__link span::after {
  content: '';
}
.nav__link--cta {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--c-ivory);
  height: auto;
}
.nav.scrolled .nav__link--cta { border-color: var(--c-oxblood); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--c-ivory);
  transition: 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--c-oxblood); }
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-oxblood);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-in-out);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--c-ivory);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-oxblood);
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__bg-layer--1 {
  inset: 0;
  z-index: 1;
}
.ph--portrait {
  width: 100%;
  height: 120%;
  top: -10%;
  position: absolute;
}
.hero__bg-layer--2 {
  inset: 0;
  z-index: 0;
}
.hero__noise-block {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(84,17,15,0.45) 0%, transparent 50%);
  z-index: 2;
}
.hero__grid {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
  padding-top: 6rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-rose-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-peach);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.98;
  color: var(--c-ivory);
  max-width: 50rem;
  margin-bottom: 2rem;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
}
.hero__headline .highlight-text {
  color: var(--c-oxblood);
}
.hero__headline .highlight-swipe {
  background: var(--c-rose);
  height: 0.62em;
  bottom: 0.05em;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--c-ivory-dim);
  max-width: 32rem;
  margin-bottom: 2.6rem;
  font-weight: 400;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero .btn--ghost {
  color: var(--c-ivory);
  border-color: rgba(245,239,230,0.4);
}
.hero .btn--ghost:hover {
  background: var(--c-ivory);
  color: var(--c-oxblood);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: var(--side-pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--c-ivory-dim);
}
.hero__scroll-cue span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px;
  height: 50px;
  background: rgba(245,239,230,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--c-peach);
  animation: scrollLine 1.8s infinite var(--ease-in-out);
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--c-espresso);
  padding: 1.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-ivory-dim);
}
.marquee__track .sep {
  color: var(--c-terracotta);
  font-style: normal;
  font-size: 1rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== MANIFESTO ===================== */
.manifesto {
  padding: var(--section-pad) var(--side-pad);
  background: var(--c-ivory);
}
.manifesto__inner {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.manifesto__text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.3;
  color: var(--c-espresso);
}
.manifesto__text .highlight-text {
  font-style: italic;
  color: var(--c-oxblood);
}
.manifesto [class^="reveal-char"] {
  opacity: 0.15;
  transition: opacity 0.6s var(--ease-out);
}
.manifesto [class^="reveal-char"].in-view {
  opacity: 1;
}
.manifesto__sig {
  margin-top: 2rem;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-terracotta);
}

/* ===================== STATS ===================== */
.stats {
  background: var(--c-espresso);
  padding: var(--section-pad) var(--side-pad);
}
.stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(245,239,230,0.12);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--c-peach);
  line-height: 1;
  display: inline;
}
.stat__suffix {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--c-peach);
}
.stat__label {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--c-ivory-dim);
  max-width: 16rem;
}
@media (max-width: 700px) {
  .stats__grid { grid-template-columns: 1fr; gap: 3rem; }
  .stat { border-right: none; border-bottom: 1px solid rgba(245,239,230,0.12); padding-bottom: 2rem; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--c-oxblood);
  padding: var(--section-pad) var(--side-pad);
  color: var(--c-ivory);
}
.services__header {
  max-width: 1300px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.services .section-title .highlight-text { color: var(--c-ivory); font-style: normal; font-family: var(--f-display); }
.services .highlight-swipe { z-index: -1; opacity: 0.35; }
.services__more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  color: var(--c-rose-soft);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.services__more svg { transition: transform 0.3s var(--ease-out); }
.services__more:hover { gap: 1rem; color: var(--c-peach); }
.services__more:hover svg { transform: translateX(4px); }

.services__list {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr 7rem 9rem;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(245,239,230,0.15);
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
}
.service-row:hover {
  padding-left: 1rem;
}
.service-row__number {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-terracotta);
}
.service-row__content h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.service-row:hover .service-row__content h3 { color: var(--c-peach); }
.service-row__content p {
  font-size: 0.95rem;
  color: var(--c-ivory-dim);
  max-width: 30rem;
  line-height: 1.5;
}
.service-row__img {
  width: 7rem;
  height: 4.6rem;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.service-row:hover .service-row__img {
  opacity: 1;
  transform: scale(1);
}
.service-row__img .ph { width: 100%; height: 100%; }
.service-row__price {
  text-align: right;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-rose-soft);
}
.service-row__price span { font-weight: 400; color: var(--c-ivory-dim); }

.services__cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}
.services .btn--primary {
  background: var(--c-ivory);
  color: var(--c-oxblood);
}
.services .btn--primary::before { background: var(--c-rose-soft); }

@media (max-width: 800px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .service-row__img { display: none; }
  .service-row__price { text-align: left; }
}

/* ===================== GALLERY ===================== */
.gallery {
  background: var(--c-ivory);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.gallery__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 6rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--c-rose);
  letter-spacing: -0.01em;
}
.gallery__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 var(--side-pad);
  will-change: transform;
}
.ph--gal {
  width: 16rem;
  height: 21rem;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.ph--gal.tall { height: 26rem; margin-top: -2.5rem; }
.ph--gal:hover { transform: translateY(-10px) rotate(-1deg); }
.gal--1 { background: linear-gradient(150deg, #C97D5D, #3D0F0C); }
.gal--2 { background: linear-gradient(150deg, #E8A0AC, #6b2420); }
.gal--3 { background: linear-gradient(150deg, #1A0605, #3D0F0C 60%, #C97D5D); }
.gal--4 { background: linear-gradient(150deg, #F2C4A8, #C97D5D, #1A0605); }
.gal--5 { background: linear-gradient(150deg, #3D0F0C, #E8A0AC); }
.gal--6 { background: linear-gradient(150deg, #6b2420, #F2C4A8); }
.gal--7 { background: linear-gradient(150deg, #1A0605, #C97D5D); }
.gal--8 { background: linear-gradient(150deg, #E8A0AC, #1A0605); }

@media (max-width: 700px) {
  .ph--gal { width: 12rem; height: 16rem; }
  .ph--gal.tall { height: 19rem; }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--c-ivory-dim);
  padding: var(--section-pad) var(--side-pad);
}
.testimonials__title {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials__title .highlight-text {
  font-style: italic;
}
.testimonials__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}
.testimonial-card {
  background: var(--c-oxblood);
  color: var(--c-ivory);
  padding: 2.6rem 2.2rem;
  border-radius: 18px;
  transition: transform 0.4s var(--ease-spring);
}
.testimonial-card:hover { transform: translateY(-8px); }
.testimonial-card--mid { transform: translateY(-1.5rem); }
.testimonial-card--mid:hover { transform: translateY(-9.5rem); }
.stars {
  color: var(--c-rose);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--c-ivory-dim);
}
.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-peach);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--mid { transform: none; }
  .testimonial-card--mid:hover { transform: translateY(-8px); }
}
@media (max-width: 600px) {
  .testimonials__title { font-size: clamp(1.5rem, 7.5vw, 2.3rem); }
  .testimonials__title .highlight-wrap { white-space: normal; }
}

/* ===================== CLOSING CTA ===================== */
.closing {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.closing__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #6b2420, #1A0605 70%);
}
.closing__bg img {
  object-position: center 20%;
}
.closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,6,5,0.3), rgba(26,6,5,0.75));
}
.closing__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--side-pad);
  max-width: 56rem;
}
.closing__headline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.25;
  color: var(--c-ivory);
  margin-bottom: 2.8rem;
}
.closing__line-mask {
  display: block;
  overflow: hidden;
}
.closing__line-mask .reveal-up {
  display: block;
}
.closing__headline .highlight-text { font-style: italic; color: var(--c-ivory); }
.closing .btn--primary { background: var(--c-rose); color: var(--c-espresso); }
.closing .btn--primary::before { background: var(--c-ivory); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--c-espresso);
  color: var(--c-ivory-dim);
  padding: 4rem var(--side-pad) 2rem;
  text-align: center;
}
.footer__logo {
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--c-ivory);
  margin-bottom: 2rem;
}
.footer__logo-img {
  max-height: 90px;
  width: auto;
  margin: 0 auto;
  display: block;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.footer__links a, .footer__contact a, .footer__socials a {
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer__links a:hover, .footer__contact a:hover, .footer__socials a:hover {
  color: var(--c-peach);
}
.footer__contact { margin-bottom: 1.2rem; font-size: 1rem; color: var(--c-ivory); }
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.social-icon {
  display: block;
  transition: transform 0.3s var(--ease-out);
}
.footer__socials a:hover .social-icon,
.contact-side__socials a:hover .social-icon {
  transform: translateY(-3px);
}
.footer__bottom {
  font-size: 0.78rem;
  opacity: 0.5;
  border-top: 1px solid rgba(245,239,230,0.1);
  padding-top: 1.8rem;
}

/* ===================== extra placeholder variants ===================== */
.ph--portrait-2 { background: linear-gradient(160deg, #6b2420, #1A0605 70%); }
.ph--sq-1 { background: linear-gradient(140deg, #C97D5D, #3D0F0C); }
.ph--sq-2 { background: linear-gradient(140deg, #E8A0AC, #1A0605); }
.ph--sq-3 { background: linear-gradient(140deg, #F2C4A8, #6b2420); }
.ph--sq-4 { background: linear-gradient(140deg, #3D0F0C, #C97D5D); }
.ph.ph--fur { background: radial-gradient(circle at 30% 30%, #8a2e28, #3D0F0C 55%, #1A0605 100%); position: absolute; inset: 0; }
.ph--founder { background: linear-gradient(150deg, #C97D5D, #6b2420 55%, #1A0605); }

/* ===================== HERO — LOGO INTRO VARIANT ===================== */
.hero--intro {
  justify-content: center;
}
.hero__noise-block--vignette {
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(26,6,5,0.55) 100%);
  z-index: 1;
}
.hero__intro-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 0 var(--side-pad);
}
.hero__intro-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero__intro-logo-img {
  max-width: min(90vw, 640px);
  width: 100%;
  height: auto;
  display: block;
}
.hero__intro-logo {
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(3.2rem, 11vw, 8rem);
  color: var(--c-ivory);
  line-height: 1;
}

/* ===================== BIO — Who am I ===================== */
.bio {
  background: var(--c-ivory);
  padding: var(--section-pad) var(--side-pad);
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.bio__media {
  position: relative;
}
.bio__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
}
.bio__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-ivory);
  color: var(--c-espresso);
  font-size: 0.75rem;
  font-family: monospace;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.bio__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--c-oxblood);
  margin-bottom: 0.8rem;
}
.bio__title-script {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
}
.bio__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-espresso);
  margin-bottom: 1.2rem;
}
.bio__text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-espresso);
  max-width: 32rem;
  margin-bottom: 1.2rem;
}
.bio .btn--ghost {
  border-color: var(--c-oxblood);
  color: var(--c-oxblood);
  margin-top: 0.6rem;
}
.bio .btn--ghost:hover {
  background: var(--c-oxblood);
  color: var(--c-ivory);
}
@media (max-width: 860px) { .bio { grid-template-columns: 1fr; } }

/* ===================== CLOSING — find your formula card variant ===================== */
.closing--formula {
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--side-pad);
}
.closing__content--card {
  background: var(--c-ivory);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 46rem;
  text-align: left;
  box-shadow: 0 30px 60px -20px rgba(26,6,5,0.4);
}
.closing--formula .closing__headline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--c-espresso);
  margin-bottom: 1.6rem;
}
.closing--formula .closing__headline .highlight-text {
  font-style: italic;
  color: var(--c-espresso);
}
.closing--formula .closing__headline .highlight-swipe {
  background: var(--c-rose);
}
.closing__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-espresso);
  margin-bottom: 2rem;
  max-width: 32rem;
}
.closing--formula .btn--primary {
  background: var(--c-oxblood);
  color: var(--c-ivory);
}
@media (max-width: 860px) {
  .closing--formula { justify-content: center; padding: 0 var(--side-pad); }
  .closing__content--card { padding: 2.2rem; }
}
.ph--wide-1 { background: linear-gradient(135deg, #C97D5D, #1A0605 70%); }
.ph--wide-2 { background: linear-gradient(135deg, #E8A0AC, #3D0F0C 70%); }
.ph--port-1 { background: linear-gradient(150deg, #6b2420, #3D0F0C 50%, #1A0605); }
.ph--port-2 { background: linear-gradient(150deg, #F2C4A8, #C97D5D 60%, #1A0605); }
.ph--port-3 { background: linear-gradient(150deg, #E8A0AC, #6b2420 60%, #1A0605); }
/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-oxblood);
  padding: 8rem var(--side-pad) var(--section-pad);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,15,12,0.55), var(--c-oxblood) 90%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__eyebrow {
  color: var(--c-rose-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: block;
}
.page-hero__headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.04;
  color: var(--c-ivory);
  max-width: 50rem;
}
.page-hero__headline .highlight-text { color: var(--c-oxblood); }
.page-hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--c-ivory-dim);
  max-width: 36rem;
  margin-top: 1.6rem;
  line-height: 1.55;
}

