/* =====================================================
   tomato agency — Brand Stylesheet
   Mobile-first, fully responsive, no JS-only layouts
   ===================================================== */

:root {
  /* Brand palette (from brand board) */
  --red:        #C41C23;
  --red-deep:   #8E1218;
  --red-soft:   #E94B52;
  --pink:       #FFB5CD;
  --pink-soft:  #FFE5EE;
  --pink-cream: #FFF7FA;
  --blue:       #BAE2F7;
  --blue-soft:  #E3F2FD;
  --white:      #FFFFFF;
  --cream:      #FFF9F7;

  /* Text */
  --ink:        #1A1316;
  --ink-mid:    #5C4B52;
  --ink-soft:   #8B7780;
  --ink-line:   #EDE0E4;

  /* Effects */
  --shadow-xs:  0 1px 2px rgba(196, 28, 35, 0.04);
  --shadow-sm:  0 2px 8px rgba(196, 28, 35, 0.06);
  --shadow-md:  0 8px 24px rgba(196, 28, 35, 0.08);
  --shadow-lg:  0 16px 48px rgba(196, 28, 35, 0.12);
  --shadow-xl:  0 24px 64px rgba(196, 28, 35, 0.16);
  --ring:       0 0 0 4px rgba(196, 28, 35, 0.16);

  /* Type scale (fluid) */
  --fz-xs:   clamp(11px, 0.7vw + 9px, 12px);
  --fz-sm:   clamp(13px, 0.5vw + 11px, 14px);
  --fz-base: clamp(14px, 0.6vw + 12px, 16px);
  --fz-md:   clamp(16px, 0.8vw + 13px, 18px);
  --fz-lg:   clamp(18px, 1.2vw + 14px, 22px);
  --fz-xl:   clamp(22px, 1.6vw + 16px, 28px);
  --fz-2xl:  clamp(28px, 2.4vw + 18px, 38px);
  --fz-3xl:  clamp(36px, 4vw + 20px, 56px);
  --fz-4xl:  clamp(48px, 6vw + 22px, 88px);
  --fz-5xl:  clamp(60px, 8vw + 24px, 128px);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --container: min(1240px, 100% - 40px);
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  /* Type families */
  --font-serif:   'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Manrope', -apple-system, system-ui, sans-serif;
  --font-thai:    'IBM Plex Sans Thai', 'Manrope', -apple-system, system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* keep brand light — tomato aesthetic is light/feminine */
  }
}

/* ----------------------------------------------------
   Reset / base
   ---------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font-thai);
  font-size: var(--fz-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100dvh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 90% -10%, rgba(255,181,205,.18), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(186,226,247,.22), transparent 55%);
  z-index: -1;
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* ----------------------------------------------------
   Utility
   ---------------------------------------------------- */
.container { width: var(--container); margin-inline: auto; }
.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: -100px; left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  z-index: 9999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ----------------------------------------------------
   Typography display
   ---------------------------------------------------- */
.display-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.display-sans {
  font-family: var(--font-display);    /* Italiana — upright elegant display */
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

/* ----------------------------------------------------
   Buttons
   ---------------------------------------------------- */
.btn {
  --bg: var(--red);
  --fg: var(--white);
  --bd: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-thai);
  font-weight: 600;
  font-size: var(--fz-sm);
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(100%); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: 10px 18px; font-size: 13px; }
.btn--lg  { padding: 16px 30px; font-size: var(--fz-base); }

.btn--primary { --bg: var(--red); --fg: var(--white); --bd: var(--red); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink); --bd: var(--ink-line);
}
.btn--ghost:hover { --bd: var(--red); --fg: var(--red); }

.btn--white { --bg: var(--white); --fg: var(--red); --bd: var(--white); }
.btn--outline-white { --bg: transparent; --fg: var(--white); --bd: rgba(255,255,255,.5); }
.btn--outline-white:hover { --bd: var(--white); }

/* ----------------------------------------------------
   Splash Screen (deluxe, on-brand CI)
   ---------------------------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  overflow: hidden;
  transition: clip-path .9s var(--ease), opacity .6s ease, visibility .9s;
  clip-path: circle(140% at 50% 50%);
}
.splash.is-hidden {
  clip-path: circle(0% at 50% 40%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Sky / sparkles */
