/* =============================================================
   Viara Lazarova — Personal Stylist & Creative Consultant
   Design system + styles. Plain CSS, mobile-first.
   Palette: warm-minimal neutrals + one rare clay accent.
   Type: Cormorant Garamond (display) / Manrope (UI). Cyrillic-safe.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Warm neutral foundation */
  --paper:        #FAF7F2;
  --paper-warm:   #F3ECE1;
  --sand:         #EAE0D2;
  --ink:          #26211C;   /* warm espresso-black, never pure #000 */
  --ink-soft:     #4A4039;
  --espresso:     #2E211A;   /* dark sections */
  --camel:        #C7A982;
  --taupe:        #8A7E70;
  --line:         #E3D8C8;

  /* The one accent */
  --clay:         #B5634A;
  --clay-deep:    #984E38;
  --accent:       var(--clay);   /* "live" accent; overridden inside the colour section */

  /* Fonts */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.76rem;
  --fs-small:   0.875rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  --fs-lead:    clamp(1.15rem, 1.05rem + 0.6vw, 1.45rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-h2:      clamp(2.1rem, 1.5rem + 3vw, 3.6rem);
  --fs-display: clamp(2.9rem, 1.6rem + 6.2vw, 6rem);

  /* Spacing / rhythm */
  --section-y:  clamp(3.25rem, 2rem + 4.5vw, 6.25rem);
  --gutter:     clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --maxw:       1240px;
  --maxw-text:  62ch;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 3px rgba(38,33,28,.06), 0 6px 18px rgba(38,33,28,.05);
  --shadow-md:  0 10px 30px rgba(38,33,28,.10), 0 30px 60px rgba(38,33,28,.07);

  --ease:       cubic-bezier(.22,.61,.36,1);
  --t-fast:     .22s var(--ease);
  --t:          .45s var(--ease);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
em, .it { font-style: italic; }
.serif { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.eyebrow.muted { color: var(--taupe); }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); }
p { max-width: var(--maxw-text); }
.dim { color: var(--taupe); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }
/* Centered block: overrides the default 62ch paragraph cap so centered notes/CTAs sit truly centered */
.t-center { max-width: 100%; margin-inline: auto; text-align: center; }
.section { padding-block: var(--section-y); position: relative; }
main section[id], #top { scroll-margin-top: 84px; }
.section--warm { background: var(--paper-warm); }
.section--dark { background: var(--espresso); color: #EFE7DB; }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #F4ECDF; }
.section--dark .dim { color: #B6A795; }
.section-head { max-width: 760px; margin-bottom: clamp(1.5rem,3vw,2.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.6rem; }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em; padding: .95em 1.7em; border-radius: 100px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  will-change: transform;
}
.btn[hidden] { display: none !important; }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--clay); color: #FBF4EF; box-shadow: 0 8px 22px rgba(181,99,74,.28); }
.btn--primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--camel); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(250,247,242,.95); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.textlink { color: var(--accent); font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity var(--t-fast); }
.textlink:hover { opacity: .7; }

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

