:root {
  /* ── Primary Palette (File 2 colors) ── */
  --ivory:        #F7F4EC;   /* Warm Ivory */
  --ivory-warm:   #EDE9D8;   /* richer warm ivory */
  --ink:          #2C2C2C;   /* Deep Graphite */
  --ink-soft:     #525252;   /* medium graphite */
  /* ── Champagne Gold (File 2) ── */
  --copper:       #C9973A;   /* Rich Champagne Gold */
  --copper-deep:  #A07828;   /* Deep burnished gold */
  --copper-light: #E8C97A;   /* Light gold highlights */

  /* ── Sage Green — DOMINANT accent (File 2) ── */
  --sage:         #8FAF98;   /* Exact sage — saturated muted green */
  /* --sage-deep:    #4E7260;     Deep sage — for text, dark accents */
  --sage-deep:   #60712f;;    
  --sage-mid:     #6B9479;   /* Mid sage — for buttons, borders */
  --sage-light:   #B8CEBC;   /* Soft sage — hover tints */
  --sage-bg:      #E8F0EA;   /* Sage section background */
  --sage-dark:    #3A5A48;   /* Very dark sage */

  /* ── Neutrals (File 2) ── */
  --muted:        #888888;   /* balanced grey */
  --line:         #D5D0BF;   /* warm-neutral border */

  /* ── Functional ── */
  --wa-green:     #25d366;
  --gold-star:    #C9973A;   /* rich gold stars */

  /* ── Typography ── */
  --serif:  "Cormorant Garamond", "Times New Roman", serif;
  --italic: "Cormorant Garamond", "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ── Layout ── */
  --max:        1280px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --announce-h: 38px;

  /* ── Type Scale (File 1) ── */
  --fs-h1:      clamp(1.7rem, 3vw, 2.25rem);
  --fs-h2:      clamp(1.6rem, 2.5vw, 2rem);
  --fs-h3:      clamp(1.15rem, 2vw, 1.35rem);
  --fs-body:    0.9rem;
  --fs-small:   0.75rem;
  --fs-eyebrow: 0.68rem;
  --fs-nav:     0.7rem;
}

/* =============== RESET =============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============== GLOBAL TYPOGRAPHY SYSTEM =============== */

h1,
h2,
h3,
.section-title,
.services-title-main,
.fl-atelier-headline,
.brands-title,
.process-title,
.proof-title,
.faq-title,
.area-title,
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h2,
.section-title,
.services-title-main,
.brands-title,
.process-title,
.proof-title,
.faq-title,
.area-title,
.cta-title {
  /* font-size: clamp(2rem, 4vw, 3rem); */
   font-size: var(--fs-h2);

  line-height: 1.12;
  margin-bottom: 1rem;
}

h3,
.svc-card-title,
.fl-atelier-cell-title,
.process-step-title,
.proof-card-title,
.faq-question {
  font-family: var(--serif);
  /* font-size: clamp(1.25rem, 2vw, 1.55rem); */
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}