.splash__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.splash__sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 24px rgba(255,255,255,.6);
  animation: twinkle 2.6s ease-in-out infinite;
}
.splash__sparkle--1 { top: 18%; left: 16%; animation-delay: .0s; }
.splash__sparkle--2 { top: 24%; right: 22%; animation-delay: .6s; width: 6px; height: 6px; }
.splash__sparkle--3 { bottom: 32%; left: 12%; animation-delay: 1.1s; }
.splash__sparkle--4 { bottom: 22%; right: 18%; animation-delay: 1.6s; width: 5px; height: 5px; }
.splash__sparkle--5 { top: 50%; left: 50%; animation-delay: 2.0s; width: 3px; height: 3px; }
@keyframes twinkle {
  0%,100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  40%     { opacity: 1; transform: scale(1.2) rotate(90deg); }
  60%     { opacity: 1; transform: scale(1)   rotate(120deg); }
}

/* Ornaments — bow / crown / heart / sparkle */
.splash__ornament {
  position: absolute;
  opacity: .35;
  animation: ornamentFloat 5s ease-in-out infinite;
}
.splash__ornament svg { width: 100%; height: 100%; }
.splash__ornament--bowL  { top:  8%;  left:  10%; width: 64px; height: 40px; animation-delay: .2s; }
.splash__ornament--bowR  { top:  12%; right: 12%; width: 56px; height: 36px; animation-delay: .8s; transform: scaleX(-1); }
.splash__ornament--crown { bottom: 14%; left: 8%;  width: 64px; height: 44px; animation-delay: 1.2s; }
.splash__ornament--heart { bottom: 18%; right: 14%; width: 28px; height: 28px; animation-delay: 1.7s; opacity: .5; }
@keyframes ornamentFloat {
  0%,100% { translate: 0 0;     rotate: 0deg; }
  50%     { translate: 0 -12px; rotate: 4deg; }
}

/* Center stack */
.splash__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  z-index: 2;
  padding: 24px;
  animation: splashIn .9s var(--ease) both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.splash__lace {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: 240px;
  display: grid;
  place-items: center;
  animation: spin 32s linear infinite;
  pointer-events: none;
  opacity: .9;
}
.splash__lace svg { width: 240px; height: 240px; }

.splash__core {
  position: relative;
  width: clamp(120px, 18vw, 168px);
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 12px rgba(255,255,255,.08),
    0 0 0 28px rgba(255,255,255,.04),
    0 20px 60px rgba(0,0,0,.18);
  animation: corePop 1s var(--ease) .15s both;
}
@keyframes corePop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.splash__halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(255,255,255,.0),
      rgba(255,255,255,.6),
      rgba(255,255,255,.0) 40%);
  filter: blur(8px);
  animation: spin 6s linear infinite;
}
.splash__logo {
  width: 68%;
  height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(196,28,35,.18));
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.05); }
}

.splash__text {
  margin-top: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  animation: splashTextIn .6s ease .3s both;
}
.splash__brand {
  font-size: clamp(40px, 5vw + 18px, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.splash__brand-sub {
  font-size: clamp(14px, 1.5vw + 6px, 18px);
  letter-spacing: 0.6em;
  margin-top: -2px;
  opacity: .92;
}
.splash__tag {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(15px, 1.6vw + 6px, 19px);
  color: rgba(255,255,255,.86);
  letter-spacing: 0.02em;
  margin-top: 6px;
  animation: splashTextIn .6s ease .5s both;
}
@keyframes splashTextIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.splash__progress {
  width: clamp(120px, 22vw, 200px);
  height: 2px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 18px;
  animation: splashTextIn .6s ease .7s both;
}
.splash__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), var(--white), rgba(255,255,255,0));
  transform: translateX(-100%);
  animation: barSweep 1.4s ease-in-out infinite;
}
@keyframes barSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Bottom ribbon (marquee inside splash) */
.splash__ribbon {
  position: absolute;
  left: 0; right: 0;
  bottom: 6%;
  display: flex;
  gap: 22px;
  white-space: nowrap;
  color: rgba(255,255,255,.65);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.splash__ribbon .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  align-self: center;
}

/* ----------------------------------------------------
   Top notice bar
   ---------------------------------------------------- */