/* ---------- Header / nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(1rem,2.4vw,1.6rem) var(--gutter);
  transition: background var(--t), padding var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.header.is-stuck {
  background: rgba(250,247,242,.82);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .75rem;
}
.brand { display: flex; align-items: baseline; gap: .55rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; line-height: 1; }
.brand small { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--taupe); font-weight: 600; }
.nav { display: none; align-items: center; gap: clamp(1rem,2vw,2rem); }
.nav a { font-size: .9rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color var(--t-fast); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--clay); transition: width var(--t); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: none; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--t-fast); }
.nav-toggle:hover { background: rgba(199,169,130,.18); }
.nav-toggle span { width: 22px; height: 1.6px; background: var(--ink); transition: transform var(--t), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: .25rem;
  padding: var(--gutter); transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(2rem,9vw,3rem); color: var(--ink); padding: .25rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border: 0; }
.mobile-menu .btn { margin-top: 1.4rem; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero-grid { display: grid; gap: clamp(2rem,5vw,3rem); align-items: center; width: 100%; }
.hero-copy .eyebrow { margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(1.9rem, 1.25rem + 2.2vw, 3.3rem); margin-bottom: 1.4rem; }
.hero h1 .line { display: block; }
.hero h1 .word { display: inline-block; }
.hero h1 em { color: var(--clay); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); line-height: 1.55; max-width: 46ch; color: var(--ink-soft); }
.hero-sub em { color: var(--clay); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-visual { position: relative; }
.hero-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md); background: var(--sand);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(250,247,242,.9); backdrop-filter: blur(8px);
  border-radius: 100px; padding: .7rem 1.2rem; font-size: .82rem;
}
.hero-badge .swatches { display: flex; gap: 5px; }
.hero-badge .swatches i { width: 14px; height: 14px; border-radius: 50%; display: block; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }
.scroll-cue .dot { width: 1px; height: 38px; background: linear-gradient(var(--camel), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- Manifesto / intro ---------- */
.manifesto { text-align: center; }
.manifesto p { font-family: var(--font-display); font-size: clamp(1.6rem,1rem + 3vw,3rem); line-height: 1.25; max-width: 22ch; margin-inline: auto; color: var(--ink); }
.manifesto p .muted { color: var(--taupe); }
.manifesto p em { color: var(--clay); }
.manifesto .resolve { font-family: var(--font-sans); font-size: var(--fs-lead); max-width: 48ch; margin-top: 1.6rem; margin-inline: auto; color: var(--ink-soft); }

/* ---------- Method pillars ---------- */
.pillars { display: grid; gap: clamp(1.4rem,3vw,2.2rem); counter-reset: pillar; }
.pillar { padding: clamp(1.6rem,3vw,2.4rem); border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); position: relative; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar .num { counter-increment: pillar; font-family: var(--font-display); font-size: 1rem; color: var(--camel); }
.pillar .num::before { content: "0" counter(pillar); }
.pillar h3 { margin: .8rem 0 .6rem; }
.pillar p { color: var(--ink-soft); }

/* ---------- Services ---------- */
.services { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service { background: var(--paper); padding: clamp(1.6rem,3vw,2.6rem); display: flex; flex-direction: column; gap: .7rem; transition: background var(--t); position: relative; }
.service:hover { background: var(--paper-warm); }
.service .s-index { font-size: .8rem; color: var(--camel); letter-spacing: .1em; }
.service h3 { font-size: clamp(1.5rem,1rem+1.4vw,1.95rem); }
.service.flagship { background: var(--espresso); color: #EFE7DB; }
.service.flagship h3 { color: #F4ECDF; }
.service.flagship .s-index, .service.flagship .s-tag { color: var(--camel); }
.service.flagship p { color: #C9BBAB; }
.service.flagship:hover { background: #38271E; }
.service p { color: var(--ink-soft); flex: 1; }
.service .s-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.service .s-link { margin-top: .4rem; font-weight: 600; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: .4em; }
.service .s-link .arrow { transition: transform var(--t-fast); }
.service:hover .s-link .arrow { transform: translateX(4px); }

/* ---------- Colour analysis (signature interactive) ---------- */
.colour { background: var(--paper-warm); overflow: clip; }
.colour-stage { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.colour-portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); background: var(--sand); }
.colour-portrait img { width: 100%; height: 100%; object-fit: cover; }
.colour-portrait .drape { position: absolute; left: 0; right: 0; bottom: 0; height: 16%; background: var(--accent); transition: background .6s var(--ease); opacity: .96; }
.colour-panel .eyebrow { color: var(--accent); transition: color .6s var(--ease); }
.season-name { font-size: clamp(2.4rem,1.5rem+4vw,4.2rem); margin: .4rem 0 .2rem; color: var(--ink); transition: color .4s var(--ease); }
.season-name .en { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); display: block; margin-top: .6rem; font-weight: 600; }
.season-desc { color: var(--ink-soft); max-width: 42ch; margin-top: 1rem; min-height: 3.5em; }
.season-swatches { display: flex; gap: .6rem; margin-top: 1.6rem; }
.season-swatches i { flex: 1; height: 64px; border-radius: 10px; display: block; transform-origin: bottom; transition: background .5s var(--ease), transform .5s var(--ease); box-shadow: var(--shadow-sm); }
.season-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.season-tab { padding: .55em 1.15em; border-radius: 100px; border: 1px solid var(--line); font-size: .85rem; font-weight: 600; color: var(--ink-soft); transition: all var(--t-fast); }
.season-tab[aria-selected="true"] { background: var(--accent); color: #FBF4EF; border-color: var(--accent); }
.season-tab:hover:not([aria-selected="true"]) { border-color: var(--camel); }
.colour-meta { display: grid; gap: 1.5rem; margin-top: clamp(1.75rem,3.5vw,2.75rem); }
.colour-receive { border-top: 1px solid var(--line); padding-top: 2rem; }
.colour-receive h3 { font-size: var(--fs-h3); margin-bottom: 1.2rem; }
.receive-list { display: grid; gap: .9rem; }
.receive-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-soft); }
.receive-list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: .55em; border-radius: 50%; background: var(--clay); }

/* ---------- Process ---------- */
.steps { display: grid; gap: clamp(1.4rem,3vw,2rem); counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.section--dark .step:last-child { border-bottom: 0; }
.step .s-num { counter-increment: step; font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--camel); line-height: 1; min-width: 2ch; }
.step .s-num::before { content: counter(step); }
.step h3 { color: #F4ECDF; margin-bottom: .4rem; font-size: 1.5rem; }
.step p { color: #C2B3A2; }

/* ---------- Video examples ---------- */
.videos { display: grid; gap: clamp(1.4rem,3vw,2rem); }
.video-card { display: grid; gap: 1.2rem; align-items: center; }
.video-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--sand); box-shadow: var(--shadow-md); }
.video-frame[data-video] { cursor: pointer; }
.video-frame img, .video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame .play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(transparent 40%, rgba(38,33,28,.35)); transition: background var(--t); }
.video-frame:hover .play { background: linear-gradient(transparent 30%, rgba(38,33,28,.5)); }
.play-btn { width: 74px; height: 74px; border-radius: 50%; background: rgba(250,247,242,.92); display: grid; place-items: center; transition: transform var(--t); box-shadow: var(--shadow-md); }
.video-frame:hover .play-btn { transform: scale(1.08); }
.play-btn svg { margin-left: 4px; }
.video-body .eyebrow { color: var(--clay); }
.video-body h3 { margin: .5rem 0 .8rem; }
.video-body p { color: var(--ink-soft); }
.video-tag { display: inline-block; margin-top: 1rem; font-size: .8rem; color: var(--taupe); }