p,
.hero-body,
.services-sub,
.svc-card-desc,
.fl-atelier-body p,
.fl-atelier-cell-desc,
.process-step-desc,
.review-text,
.brands-sub,
.proof-sub,
.faq-answer,
.area-desc,
.cta-sub,
.footer p {
  font-family: var(--sans);
  /* font-size: 0.9rem; */
    font-size: var(--fs-body);

  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.eyebrow,
.hero-eyebrow,
.services-eyebrow,
.fl-atelier-eyebrow,
.section-num,
.svc-card-cta,
.btn,
.nav-links,
.nav-cta,
.announce,
.process-label,
.faq-label,
.area-label {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

em,
.fl-atelier-cell-num,
.svc-card-discipline,
.section-num {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--copper);
  color: var(--ivory);
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* =============== SCROLL PROGRESS =============== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  /* Gold-to-sage gradient progress bar */
  background: linear-gradient(90deg, var(--copper), var(--sage));
  z-index: 300;
  transition: width 0.1s ease-out;
}

/* =============== ANNOUNCEMENT BAR =============== */
.announce {
  background: var(--sage-deep);    /* SAGE background — File 2 */
  color: var(--ivory);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding: 0 var(--gutter);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(201, 151, 58, 0.3); /* gold underline — File 2 */
}

.announce .dot {
  width: 4px;
  height: 4px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

.announce span {
  display: inline-block;
}

/* =============== NAV =============== */
.nav {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* KEY: transparent by default so video shows through */
  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    padding 0.45s ease;
}

/* When scrolled — solid ivory background appears */
.nav.scrolled {
  background: var(--ivory);
  /* border-bottom-color: var(--line); */
  padding-block: 0.75rem;
}

/* When mobile menu is open — always solid so links are readable */
.nav.menu-open {
  background: var(--ivory);
}

/* Scrolled state — ink text */
.nav.scrolled .nav-logo,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-cta {
  color: var(--ink);
}

.nav.scrolled .nav-logo .label {
  color: var(--muted);
}

.nav.scrolled .nav-toggle span {
  background: var(--ink);
}

/* Logo image white on transparent nav */
.nav:not(.scrolled):not(.menu-open) .nav-logo img {
  filter: brightness(0) invert(1);
}

/* Logo image dark on scrolled nav */
.nav.scrolled .nav-logo img {
  filter: none;
}

/* Gold underline on nav links hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hero full-height */
.hero {
  padding-top: 0 !important;
  height: 100vh;
  min-height: 700px;
}

/* Push hero text off the announce bar */
.hero-inner {
  padding-top: calc(var(--announce-h) + 80px);
}

/* Mobile: hero still full height */
@media (max-width: 720px) {
  .hero {
    height: 100vh;
    padding-top: 0 !important;
    padding-bottom: 5rem !important;
    justify-content: flex-end !important;
  }

  .hero-inner {
    padding-top: 0;
    transform: none;
  }
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.nav-logo .fl {
  font-style: italic;
  font-weight: 500;
}

.nav-logo .label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #60712f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--sage-mid);  /* File 2: sage border */
  color: var(--sage-deep);            /* File 2: sage text */
  background: transparent;
  border-radius: 8px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.nav-cta:hover {
  background: var(--sage);       /* File 2: sage fill */
  color: var(--ivory) !important;
  border-color: var(--sage);
}

/* Transparent nav — white text */
.nav:not(.scrolled):not(.menu-open) .nav-logo,
.nav:not(.scrolled):not(.menu-open) .nav-links a,
.nav:not(.scrolled):not(.menu-open) .nav-cta {
 color: var(--ivory) !important;
}

.nav:not(.scrolled):not(.menu-open) .nav-cta {
  border-color: rgba(247, 244, 236, 0.6);
}

.nav:not(.scrolled):not(.menu-open) .nav-toggle span {
  background: var(--ivory);
}

.nav:not(.scrolled):not(.menu-open) .nav-links a:hover {
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* =============== HERO =============== */
.hero {
    height: 88vh;
  min-height: 700px;
  padding: calc(var(--announce-h) + 5rem) var(--gutter) 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.82) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.28)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  max-width: 35ch;
  color: var(--ivory);
  opacity: 0;
  animation: fadeUp 1s 0.35s ease forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
  max-width: 11ch;
}

.hero h1 em {
  font-family: var(--italic);
  font-weight: 300;
  font-style: italic;
  color: var(--copper);
}

.hero-body {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: rgba(247, 244, 236, 0.85);
  max-width: 58ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 0.55s ease forwards;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s ease forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--copper);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 1s 0.65s ease forwards;
}

.hero-rating .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-star);
}

.hero-rating .stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-rating .rating-text {
  font-size: 0.82rem;
  color: rgba(247, 244, 236, 0.75);
  letter-spacing: 0.04em;
}

.hero-rating .rating-text strong {
  color: var(--ivory);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.75s ease forwards;
}

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  border: 1px solid transparent;
  font-weight: 400;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

/* Sage green ghost variant */
.btn-sage {
  border-color: var(--sage);
  color: var(--sage-deep);
  background: transparent;
}

.btn-sage:hover {
  background: var(--sage);
  color: var(--ivory);
}

.btn-ghost-light {
  border-color: var(--ivory);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
}

.btn-wa {
  background: var(--wa-green);
  color: white;
}

.btn-wa:hover {
  background: #1fb358;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn .wa-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(247,244,236,0.55), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* =============== MARQUEE =============== */
.marquee {
  background: var(--ivory-warm);
  /* border-top: 1px solid var(--sage-light);    */
  /* border-bottom: 1px solid var(--sage-light);  */
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--serif);
  font-size: 1.4rem;
  padding: 1.75rem 2.5rem;
  letter-spacing: -0.005em;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee-item em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}

.marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sage);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  display: inline-block;
}

/* =============== SECTIONS BASE =============== */
section {
  position: relative;
  z-index: 2;
}

.container {
  /* max-width: var(--max); */
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--copper);
  font-weight: 400;
}

.section-title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 280px;
}