.topbar {
  background: linear-gradient(90deg, var(--red), var(--red-deep), var(--red));
  color: var(--white);
  font-size: var(--fz-xs);
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  z-index: 60;
  overflow: hidden;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}
.topbar__pulse {
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: dotPulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
}
.topbar__text {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar__text--mobile { display: none; }
.topbar__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s, transform .2s;
}
.topbar__link:hover { background: rgba(255,255,255,.28); transform: translateY(-1px); }

@media (max-width: 600px) {
  .topbar { padding: 7px 0; font-size: 11.5px; }
  .topbar__row { gap: 8px; }
  .topbar__text--desktop { display: none; }
  .topbar__text--mobile  { display: inline; }
  .topbar__link { padding: 3px 8px; font-size: 11px; }
  .topbar__pulse { width: 6px; height: 6px; }
}
@media (max-width: 380px) {
  .topbar__text { font-size: 10.5px; }
  .topbar__link svg { display: none; }
}

/* ----------------------------------------------------
   Header / Navigation
   ---------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 247, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.is-scrolled {
  background: rgba(255, 249, 247, .96);
  border-bottom-color: var(--ink-line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .brand__logo { height: 38px; }
}

.nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--cream), var(--pink-cream));
  padding: calc(var(--header-h) + 24px) 24px 24px;
  display: flex;
  flex-direction: column;
  z-index: -1;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .25s, visibility .4s;
}
.nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 49;
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav__link {
  display: block;
  padding: 14px 16px;
  font-size: var(--fz-lg);
  font-weight: 500;
  border-radius: var(--r-md);
  transition: background .2s, color .2s, padding .25s;
  border-bottom: 1px solid var(--ink-line);
}
.nav__link:hover, .nav__link:focus { color: var(--red); background: var(--pink-cream); }

@media (min-width: 1024px) {
  .nav {
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    z-index: auto;
  }
  .nav__list { flex-direction: row; gap: 4px; }
  .nav__link {
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 0;
    position: relative;
  }
  .nav__link::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .nav__link:hover::after { transform: scaleX(1); }
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--red); }
.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); background: var(--red); }
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
@media (max-width: 1023px) {
  .header__cta .btn--sm { display: none; }
}
@media (min-width: 480px) {
  .header__cta .btn--sm { display: inline-flex; }
}

/* ----------------------------------------------------
   Eyebrow
   ---------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-pill);
  font-size: var(--fz-xs);
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow--center { margin-inline: auto; }
.eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s infinite;
}

/* ----------------------------------------------------
   Section head
   ---------------------------------------------------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}
.section-head::before {
  content: '';
  display: block;
  width: 56px;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%23C41C23' stroke-width='1.6' stroke-linecap='round'><path d='M32 20 C 12 4, 4 12, 8 20 S 12 36, 32 20'/><path d='M32 20 C 52 4, 60 12, 56 20 S 52 36, 32 20'/><circle cx='32' cy='20' r='2.4' fill='%23C41C23' stroke='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: -6px;
  opacity: .9;
  transition: transform .8s var(--ease);
}
.section-head.is-in::before { transform: rotate(-6deg) scale(1.05); }
.section-title {
  font-size: var(--fz-3xl);
  line-height: 1.05;
  font-weight: 400;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.18em;
  justify-content: center;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title .display-serif { color: var(--red); }
.section-title .display-sans  { color: var(--ink); }
.section-lead {
  font-size: var(--fz-md);
  color: var(--ink-mid);
  max-width: 56ch;
  line-height: 1.7;
}

/* ----------------------------------------------------
   Hero
   ---------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero__blob--1 { width: 480px; height: 480px; background: var(--pink); top: -120px; right: -100px; }
.hero__blob--2 { width: 320px; height: 320px; background: var(--blue); bottom: -100px; left: -60px; }
.hero__blob--3 { width: 240px; height: 240px; background: var(--pink-soft); top: 40%; left: 30%; opacity: .3; }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(196,28,35,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(196,28,35,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 28px);
}
.hero__title {
  font-size: var(--fz-5xl);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.03em;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
}
.hero__title .display-serif {
  color: var(--red);
  font-size: 1em;
  line-height: 0.92;
}
.hero__title .display-sans {
  color: var(--ink);
  font-size: 0.4em;
  line-height: 1;
  letter-spacing: 0.4em;
  align-self: flex-end;
  margin-top: -.1em;
  font-weight: 400;
}

.hero__lead {
  font-size: var(--fz-md);
  color: var(--ink-mid);
  max-width: 30ch;
  line-height: 1.7;
}
.hero__lead strong {
  color: var(--red);
  font-weight: 700;
}
.hero__lead-en {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(18px, 1.6vw + 14px, 28px);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: var(--fz-sm);
  color: var(--ink-mid);
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__bullets .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* Orbit visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: clamp(320px, 40vw, 480px);
}
.orbit {
  position: relative;
  width: clamp(280px, 36vw, 420px);
  aspect-ratio: 1;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(196,28,35,.25);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.orbit__ring--2 { inset: 12%; border-color: rgba(196,28,35,.15); animation-duration: 80s; animation-direction: reverse; }
.orbit__ring--3 { inset: 24%; border-color: rgba(196,28,35,.1);  animation-duration: 100s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit__center {
  position: absolute;
  top: 50%; left: 50%;
  width: 60%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
  animation: float 5s ease-in-out infinite;
}
.orbit__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes float {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%     { transform: translate(-50%, -50%) translateY(-12px); }
}

.orbit__chip {
  position: absolute;
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink-soft);
  animation: chipFloat 6s ease-in-out infinite;
}
.orbit__chip--1 { top: 4%;    left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit__chip--2 { top: 50%;   right: 2%; transform: translateY(-50%); animation-delay: 1.5s; }
.orbit__chip--3 { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.orbit__chip--4 { top: 50%;   left: 2%;  transform: translateY(-50%); animation-delay: 4.5s; }
@keyframes chipFloat {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -8px; }
}

.ribbon {
  position: absolute;
  width: 60%;
  opacity: .8;
  pointer-events: none;
}
.ribbon--top {
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
}

/* marquee */
.hero__marquee {
  margin-top: clamp(40px, 6vw, 64px);
  border-block: 1px solid var(--ink-line);
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.hero__marquee::before,
.hero__marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.hero__marquee::before { left: 0;  background: linear-gradient(90deg,  var(--cream), transparent); }
.hero__marquee::after  { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }

.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fz-2xl);
  color: var(--red);
  padding-block: 18px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;     /* trailing space becomes the gap to the next group */
  flex-shrink: 0;
}
.marquee__sep {
  color: var(--ink-line);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }   /* 4 groups: shift exactly 1 group width */
}
.hero__marquee:hover .marquee__track { animation-play-state: paused; }