/* ---------- Packages ---------- */
.packages { display: grid; gap: clamp(1.2rem,2.5vw,1.8rem); }
.pkg { padding: clamp(1.8rem,3vw,2.6rem); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem; transition: transform var(--t), box-shadow var(--t); }
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pkg.featured { background: var(--espresso); color: #EFE7DB; border-color: transparent; }
.pkg.featured h3 { color: #F4ECDF; } .pkg.featured .pkg-desc { color: #C9BBAB; }
.pkg.featured .pkg-feat li { color: #D8CABA; }
.pkg-flag { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--clay); }
.pkg.featured .pkg-flag { color: var(--camel); }
.pkg h3 { font-size: clamp(1.6rem,1rem+1.6vw,2.2rem); }
.pkg-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); }
.pkg.featured .pkg-price { color: var(--camel); }
.pkg-desc { color: var(--ink-soft); }
.pkg-feat { display: grid; gap: .6rem; margin-top: .4rem; flex: 1; }
.pkg-feat li { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-soft); }
.pkg-feat li::before { content: "—"; color: var(--camel); }
.pkg .btn { margin-top: .8rem; align-self: flex-start; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: clamp(1.4rem,3vw,2rem); }
.quote { padding: clamp(1.6rem,3vw,2.4rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; gap: 1.2rem; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.3rem,1rem+1vw,1.7rem); line-height: 1.35; color: var(--ink); }
.quote blockquote::before { content: "“"; color: var(--camel); font-size: 2.4em; line-height: 0; vertical-align: -0.35em; margin-right: .08em; }
.quote .who { font-size: .9rem; color: var(--taupe); font-weight: 600; letter-spacing: .02em; }
.quote .who b { color: var(--ink); font-weight: 700; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.about-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); background: var(--sand); }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 { margin-bottom: 1.2rem; }
.about-body p + p { margin-top: 1rem; }
.about-sign { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; color: var(--clay); margin-top: 1.4rem; }
.about-stats { display: flex; gap: 2.4rem; margin-top: 2rem; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats b { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); line-height: 1; }
.about-stats span { font-size: .82rem; color: var(--taupe); letter-spacing: .04em; margin-top: .35rem; }