.section-title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

/* =============== FL ATELIER INTRO =============== */
.fl-atelier {
  padding: 0;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.fl-atelier-rule {
  display: flex;
  align-items: center;
  padding: 3rem 4rem 0;
  gap: 0;
}

.fl-atelier-rule-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.fl-atelier-rule-emblem {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.25rem;
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--copper);
  text-transform: uppercase;
  font-weight: 300;
}

.fl-atelier-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--copper);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.fl-atelier-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 2rem 0 0;
  font-weight: 400;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.fl-atelier-eyebrow::before,
.fl-atelier-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sage);
  opacity: 0.8;
}

.fl-atelier-headline {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.16;
  color: var(--ink);
  margin: 1rem auto 0;
  padding: 0 1rem;
  letter-spacing: -0.01em;
}

.fl-atelier-headline em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}

.fl-atelier-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 2rem auto;
  width: fit-content;
}

.fl-atelier-orn-line {
  width: 52px;
  height: 1px;
  background: var(--line);
}

.fl-atelier-orn-icon {
  color: var(--copper);
  font-size: 16px;
  opacity: 0.8;
}

.fl-atelier-orn-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.7;
}

.fl-atelier-body {
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.fl-atelier-body p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 1rem;
  font-weight: 300;
}
.fl-atelier-body p:last-child {
  margin-bottom: 0;
}

.fl-atelier-body p strong {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}

.fl-atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sage-mid);     
  /* border-top: 2px solid var(--sage-mid);  
  border-bottom: 2px solid var(--sage-mid);  */
  margin: 2.75rem 0 0;
}

.fl-atelier-cell {
  background: var(--sage-bg);     /* File 2: sage tinted cell */
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: background 0.45s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fl-atelier-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--copper);       /* File 2: gold bottom sweep */
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fl-atelier-cell:hover {
  background: var(--sage);         /* File 2: full sage fill */
}

.fl-atelier-cell:hover .fl-atelier-cell-title,
.fl-atelier-cell:hover .fl-atelier-cell-num {
  color: var(--ivory);
}

.fl-atelier-cell:hover .fl-atelier-cell-desc {
  color: rgba(247,244,236,0.85);
}

.fl-atelier-cell:hover::after {
  width: 100%;
}

.fl-atelier-icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 24px;
  background: transparent;
  margin-bottom: 1.25rem;
  transition: background 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
}

.fl-atelier-icon-ring::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(167, 181, 158, 0.35);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.fl-atelier-cell:hover .fl-atelier-icon-ring {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
  transform: scale(1.08);
}

.fl-atelier-cell:hover .fl-atelier-icon-ring::before {
  opacity: 1;
}

.fl-atelier-cell-num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--copper);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  opacity: 0.75;
}

.fl-atelier-cell-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.fl-atelier-cell-accent {
  width: 24px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 0.85rem;
  opacity: 0.5;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.fl-atelier-cell:hover .fl-atelier-cell-accent {
  width: 40px;
  opacity: 1;
}

.fl-atelier-cell-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 22ch;
  font-family: var(--sans);
}

.fl-atelier-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2.5rem 2rem 2.75rem;
  flex-wrap: wrap;
}

.fl-atelier-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.fl-atelier-tag-word {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}

.fl-atelier-tag-sub {
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  font-family: var(--sans);
}

.fl-atelier-tag-sep {
  font-family: var(--italic);
  font-style: italic;
  color: var(--sage);
  font-size: 1.75rem;
  opacity: 0.6;
  padding-bottom: 0.85rem;
  line-height: 1;
}

.fl-atelier-footer-rule {
  display: flex;
  align-items: center;
  padding: 0 4rem 3rem;
  gap: 1rem;
}

.fl-atelier-footer-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.fl-atelier-footer-mark {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--copper);
  opacity: 0.4;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 5px;
}

/* =============== SERVICES =============== */
.services {
  padding: 3rem 0;
}

.services-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.services-eyebrow::before,
.services-eyebrow::after {
  content: '';
  height: 1px;
  width: 28px;
  background: var(--sage);
}

.services-header {
  text-align: center;
  margin-bottom: 0.75rem;
}

.services-title-main {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.services-title-main em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.services-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 90ch;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, border-color 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--copper);
  box-shadow: 0 24px 48px rgba(201, 151, 58, 0.18);
}

.svc-card-top {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  display: block;
}

.svc-card:hover .svc-card-photo {
  transform: scale(1.07);
}