/* ----------------------------------------------------
   About
   ---------------------------------------------------- */
.about {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: repeat(4, 1fr); }
}

.about__card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.5vw, 32px);
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.about__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}
.about__card:hover::before { transform: scaleX(1); }

.about__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--pink-cream);
  color: var(--red);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease), background .3s;
}
.about__card:hover .about__icon {
  transform: rotate(-6deg) scale(1.05);
  background: var(--red);
  color: var(--white);
}
.about__card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fz-xl);
  color: var(--red);
  margin-bottom: 8px;
}
.about__card p {
  font-size: var(--fz-sm);
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ----------------------------------------------------
   Manifesto band (replaces broken stats numbers)
   ---------------------------------------------------- */
.manifesto {
  background: var(--red);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06), transparent 55%);
  pointer-events: none;
}
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 40%, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 88% 25%, rgba(255,255,255,.05) 2px, transparent 3px),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,.05) 2px, transparent 3px);
  background-size: 220px 220px;
  pointer-events: none;
}
.manifesto__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 880px;
}
.manifesto__crown {
  width: 56px; height: 40px;
  color: rgba(255,255,255,.45);
  animation: floatY 5s ease-in-out infinite;
}
.manifesto__quote {
  font-size: clamp(32px, 4vw + 14px, 56px);
  line-height: 1.05;
  font-weight: 400;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.18em;
  justify-content: center;
}
.manifesto__quote .display-serif { color: var(--white); }
.manifesto__quote .display-sans  { color: rgba(255,255,255,.9); }
.manifesto__caption {
  font-size: var(--fz-md);
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 56ch;
}
.manifesto__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.manifesto__pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: background .2s, transform .2s var(--ease);
}
.manifesto__pills li:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.manifesto__pills svg { opacity: .9; }