/* ---------- Studio gallery ---------- */
.studio-grid { display: grid; gap: clamp(.8rem,2vw,1.2rem); grid-template-columns: 1fr; }
.studio-shot { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); background: var(--sand); }
.studio-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.studio-shot:hover img { transform: scale(1.04); }
@media (min-width: 700px) { .studio-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem,4vw,3.5rem); }
.contact-aside h2 { margin-bottom: 1.2rem; }
.contact-aside .lead { margin-bottom: 1.8rem; }
.contact-channels { display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-channels a { display: flex; align-items: center; gap: .8rem; font-weight: 500; }
.contact-channels .ic { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all var(--t-fast); flex: none; }
.contact-channels a:hover .ic { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.contact-note { font-size: .85rem; color: var(--taupe); margin-top: 1.6rem; }

form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; padding: .85em 1em; width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 4px rgba(199,169,130,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field--hp { position: absolute; left: -9999px; }
form .btn { justify-content: center; }
.form-fine { font-size: .78rem; color: var(--taupe); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: #C9BBAB; padding-block: clamp(2.25rem,4vw,3.25rem) 2rem; }
.footer-top { display: grid; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #F4ECDF; }
.footer .brand small { color: #9B8C7B; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: #E4D8C8; margin-top: 1rem; max-width: 26ch; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.5rem; }
.footer-nav a { font-size: .92rem; transition: color var(--t-fast); } .footer-nav a:hover { color: #F4ECDF; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: .8rem; color: #9B8C7B; }
.footer-bottom a:hover { color: #F4ECDF; }

/* ---------- Multi-step booking form ---------- */
.booking { max-width: 820px; margin: 0 auto; }
.booking-progress { margin-bottom: 2rem; }
.booking-steplabel { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: #EFE7DB; margin-bottom: .7rem; text-transform: uppercase; }
.booking-steplabel .dim { color: #9B8C7B; }
.booking-bar { height: 3px; border-radius: 100px; background: rgba(255,255,255,.13); overflow: hidden; }
.booking-bar span { display: block; height: 100%; width: 25%; background: var(--clay); border-radius: 100px; transition: width .5s var(--ease); }

.booking-form { position: relative; }
.booking-error { color: #F0B8A8; font-size: .88rem; margin-bottom: 1rem; padding: .7em 1em; background: rgba(181,99,74,.18); border: 1px solid rgba(181,99,74,.4); border-radius: 10px; }
.booking-step { display: none; border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.booking-step.is-active { display: block; animation: stepIn .5s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.booking-q { font-family: var(--font-display); font-size: clamp(1.6rem,1.1rem+1.8vw,2.4rem); font-weight: 500; color: #F4ECDF; line-height: 1.1; padding: 0; }
.booking-hint { color: #B6A795; font-size: .92rem; margin: .5rem 0 1.4rem; }
.booking-q + .svc-cards, .booking-q + .chips, .booking-q + .q-group { margin-top: 1.6rem; }

/* service cards */
.svc-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem; }
/* with three options, let the lone third card fill the row so it never sits half-empty */
.svc-cards .svc-card:nth-child(3):last-child { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .svc-cards { grid-template-columns: repeat(3,1fr); }
  .svc-cards .svc-card:nth-child(3):last-child { grid-column: auto; }
}
.svc-card { position: relative; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid transparent; box-shadow: var(--shadow-sm); transition: transform var(--t-fast), box-shadow var(--t-fast), outline-color var(--t-fast); outline: 2px solid transparent; outline-offset: 0; }
.svc-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-card .svc-img { display: block; aspect-ratio: 16/11; overflow: hidden; background: var(--sand); }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-meta { display: flex; flex-direction: column; gap: .15rem; padding: .85rem 1rem 1rem; }
.svc-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); line-height: 1.1; }
.svc-sub { font-size: .8rem; color: var(--taupe); }
.svc-tick { position: absolute; top: .7rem; right: .7rem; width: 30px; height: 30px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; font-size: .9rem; transform: scale(0); transition: transform .3s var(--ease); box-shadow: var(--shadow-sm); }
.svc-card:has(input:checked) { outline-color: var(--clay); }
.svc-card:has(input:checked) .svc-tick { transform: scale(1); }
.svc-card:has(input:focus-visible) { outline-color: var(--camel); }
.svc-unsure { display: flex; align-items: center; gap: .7rem; margin-top: .9rem; padding: .95rem 1.2rem; border-radius: 100px; border: 1px dashed rgba(255,255,255,.28); color: #D8CABA; cursor: pointer; font-size: .92rem; transition: border-color var(--t-fast), background var(--t-fast); }
.svc-unsure input { accent-color: var(--clay); width: 17px; height: 17px; }
.svc-unsure:has(input:checked) { border-style: solid; border-color: var(--clay); background: rgba(181,99,74,.14); color: #F4ECDF; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: .65rem; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span { display: inline-flex; align-items: center; padding: .65em 1.2em; border-radius: 100px; border: 1px solid rgba(255,255,255,.22); color: #E4D8C8; font-size: .92rem; font-weight: 500; transition: all var(--t-fast); }
.chip span::before { content: "+"; margin-right: .5em; opacity: .55; transition: transform var(--t-fast); }
.chip:hover span { border-color: var(--camel); }
.chip input:checked + span { background: var(--clay); border-color: var(--clay); color: #FBF4EF; }
.chip input:checked + span::before { content: "✓"; opacity: 1; }
.chip input:focus-visible + span { outline: 2px solid var(--camel); outline-offset: 2px; }

/* qualifying questions */
.q-group { margin-bottom: 1.6rem; }
.q-label { display: block; font-size: .9rem; font-weight: 600; color: #EFE7DB; margin-bottom: .8rem; }
.opts { display: grid; gap: .6rem; }
.opt { cursor: pointer; }
.opt input { position: absolute; opacity: 0; }
.opt span { display: block; padding: .85em 1.2em; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); color: #D8CABA; font-size: .95rem; transition: all var(--t-fast); }
.opt:hover span { border-color: var(--camel); }
.opt input:checked + span { border-color: var(--clay); background: rgba(181,99,74,.16); color: #F4ECDF; }
.opt input:focus-visible + span { outline: 2px solid var(--camel); outline-offset: 2px; }
.q-row { display: grid; gap: 1.1rem; }
@media (min-width: 540px) { .q-row { grid-template-columns: 1fr 1fr; } }
.booking .field label { color: #C9BBAB; }
.consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.2rem; font-size: .9rem; color: #C9BBAB; cursor: pointer; }
.consent input { margin-top: .15rem; accent-color: var(--clay); width: 17px; height: 17px; flex: none; }

/* summary on final step */
.booking-summary { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.booking-summary:empty { display: none; }
.booking-summary .tag { font-size: .8rem; letter-spacing: .02em; padding: .4em .9em; border-radius: 100px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #E4D8C8; }
.booking-summary .tag b { color: var(--camel); font-weight: 700; }

/* nav buttons */
.booking-nav { display: flex; gap: .8rem; align-items: center; margin-top: 2rem; }
.booking-nav [data-next], .booking-nav [data-submit] { margin-left: auto; }
.btn--ghost-light { border: 1px solid rgba(255,255,255,.3); color: #EFE7DB; }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.booking-alt { text-align: center; margin-top: 1.8rem; font-size: .88rem; color: #B6A795; }
.booking-alt a { color: var(--camel); border-bottom: 1px solid rgba(199,169,130,.4); }
.booking-alt a:hover { color: #F4ECDF; }

/* ---------- Lead magnet ---------- */
.lead-grid { display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; }
.lead-cover { display: flex; justify-content: center; perspective: 1000px; }
.booklet {
  width: min(300px, 78vw); aspect-ratio: 1 / 1.414; border-radius: 6px 14px 14px 6px;
  background: linear-gradient(150deg, #38271E, #241813); color: #F4ECDF;
  padding: 2.2rem 1.8rem; display: flex; flex-direction: column;
  box-shadow: -10px 0 0 -2px rgba(199,169,130,.35), var(--shadow-md);
  transform: rotate(-3deg); transition: transform .6s var(--ease);
  border-left: 3px solid var(--camel);
}
.lead-cover:hover .booklet { transform: rotate(0deg) translateY(-4px); }
.booklet-top { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--camel); font-weight: 600; }
.booklet-title { font-family: var(--font-display); font-weight: 500; font-size: 2.5rem; line-height: 1.02; margin-top: auto; color: #F8F1E6; }
.booklet-title em { color: var(--camel); }
.booklet-line { height: 1px; background: rgba(199,169,130,.4); margin: 1.1rem 0; }
.booklet-swatches { display: flex; gap: .5rem; }
.booklet-swatches i { width: 22px; height: 22px; border-radius: 50%; display: block; }
.booklet-by { font-size: .72rem; color: #B6A795; margin-top: 1.1rem; letter-spacing: .02em; }

.lead-body h2 { margin: .6rem 0 1rem; }
.lead-points { display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.lead-points li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.lead-points li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: .15em; border-radius: 50%; background: var(--clay); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/64% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/64% no-repeat; }
.lead-form { display: flex; flex-wrap: wrap; gap: .7rem; }
.lead-form input { flex: 1 1 180px; font: inherit; font-size: .98rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: .85em 1.3em; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.lead-form input:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 4px rgba(199,169,130,.18); }
.lead-form .btn { flex: 1 1 100%; justify-content: center; }
@media (min-width: 560px) { .lead-form .btn { flex: 0 0 auto; } }
@media (min-width: 820px) { .lead-grid { grid-template-columns: .85fr 1.15fr; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .pillars, .videos { }
  .colour-meta { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 760px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .services { grid-template-columns: repeat(3,1fr); }
  .pillars { grid-template-columns: repeat(3,1fr); }
  .packages { grid-template-columns: repeat(3,1fr); }
  .quotes { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .footer-top { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .colour-stage { grid-template-columns: .85fr 1.15fr; }
  .video-card { grid-template-columns: 1fr 1fr; }
  .video-card:nth-child(even) .video-frame { order: 2; }
}
@media (min-width: 1000px) {
  .services { grid-template-columns: repeat(3,1fr); }
  .quotes { grid-template-columns: repeat(3,1fr); }
}

/* ============================================================
   Centered alignment (client request: center everything).
   Headings were already centered; this centers the body text,
   cards, lists and editorial blocks too. Header, footer nav and
   the booking input fields stay left for usability/convention.
   ============================================================ */
/* Hero copy — centered at every breakpoint (text column on desktop, stacked on mobile) */
.hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-sub { margin-inline: auto; }
.hero-actions { justify-content: center; }

/* Method pillars */
.pillar { text-align: center; }

/* Services cards */
.service { align-items: center; text-align: center; }

/* Colour analysis — panel copy + the “what you get / how it goes” lists */
.colour-panel { text-align: center; }
.season-swatches, .season-tabs { justify-content: center; }
.colour-meta { text-align: center; }
.receive-list li { justify-content: center; }

/* Process — stack the step number above its centered text */
.step { grid-template-columns: 1fr; justify-items: center; text-align: center; }

/* Video example bodies */
.video-body { text-align: center; }

/* Packages */
.pkg { align-items: center; text-align: center; }
.pkg-feat li { justify-content: center; }
.pkg .btn { align-self: center; }

/* Testimonials */
.quote { align-items: center; text-align: center; }

/* Free-guide / lead magnet */
.lead-body { text-align: center; }
.lead-points li { justify-content: center; }
.lead-form { justify-content: center; }

/* About */
.about-body { text-align: center; }
.about-stats { justify-content: center; }

/* Booking funnel — center the step questions, chip group + service-card labels; text inputs stay left for usability */
.booking-q, .booking-hint { text-align: center; }
.chips { justify-content: center; }
.svc-meta { align-items: center; text-align: center; }

/* ---------- Utility pages (404 / thank-you) ---------- */
.center-screen { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: var(--gutter); }
.center-screen .inner { max-width: 560px; }
.center-screen .eyebrow { margin-bottom: 1rem; }
.center-screen h1 { margin-bottom: 1rem; }
.center-screen p { margin: 0 auto 2rem; color: var(--ink-soft); }
.center-screen .swatches { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.center-screen .swatches i { width: 16px; height: 16px; border-radius: 50%; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-cue .dot { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; scroll-behavior: auto !important; }
}