.svc-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,44,44,0.2) 0%, rgba(44,44,44,0.52) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.svc-card:hover .svc-card-photo-overlay {
  background: linear-gradient(180deg, rgba(44,44,44,0.1) 0%, rgba(143,175,152,0.35) 100%);
}

.svc-card-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(247,244,236,0.9);
  letter-spacing: 0.08em;
  z-index: 2;
}

.svc-card-icon-wrap {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,44,44,0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease, border-color 0.4s ease;
}

.svc-card:hover .svc-card-icon-wrap {
  transform: scale(1.12);
  background: rgba(143,175,152,0.55);
  border-color: rgba(255,255,255,0.6);
}

.svc-card-tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.75);
  font-family: var(--sans);
  z-index: 2;
  background: rgba(44,44,44,0.4);
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(4px);
}

.svc-card-body {
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
}

.svc-card-discipline {
  font-family: var(--italic);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.svc-card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0;
  min-height: 3.6rem;
}

.svc-card-title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.svc-card-divider {
  width: 28px;
  height: 1px;
  background: var(--copper);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
  margin: 0.85rem 0;
  opacity: 0.6;
}

.svc-card:hover .svc-card-divider {
  width: 48px;
  opacity: 1;
}

.svc-card-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.svc-card-cta:hover {
  gap: 0.85rem;
  color: var(--copper);
}

.svc-card-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.svc-card-cta:hover .arrow {
  transform: translateX(4px);
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--sage));
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.svc-card:hover::after {
  width: 100%;
}

.svc-card-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.svc-card-corner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.5s ease, border-color 0.4s ease;
}

.svc-card:hover .svc-card-corner::after {
  border-color: var(--sage-light);
  transform: scale(1.15);
}

.services-bottom {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Sage primary button override for services — File 2 */
.services-bottom .btn-ghost {
  border-color: var(--sage-mid);
  color: var(--sage-deep);
}

.services-bottom .btn-ghost:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
}

/* =============== GOOGLE REVIEWS =============== */
.reviews {
  padding: 3rem 0;
  background: var(--sage-bg);     /* File 2: sage tinted */
  /* border-top: 1px solid var(--sage-light);
  border-bottom: 1px solid var(--sage-light); */
}

.reviews-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  /* gap: 3rem; */
  align-items: center;
}

.reviews-aggregate {
  text-align: left;
}

.reviews-label {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.reviews-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
  color: var(--copper);
}

.reviews-stars svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.reviews-count strong {
  color: var(--ink);
  font-weight: 500;
}