/* Legacy stats kept as no-op to avoid old selectors lingering */
.stats { display: none; }
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 8px 12px;
}
@media (min-width: 640px) {
  .stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.18);
  }
}
.stats__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform .35s var(--ease), background .25s;
}
.stats__item:hover .stats__icon {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(255,255,255,.18);
}
.stats__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 4.4vw + 14px, 64px);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
}
.stats__plus {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: 0.45em;
  opacity: .85;
  transform: translateY(-0.7em);
  letter-spacing: 0;
}
.stats__word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1em;
  letter-spacing: -0.01em;
}
.stats__label {
  font-size: var(--fz-sm);
  letter-spacing: 0.02em;
  opacity: .92;
  margin-top: 2px;
  max-width: 22ch;
  line-height: 1.5;
}

/* Kill any leftover trophy/decoration pseudo on stat items */
.stats__item::before { content: none !important; }

/* ----------------------------------------------------
   Services
   ---------------------------------------------------- */
.services {
  padding: clamp(72px, 9vw, 128px) 0;
  background: linear-gradient(180deg, var(--cream), var(--pink-cream));
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr) repeat(2, 1fr);
    grid-template-areas:
      "a a b c"
      "a a d e";
    gap: 20px;
  }
  .service-card:nth-child(1) { grid-area: a; }
  .service-card:nth-child(2) { grid-area: b; }
  .service-card:nth-child(3) { grid-area: c; }
  .service-card:nth-child(4) { grid-area: d; }
}

/* Two-card layout (Live VJ + Brand Partnership) */
.services__grid--two { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .services__grid--two {
    grid-template-columns: 1.25fr 1fr;
    grid-template-areas: none;
    gap: 24px;
  }
  .services__grid--two .service-card:nth-child(1) { grid-area: auto; }
  .services__grid--two .service-card:nth-child(2) { grid-area: auto; }
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}
.service-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: var(--white);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.05); }

.service-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fz-xl);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card > p {
  font-size: var(--fz-sm);
  color: var(--ink-mid);
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-card__list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-line);
  font-size: var(--fz-xs);
  color: var(--ink-mid);
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
  min-height: 1.8em;
}
.service-card__list li::before {
  content: '';
  flex: 0 0 14px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C41C23'><path d='M12 21s-7-4.5-7-11a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 6.5-7 11-7 11-1 .67-3 .67-4 0z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-weight: 600;
  color: var(--red);
  font-size: var(--fz-sm);
  padding: 10px 16px;
  border: 1.5px solid var(--red);
  border-radius: var(--r-pill);
  transition: background .25s, color .25s;
}
.service-card__link:hover {
  background: var(--red);
  color: var(--white);
}

.service-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--pink-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--pink);
  z-index: 2;
}

.service-card--featured {
  background:
    radial-gradient(circle at 100% 0%, var(--pink-soft), transparent 50%),
    linear-gradient(135deg, var(--white), var(--cream));
  border-color: var(--pink);
}

/* ----------------------------------------------------
   Process — soft timeline
   ---------------------------------------------------- */
.process {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  list-style: none;
}
.process__list > li { list-style: none; }
@media (min-width: 768px) {
  .process__list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .process__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  /* dashed connector line behind the row */
  .process__list::before {
    content: '';
    position: absolute;
    left: 9%; right: 9%;
    top: 56px;
    height: 2px;
    background-image: linear-gradient(90deg, var(--red) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    opacity: .35;
    z-index: 0;
  }
}

.process__step {
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-cream) 130%);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 30px);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  z-index: 1;
  overflow: hidden;
}
.process__step::after {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 100px; height: 100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C41C23' opacity='.08'><path d='M12 2l2.39 6.42L21 9.27l-5 4.87L17.18 21 12 17.77 6.82 21 8 14.14l-5-4.87 6.61-.85z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.process__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}
.process__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.process__num::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
  opacity: .6;
}
.process__body h3 {
  font-size: var(--fz-lg);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.process__body p {
  font-size: var(--fz-sm);
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ----------------------------------------------------
   Join If You Are
   ---------------------------------------------------- */
.join__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 540px) { .join__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .join__grid { grid-template-columns: repeat(4, 1fr); } }

.join__card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}
.join__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}
.join__icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: var(--pink-cream);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), background .25s, color .25s;
}
.join__card:hover .join__icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}
.join__card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fz-lg);
  color: var(--ink);
  margin-bottom: 6px;
}
.join__card p {
  font-size: var(--fz-sm);
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ----------------------------------------------------
   Talent / Gallery (kept for backwards compatibility, unused)
   ---------------------------------------------------- */
.talent {
  padding: clamp(72px, 9vw, 128px) 0;
  background: linear-gradient(180deg, var(--pink-cream), var(--cream));
}
.talent__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) {
  .talent__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .talent__grid { grid-template-columns: repeat(4, 1fr); }
}
.talent__card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.talent__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.talent__photo {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 30%, var(--pink-soft), transparent 60%),
    linear-gradient(135deg, var(--pink-cream), var(--blue-soft));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.talent__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(196,28,35,.04) 24px 25px);
  pointer-events: none;
}
.talent__card--1 .talent__photo { background: linear-gradient(135deg, var(--pink-soft), var(--pink)); }
.talent__card--2 .talent__photo { background: linear-gradient(135deg, var(--blue-soft), var(--blue)); }
.talent__card--3 .talent__photo { background: linear-gradient(135deg, var(--pink-cream), var(--pink-soft)); }
.talent__card--4 .talent__photo { background: linear-gradient(135deg, var(--cream), var(--pink-cream)); }

.talent__info {
  padding: 20px;
}
.talent__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.talent__info h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fz-xl);
  font-weight: 400;
  margin-bottom: 6px;
}
.talent__info p {
  font-size: var(--fz-sm);
  color: var(--ink-mid);
  line-height: 1.55;
}

/* ----------------------------------------------------
   Voices / Testimonials
   ---------------------------------------------------- */
.voices {
  padding: clamp(72px, 9vw, 128px) 0;
}
.voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .voices__grid { grid-template-columns: repeat(3, 1fr); }
}
.voice {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.voice:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.voice__quote {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: .15;
}
.voice > p {
  font-family: var(--font-thai);
  font-size: var(--fz-base);
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.voice footer {
  border-top: 1px dashed var(--ink-line);
  padding-top: 14px;
  font-size: var(--fz-sm);
  text-align: right;
  margin-top: auto;
}
.voice strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fz-lg);
  color: var(--red);
}
.voice span {
  font-size: 12px;
  color: var(--ink-soft);
}
.voices__grid { align-items: stretch; }

/* ----------------------------------------------------
   FAQ
   ---------------------------------------------------- */
.faq {
  padding: clamp(72px, 9vw, 128px) 0;
  background: linear-gradient(180deg, var(--cream), var(--pink-cream));
}
.faq__inner {
  max-width: 800px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: var(--fz-md);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 28px; height: 28px;
  background: var(--pink-cream);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.faq__item[open] .faq__plus { background: var(--red); transform: rotate(180deg); }
.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  top: 50%; left: 50%;
  transition: background .25s;
}
.faq__plus::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 2px;  height: 12px; transform: translate(-50%, -50%); transition: opacity .25s, background .25s; }
.faq__item[open] .faq__plus::before,
.faq__item[open] .faq__plus::after { background: var(--white); }
.faq__item[open] .faq__plus::after { opacity: 0; }

.faq__answer {
  padding: 0 22px 20px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-size: var(--fz-sm);
}
.faq__answer strong { color: var(--red); }

/* ----------------------------------------------------
   CTA
   ---------------------------------------------------- */
.cta {
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.05), transparent 50%),
    linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.06) 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.06) 2px, transparent 3px);
  background-size: 80px 80px;
}
.cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 760px;
}
.cta__deco {
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.cta__deco svg { animation: spin 24s linear infinite; }
.cta__title {
  font-size: var(--fz-4xl);
  font-weight: 400;
  line-height: 1.05;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.2em;
  justify-content: center;
}
.cta__title .display-serif { color: var(--white); }
.cta__title .display-sans  { color: rgba(255,255,255,.9); }
.cta__lead {
  font-size: var(--fz-md);
  opacity: .9;
  line-height: 1.7;
  max-width: 56ch;
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----------------------------------------------------
   Footer
   ---------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-top: clamp(48px, 6vw, 80px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1.2fr 2fr; }
}
.footer__brand .brand__logo {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}
.footer__tagline {
  margin-top: 16px;
  font-size: var(--fz-sm);
  line-height: 1.7;
  max-width: 36ch;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background .25s, transform .25s, color .25s;
}
.social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 480px) {
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}
.footer__nav h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: var(--fz-lg);
  margin-bottom: 14px;
}
.footer__nav ul li { margin-bottom: 8px; }
.footer__nav ul a {
  font-size: var(--fz-sm);
  transition: color .2s, padding-left .2s;
}
.footer__nav ul a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 20px 0;
  font-size: 12px;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------
   Floating Action Button
   ---------------------------------------------------- */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: transform .3s var(--ease), box-shadow .3s, opacity .3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab:hover {
  transform: translateY(-4px) rotate(-6deg);
  box-shadow: var(--shadow-xl);
}
.fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 1.8s ease-out infinite;
}
@media (min-width: 768px) {
  .fab { right: 28px; bottom: 28px; width: 60px; height: 60px; }
}