.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.reviews-google-logo { font-weight: 500; letter-spacing: -0.02em; }
.reviews-google-logo .b  { color: #4285f4; }
.reviews-google-logo .r1 { color: #ea4335; }
.reviews-google-logo .y  { color: #fbbc04; }
.reviews-google-logo .b2 { color: #4285f4; }
.reviews-google-logo .g  { color: #34a853; }
.reviews-google-logo .r2 { color: #ea4335; }

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 160px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 1.75rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: var(--sage-light);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.review-time {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-g { width: 18px; height: 18px; flex-shrink: 0; }

.review-stars {
  color: var(--copper);
  display: flex;
  gap: 1px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.reviews-nav:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
}

.reviews-nav.prev { left: -1.25rem; }
.reviews-nav.next { right: -1.25rem; }

/* =============== LUXURY BRANDS =============== */
.brands {
  /* padding: 3rem 0; */
  text-align: center;
}

.brands-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.brands-title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.brands-intro {
  max-width: 80ch;
  margin: 0 auto 4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand {
  background: var(--ivory);
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s ease;
  min-height: 120px;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  filter: grayscale(1);
  opacity: 0.75;
}

.brand:hover {
  background: var(--sage-bg);      /* File 2: sage tint */
  transform: translateY(-2px);
  filter: grayscale(0);
  opacity: 1;
  color: var(--sage-deep);         /* File 2: sage text on hover */
}

.brand.serif-italic { font-family: var(--italic); font-style: italic; font-size: 1.5rem; }
.brand.condensed { font-family: var(--sans); font-weight: 600; letter-spacing: 0.18em; font-size: 1rem; text-transform: uppercase; }
.brand.bold { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; font-size: 1.3rem; }
.brand.script { font-family: var(--italic); font-style: italic; font-size: 1.8rem; font-weight: 400; }
.brand.monogram { font-family: var(--serif); font-weight: 500; letter-spacing: -0.05em; font-size: 2rem; }

/* =============== PROCESS V2 =============== */
.fl-process {
  padding: 5.5rem 0;
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.fl-process-bg-mark {
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14rem, 28vw, 22rem);
  color: rgba(201, 151, 58, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.fl-process-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.fl-process-header-left { flex: 1; min-width: 260px; }

.fl-process-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.fl-process-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.fl-process-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.fl-process-title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}

.fl-process-header-right {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.fl-process-lede {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247,244,236,0.65);
  line-height: 1.65;
  border-left: 1px solid rgba(143, 175, 152, 0.4);
  padding-left: 1.25rem;
}

.fl-process-connector {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

.fl-process-connector::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(143, 175, 152, 0.18);
  z-index: 0;
}

.fl-step-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.5rem 0 0;
  position: relative;
  z-index: 1;
}

.fl-step-v2:last-child { padding-right: 0; }

.fl-step-num-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.fl-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(143, 175, 152, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  flex-shrink: 0;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.fl-step-v2:hover .fl-step-circle {
  border-color: var(--sage);
  background: rgba(143, 175, 152, 0.1);
}

.fl-step-roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--copper);
  font-weight: 400;
  line-height: 1;
}

.fl-step-label {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.3);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fl-step-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.005em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.fl-step-accent {
  width: 20px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 0.85rem;
  opacity: 0.5;
  transition: width 0.5s ease, opacity 0.5s ease;
}

.fl-step-v2:hover .fl-step-accent { width: 36px; opacity: 1; }

.fl-step-desc {
  font-size: 0.9rem;
  color: rgba(247,244,236,0.5);
  line-height: 1.75;
  font-weight: 300;
}

.fl-process-divider {
  height: 1px;
  background: rgba(247,244,236,0.08);
  margin-bottom: 3.5rem;
  position: relative;
}

.fl-process-divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 60px;
  height: 2px;
  background: var(--sage);
  opacity: 0.6;
}

.fl-process-quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fl-process-quote-mark {
  font-family: var(--italic);
  font-size: 5rem;
  color: var(--copper);
  line-height: 0.7;
  opacity: 0.35;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.fl-process-blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ivory);
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
}

.fl-process-blockquote em { color: var(--copper); }

.fl-process-quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  border-bottom: 1px solid rgba(143,175,152,0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.fl-process-quote-cta:hover { border-color: var(--sage); gap: 0.9rem; }

/* =============== PROOF =============== */
.proof {
  padding: 3rem 0;
  background: var(--sage-bg);     /* File 2: sage tinted */
  /* border-top: 1px solid var(--sage-light); */
}

.proof-lede {
  max-width: 80ch;
  color: var(--ink-soft);
  margin-top: -2rem;
  margin-bottom: 4rem;
  font-size: 1rem;
  line-height: 1.7;
}

.studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.study {
  background: var(--ivory);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.study-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: var(--ivory-warm);
}

.study-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.04em;
}

.study-before {
  background-image: linear-gradient(135deg, #8b8b7a, #5c5c4a);
  color: var(--ivory);
  font-size: 2.25rem;
}

.study-after {
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  color: var(--ivory);
  font-size: 2.25rem;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s linear;
}

.study-side .lbl {
  position: absolute;
  top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-style: normal;
  background: rgba(44, 44, 44, 0.7);
  color: var(--ivory);
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(4px);
}

.study-before .lbl {
  left: 1rem;
  background: rgba(247, 244, 236, 0.85);
  color: var(--ink);
}

.study-after .lbl { right: 1rem; }

.study-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--ivory);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.study-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.study-handle::after {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.1em;
  font-weight: 500;
  z-index: 2;
}

.study-meta {
  padding: 1.5rem 1.5rem 1.75rem;
}

.study-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.study-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* =============== GALLERY =============== */
/* .gallery {
  padding: 3rem 0 5rem;
} */

.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 var(--gutter) 1.5rem;
  margin: 0 calc(-1 * var(--gutter));
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 320px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover { transform: translateY(-4px); }

.gallery-item-bg {
  position: absolute;
  inset: 0;
}

.gallery-item:nth-child(1) .gallery-item-bg { background: #fff; }
.gallery-item:nth-child(2) .gallery-item-bg { background: #fff; }
.gallery-item:nth-child(3) .gallery-item-bg { background: #fff; }
.gallery-item:nth-child(4) .gallery-item-bg { background: #fff; }
.gallery-item:nth-child(5) .gallery-item-bg { background: linear-gradient(135deg, #5A5A5A, #DBB97A); }
.gallery-item:nth-child(6) .gallery-item-bg { background: linear-gradient(135deg, #C8D4C0, #A7B59E); }
.gallery-item:nth-child(7) .gallery-item-bg { background: linear-gradient(135deg, #3A3A3A, #2A2A2A); }
.gallery-item:nth-child(8) .gallery-item-bg { background: linear-gradient(135deg, #A07828, #2C2C2C); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,44,44,0.7));
  transition: opacity 0.4s ease;
}

.gallery-item-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: var(--ivory);
  z-index: 2;
}

.gallery-item-label .num {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.gallery-item-label .name {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: -0.005em;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-track-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.gallery-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--copper), var(--sage));
  width: 20%;
  transition: width 0.2s ease;
}

.gallery-arrows { display: flex; gap: 0.5rem; }

.gallery-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gallery-arrow:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
}

/* =============== FAQ =============== */
.faq {
  /* padding: 3rem 0; */
  background: var(--sage-bg);     /* File 2: sage tinted */
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  padding-bottom : 3rem;
}

.faq-side .section-num {
  display: block;
  margin-bottom: 1.25rem;
}

.faq-side h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.faq-side h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.faq-side p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 36ch;
}

.faq-side .faq-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--wa-green);
  color: white;
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.35s ease;
}

.faq-side .faq-wa:hover { background: #128c7e; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.3s ease;
  border-bottom: 1px solid var(--line);
}

.faq-question:hover { color: var(--sage-deep); }

.faq-question .plus {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: opacity 0.3s ease;
}

.faq-question .plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-question .plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.open .faq-question .plus { transform: rotate(180deg); }
.faq-item.open .faq-question .plus::after { opacity: 0; }
.faq-item.open .faq-question { color: var(--sage-deep); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 60ch;
}

.faq-item.open .faq-answer { max-height: 280px; }

/* =============== SERVICE AREA MAP =============== */
.area { padding: 3rem 0; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.area-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.area-text h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.area-text p {
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.area-cities {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.area-cities li {
  padding: 0.5rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.area-cities li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sage);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  flex-shrink: 0;
}

.area-map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.area-map-wrap svg { width: 100%; height: 100%; display: block; }

.zone {
  fill: var(--ivory);
  stroke: var(--line);
  stroke-width: 1;
  transition: fill 0.4s ease;
  cursor: pointer;
}

.zone:hover, .zone.active {
  fill: rgba(143, 175, 152, 0.18);
  stroke: var(--sage);
}

.pin-group { cursor: pointer; }

.pin-dot {
  fill: var(--copper);
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.5s ease-out infinite;
}

.pin-ring {
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: pinRing 2.5s ease-out infinite;
}

.pin-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  fill: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =============== FINAL CTA =============== */
.final-cta {
  position: relative;
  padding: 10rem 0;
  text-align: center;
  background-image: url("./BGCTA.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44,44,44,0.55) 0%, rgba(44,44,44,0.72) 100%),
    radial-gradient(ellipse at center, rgba(44,44,44,0.3) 0%, rgba(44,44,44,0.65) 100%);
  z-index: -1;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--ivory);
}

.final-cta h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--copper);
}

.final-cta p {
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  font-size: 1.05rem;
  color: rgba(247, 244, 236, 0.85);
  line-height: 1.7;
}

.final-cta .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-primary {
  background: var(--copper);
  color: var(--ivory);
  border-color: var(--copper);
}

.final-cta .btn-primary:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
}

.final-cta .btn-ghost {
  border-color: var(--sage-light);
  color: var(--ivory);
  background: transparent;
}

.final-cta .btn-ghost:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
}

/* =============== FOOTER =============== */
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 5rem var(--gutter) 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 244, 236, 0.12);
}

.footer-brand h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-family: var(--italic);
  font-style: italic;
  color: var(--sage-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(247, 244, 236, 0.6);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(247, 244, 236, 0.65);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(247, 244, 236, 0.45);
}

/* =============== WHATSAPP FLOATING BUTTON =============== */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  align-items: center;
  transform: translateY(120%);
  animation: waEnter 0.7s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.wa-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  position: relative;
}

.wa-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}

.wa-button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37,211,102,0.5), 0 4px 8px rgba(0,0,0,0.2);
}

.wa-button svg { width: 32px; height: 32px; fill: white; }

.wa-label {
  background: var(--ink);
  color: var(--ivory);
  padding: 0.65rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-radius: 30px 0 0 30px;
  margin-right: -18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateX(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
}

.wa-float:hover .wa-label { transform: translateX(0); opacity: 1; }

/* =============== MOBILE STICKY BAR =============== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--ivory);
  padding: 0.7rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.mobile-bar .mb-call { background: var(--ink); color: var(--ivory); }
.mobile-bar .mb-wa { background: var(--wa-green); color: white; }
.mobile-bar svg { width: 16px; height: 16px; }

/* =============== REVEAL ANIMATION =============== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =============== KEYFRAMES =============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes waEnter {
  to { transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1);   }
  50%       { transform: scale(1.2); }
}

@keyframes pinRing {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(3);   opacity: 0; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .reviews-aggregate { text-align: center; }
  .reviews-aggregate .reviews-stars { justify-content: center; }
  .reviews-nav.prev { left: 0.25rem; }
  .reviews-nav.next { right: 0.25rem; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 960px) {
  .hero { padding: calc(var(--announce-h) + 4.5rem) var(--gutter) 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .svc-card:hover { transform: none; }
  .studies { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .review-card { flex: 0 0 calc(50% - 0.625rem); }
  .fl-process-connector::before { display: none; }
  .fl-process-connector { flex-direction: column; gap: 2rem; }
  .fl-step-v2 { padding: 0; flex-direction: row; align-items: flex-start; gap: 1.25rem; }
  .fl-step-num-wrap { margin-bottom: 0; flex-shrink: 0; }
  .fl-process-quote-wrap { flex-direction: column; gap: 1rem; }
  .fl-process-quote-mark { font-size: 3.5rem; }
}

@media (max-width: 720px) {
  :root { --announce-h: 60px; }

  .announce {
    white-space: normal;
    flex-direction: column;
    gap: 0.25rem;
    padding-block: 0.5rem;
    line-height: 1.4;
    font-size: 0.591rem;
    letter-spacing: 0.22em;
    text-align: center;
  }

  .announce .dot { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ivory);
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(44,44,44,0.08);
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 5.5rem; right: 1rem; }
  .wa-button { width: 52px; height: 52px; margin-bottom: -4rem; }
  .wa-button svg { width: 26px; height: 26px; }
  .wa-label { display: none; }
  .mobile-bar { display: flex; }
  footer { padding-bottom: 5rem; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand { font-size: 1.15rem; padding: 1.75rem 0.5rem; min-height: 90px; }
  .brand.script, .brand.monogram { font-size: 1.45rem; }
  .review-card { flex: 0 0 85%; min-width: 240px; }
  .gallery-item { flex: 0 0 240px; }
  .area-cities { grid-template-columns: 1fr; }
  .final-cta { background-attachment: scroll; padding: 7rem 0; }
  .fl-process { padding: 3.5rem 0; }
  .fl-process-bg-mark { display: none; }
  .fl-process-header { flex-direction: column; gap: 1.5rem; }
  .fl-process-header-right { max-width: 100%; }
  .fl-atelier-rule, .fl-atelier-footer-rule { padding-left: 1.5rem; padding-right: 1.5rem; }
  .fl-atelier-grid { grid-template-columns: 1fr; }
  .fl-atelier-cell { padding: 2rem 1.5rem; }
  .fl-atelier-cell-desc { max-width: 100%; }
  .fl-atelier-headline { font-size: 1.45rem; }
  .fl-atelier-body p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .section-head { flex-direction: column; gap: 1rem; }
  .marquee-item { font-size: 1.25rem; padding: 1.25rem 1.5rem; gap: 1.5rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .fl-atelier-tagline { gap: 0.75rem; }
  .fl-atelier-tag-word { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =====================================================
   FINAL TYPOGRAPHY NORMALIZATION
   ===================================================== */

h1,
h2,
.section-title,
.services-title-main,
.fl-atelier-headline,
.brands-title,
.process-title,
.proof-title,
.faq-title,
.area-title,
.cta-title {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-size: clamp(1.93rem, 5vw, 4.2rem) !important;
  line-height: 1.08 !important;
  max-width: 900px;
}

.services-title-main,
.brands-title,
.process-title,
.proof-title,
.faq-title,
.area-title,
.cta-title {
  line-height: 1.12 !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.fl-atelier-headline {
  line-height: 1.16 !important;
  color: var(--ink) !important;
}

h3,
.svc-card-title,
.fl-atelier-cell-title,
.process-step-title,
.proof-card-title,
.faq-question {
  font-family: var(--serif) !important;
  font-size: var(--fs-h3);
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.005em;
}

p,
.services-sub,
.svc-card-desc,
.fl-atelier-body p,
.fl-atelier-cell-desc,
.process-step-desc,
.review-text,
.brands-sub,
.proof-sub,
.faq-answer,
.area-desc,
.cta-sub,
.footer p {
  font-family: var(--sans) !important;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0;
}

.announce,
.nav-links,
.nav-cta,
.services-eyebrow,
.fl-atelier-eyebrow,
.process-label,
.faq-label,
.area-label,
.svc-card-cta,
.btn {
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.fl-atelier-eyebrow {
  font-size: 0.72rem !important;
  letter-spacing: 0.32em !important;
  font-weight: 400 !important;
}

.svc-card-title {
  min-height: 3.6rem;
  display: flex;
  align-items: flex-start;
}

.svc-card-desc {
  min-height: 7.5rem;
}

.nav-logo span span {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
}

@media (max-width: 720px) {
  .fl-atelier-headline {
    font-size: clamp(1.75rem, 7vw, 2.2rem) !important;
  }

  .services-title-main {
    font-size: clamp(1.9rem, 7vw, 2.4rem) !important;
  }
}

/* FINAL OVERRIDE: Capitalize First Letter Of Each Word */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.services-title-main,
.fl-atelier-headline,
.brands-title,
.process-title,
.proof-title,
.faq-title,
.area-title,
.cta-title,
.svc-card-title,
.fl-atelier-cell-title,
.process-step-title,
.proof-card-title,
.faq-question,
.nav-links,
.nav-links a,
.nav-cta,
.btn,
.svc-card-cta,
.services-eyebrow,
.fl-atelier-eyebrow,
.announce {
  text-transform: capitalize !important;
}

/* HERO HEADING POSITION + SIZE */
.hero {
  justify-content: flex-end !important;
  padding-bottom: 2.2rem !important;
}

.hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.25rem) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 720px) {
  .hero {
    justify-content: flex-end !important;
    padding-top: calc(var(--announce-h) + 4.5rem) !important;
    padding-bottom: 4.8rem !important;
  }

  .hero-inner {
    transform: translateY(-18px);
  }

  .hero h1 {
    margin-bottom: 2rem !important;
  }
}

/* =============== UNIFIED TYPE SCALE =============== */
.hero h1          { font-size: var(--fs-h2) !important; }
h1                { font-size: var(--fs-h1) !important; }
h2, .fl-atelier-headline,
.services-title-main,
.brands-title,
.fl-process-title,
.faq-side h2,
.area-text h2,
.final-cta h2     { font-size: var(--fs-h2) !important; }
h3, .svc-card-title,
.fl-atelier-cell-title,
.study-title,
.fl-step-name     { font-size: var(--fs-h3) !important; }

.faq-question     { font-size: var(--fs-body) !important; }

p, .svc-card-desc,
.services-sub,
.fl-atelier-body p,
.fl-step-desc,
.review-text,
.brands-intro,
.faq-answer-inner,
.proof-lede,
.area-text p      { font-size: var(--fs-body) !important; }

.nav-links, .nav-links a { font-size: var(--fs-nav) !important; }
.services-eyebrow,
.fl-atelier-eyebrow,
.fl-process-eyebrow,
.svc-card-discipline,
.svc-card-cta     { font-size: var(--fs-eyebrow) !important; }

@media (max-width: 720px) {
  :root {
    --fs-h1:      clamp(1.5rem, 6vw, 2rem);
    --fs-h2:      clamp(1.4rem, 5vw, 1.75rem);
    --fs-h3:      clamp(1.1rem, 4vw, 1.25rem);
  }
}

/* =========================
   GALLERY IMAGE FIX
   ========================= */

.gallery-item{
  position: relative;
  overflow: hidden;
}

.gallery-item-bg{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f5f3;
}

/* both images */
.gallery-item-bg img{
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  object-fit: contain;
  display: block;
  transition: transform .45s ease;
}

/* top image */
.gallery-item-bg img:first-child{
  top: 0;
  padding: 18px 18px 10px;
}

/* bottom image */
.gallery-item-bg img:last-child{
  bottom: 0;
  padding: 10px 18px 18px;
}

/* hover zoom */
.gallery-item:hover .gallery-item-bg img{
  transform: scale(1.03);
}


/* =========================================
   DESKTOP + MOBILE VIDEO SWITCH
========================================= */

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .desktop-video {
    display: none !important;
  }

  .mobile-video {
    display: block !important;
  }

  .hero {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    /* IMPORTANT */
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-inner {
    position: relative !important;
    z-index: 5 !important;
    padding-inline: 0.1rem !important;
  }

  .hero h1 {
    font-size: 1.41rem !important;
    line-height: 1.08 !important;
  }
}