/* ----------------------------------------------------
   Lace / gingham dividers (brand pattern utilities)
   ---------------------------------------------------- */
.lace-divider {
  position: relative;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' fill='none' stroke='%23C41C23' stroke-width='1' stroke-linecap='round'><path d='M0 12 Q 10 0 20 12 T 40 12 T 60 12 T 80 12 T 100 12 T 120 12'/><g fill='%23C41C23'><circle cx='20' cy='6' r='1.5'/><circle cx='60' cy='6' r='1.5'/><circle cx='100' cy='6' r='1.5'/></g></svg>");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 14px;
  opacity: .35;
  margin-block: clamp(32px, 4vw, 56px);
}
.gingham-strip {
  height: 18px;
  background-image:
    linear-gradient(45deg, rgba(186,226,247,.6) 25%, transparent 25%, transparent 75%, rgba(186,226,247,.6) 75%),
    linear-gradient(45deg, rgba(186,226,247,.6) 25%, transparent 25%, transparent 75%, rgba(186,226,247,.6) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
  background-color: var(--blue-soft);
}

/* Decorative crown over CTA */
.cta__inner::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 72px;
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 56' fill='%23ffffff'><path d='M8 38l4-22 14 12L40 8l14 20 14-12 4 22z M8 42h64v8H8z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .25;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -6px; }
}

/* Talent card ribbon decoration */
.talent__card { position: relative; }
.talent__card::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%23C41C23' stroke-width='1.6' stroke-linecap='round'><path d='M32 20 C 12 4, 4 12, 8 20 S 12 36, 32 20'/><path d='M32 20 C 52 4, 60 12, 56 20 S 52 36, 32 20'/><circle cx='32' cy='20' r='2.4' fill='%23C41C23' stroke='none'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.05));
}

/* Trophy mark in stats */
.stats__item:nth-child(2)::before,
.stats__item:nth-child(3)::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='.4'><path d='M5 4h14v3a5 5 0 0 1-5 5h-4A5 5 0 0 1 5 7V4zM2 5h3v2a3 3 0 0 1-3 0V5zm17 0h3v2a3 3 0 0 1-3 0V5zM9 14h6l-1 4h2v2H8v-2h2l-1-4z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Sprinkle subtle background dots in services + about */
.services::before,
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(196,28,35,.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(186,226,247,.5) 1px, transparent 1px);
  background-position: 0 0, 30px 30px;
  background-size: 60px 60px, 60px 60px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

/* ----------------------------------------------------
   Reveal on scroll
   ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ----------------------------------------------------
   Tiny breakpoints
   ---------------------------------------------------- */
@media (max-width: 420px) {
  :root { --container: min(1240px, 100% - 28px); }
  .topbar__row { gap: 8px; font-size: 11px; }
  .topbar__text { width: 100%; order: 2; }
  .hero__bullets { gap: 8px 16px; }
  .hero__bullets li { font-size: 13px; }
  .hero__title .display-sans { letter-spacing: 0.3em; }
  .btn { padding: 11px 18px; }
  .btn--lg { padding: 14px 22px; }
}

@media (min-width: 1440px) {
  :root { --container: min(1320px, 100% - 60px); }
}

/* ----------------------------------------------------
   Print
   ---------------------------------------------------- */
@media print {
  .preloader, .topbar, .header, .fab, .hero__marquee { display: none !important; }
  body { background: white; color: black; }
  .hero { padding: 24px 0; }
  .btn { display: none; }
}
