/* ═══════════════════════════════════════════════════════════════════════════
   Celine Beauty Parlor — Editorial Magazine Stylesheet (v2)
   Palette : Bordeaux #6B1E47 · Gold #C8982A · Cream #FBF6F0 · Ink #1A1018
   Direction : Vogue / editorial / luxury craftsmanship
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600&family=Italiana&display=swap');

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --cb-primary:    #6B1E47;
  --cb-primary-d:  #4E1434;
  --cb-primary-l:  #8B2A5C;
  --cb-gold:       #C8982A;
  --cb-gold-l:     #E0B84A;
  --cb-gold-d:     #A07820;
  --cb-cream:      #FBF6F0;
  --cb-cream-d:    #F2E9DC;
  --cb-ink:        #1A1018;
  --cb-ink-2:      #2D1E28;
  --cb-text:       #2C1A26;
  --cb-muted:      #7A6070;
  --cb-line:       rgba(107, 30, 71, .12);

  --shadow-sm:  0 2px 12px rgba(107, 30, 71, .08);
  --shadow:     0 8px 32px rgba(107, 30, 71, .14);
  --shadow-lg:  0 24px 70px rgba(107, 30, 71, .22);
  --shadow-gold: 0 12px 40px rgba(200, 152, 42, .28);

  --font-display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;

  --t-fast:   .25s cubic-bezier(.4, 0, .2, 1);
  --t:        .45s cubic-bezier(.4, 0, .2, 1);
  --t-slow:   .9s cubic-bezier(.19, 1, .22, 1);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

/* ── Reset / Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: #fff;
  color: var(--cb-text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cb-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cb-gold); }

::selection { background: var(--cb-gold); color: #fff; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, .cb-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cb-text);
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 500; }

.cb-display { font-family: var(--font-display); letter-spacing: .02em; }
.cb-italic  { font-style: italic; }

.cb-eyebrow {
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cb-gold-d);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.cb-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cb-gold);
}

.cb-gold    { color: var(--cb-gold) !important; }
.cb-primary { color: var(--cb-primary) !important; }

/* ── Section helpers ──────────────────────────────────────────────────────── */
.cb-section       { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.cb-section-cream { background: var(--cb-cream); }
.cb-section-ink   { background: var(--cb-ink); color: #fff; }
.cb-section-ink h1, .cb-section-ink h2, .cb-section-ink h3 { color: #fff; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.cb-btn-gold {
  background: var(--cb-ink);
  color: #fff;
  border: 1px solid var(--cb-ink);
}
.cb-btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cb-gold), var(--cb-gold-d));
  transform: translateY(101%);
  transition: transform var(--t);
  z-index: 0;
}
.cb-btn-gold > * { position: relative; z-index: 1; }
.cb-btn-gold:hover { color: #fff; border-color: var(--cb-gold-d); }
.cb-btn-gold:hover::before { transform: translateY(0); }

.cb-btn-ghost {
  background: transparent;
  color: var(--cb-ink);
  border: 1px solid var(--cb-ink);
}
.cb-btn-ghost:hover { background: var(--cb-ink); color: #fff; }

.cb-btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}
.cb-btn-ghost-light:hover { border-color: var(--cb-gold-l); color: var(--cb-gold-l); }

.cb-btn-link {
  background: none; border: none;
  color: var(--cb-ink);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem 0;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  transition: all var(--t-fast);
}
.cb-btn-link:hover { color: var(--cb-gold-d); }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.cb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all var(--t);
}
.cb-nav.is-scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cb-line);
  padding: .85rem 0;
  box-shadow: var(--shadow-sm);
}

.cb-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cb-brand {
  display: flex; align-items: baseline; gap: .35rem;
  text-decoration: none;
}
.cb-brand-mark {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--cb-ink);
  line-height: 1;
}
.cb-brand-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cb-gold-d);
  font-weight: 500;
}

.cb-nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  margin: 0; padding: 0; list-style: none;
}
.cb-nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cb-ink) !important;
  padding: .5rem 0;
  transition: color var(--t-fast);
}
.cb-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--cb-gold);
  transition: all var(--t);
}
.cb-nav-link:hover, .cb-nav-link.is-active { color: var(--cb-gold-d) !important; }
.cb-nav-link:hover::after, .cb-nav-link.is-active::after {
  width: 100%; left: 0;
}

.cb-nav-cta {
  font-size: .76rem;
  letter-spacing: .14em;
  padding: .8rem 1.5rem;
}

.cb-burger {
  display: none;
  background: none; border: none;
  width: 38px; height: 38px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.cb-burger span {
  position: absolute; left: 6px; right: 6px;
  height: 1.5px; background: var(--cb-ink);
  transition: all var(--t);
}
.cb-burger span:nth-child(1) { top: 13px; }
.cb-burger span:nth-child(2) { top: 18px; }
.cb-burger span:nth-child(3) { top: 23px; }
.cb-burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.cb-burger.is-open span:nth-child(2) { opacity: 0; }
.cb-burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.cb-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cb-cream);
  z-index: 105;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--t);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.cb-mobile-nav.is-open { transform: translateX(0); }
.cb-mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cb-ink) !important;
  padding: .75rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--cb-line);
  transition: color var(--t-fast);
}
.cb-mobile-nav-link:hover, .cb-mobile-nav-link.is-active {
  color: var(--cb-gold-d) !important;
  font-style: italic;
}
.cb-mobile-nav-cta {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  .cb-nav-links, .cb-nav-cta { display: none; }
  .cb-burger { display: block; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Editorial Split Magazine Layout
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-hero {
  position: relative;
  min-height: 100vh;
  background: var(--cb-cream);
  padding-top: 120px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.cb-hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 .42 0 0 0 0 .12 0 0 0 0 .28 0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
}

.cb-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.cb-hero-text {
  position: relative;
}

.cb-hero-issue {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cb-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cb-hero-issue::before, .cb-hero-issue::after {
  content: ''; flex: 1; max-width: 40px;
  height: 1px; background: var(--cb-line);
}

.cb-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--cb-ink);
  margin-bottom: 1.5rem;
}
.cb-hero-title .cb-line {
  display: block;
  overflow: hidden;
}
.cb-hero-title .cb-line > span {
  display: block;
  transform: translateY(110%);
  animation: heroLine 1.1s var(--ease-out) forwards;
}
.cb-hero-title .cb-line:nth-child(1) > span { animation-delay: .15s; }
.cb-hero-title .cb-line:nth-child(2) > span { animation-delay: .3s; }
.cb-hero-title .cb-line:nth-child(3) > span { animation-delay: .45s; }
.cb-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cb-gold-d);
}

@keyframes heroLine {
  to { transform: translateY(0); }
}

.cb-hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cb-text);
  max-width: 460px;
  margin: 1.5rem 0 2.5rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) .8s forwards;
}

.cb-hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1s forwards;
}

@keyframes heroFade {
  to { opacity: 1; }
}

.cb-hero-meta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cb-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1.2s forwards;
}
.cb-hero-meta-item {
  display: flex; flex-direction: column; gap: .25rem;
}
.cb-hero-meta-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--cb-ink);
  line-height: 1;
}
.cb-hero-meta-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

/* Hero visual collage */
.cb-hero-visual {
  position: relative;
  height: clamp(500px, 70vh, 720px);
}
.cb-hero-photo {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cb-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18));
  pointer-events: none;
}
.cb-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.cb-hero-photo:hover img { transform: scale(1.04); }

.cb-hero-photo-1 {
  width: 62%; height: 78%;
  right: 0; top: 0;
  opacity: 0;
  animation: heroPhoto 1.2s var(--ease-out) .4s forwards;
}
.cb-hero-photo-2 {
  width: 44%; height: 52%;
  left: 0; bottom: 0;
  border: 6px solid var(--cb-cream);
  opacity: 0;
  animation: heroPhoto 1.2s var(--ease-out) .6s forwards;
}
.cb-hero-photo-3 {
  width: 32%; height: 28%;
  left: 18%; top: 8%;
  border: 5px solid var(--cb-cream);
  opacity: 0;
  animation: heroPhoto 1.2s var(--ease-out) .8s forwards;
}

@keyframes heroPhoto {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cb-hero-tag {
  position: absolute;
  background: #fff;
  padding: .8rem 1.4rem;
  font-family: var(--font-serif);
  font-size: .85rem;
  font-style: italic;
  font-weight: 500;
  color: var(--cb-ink);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--cb-gold);
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1.1s forwards;
}
.cb-hero-tag-1 { bottom: 28%; right: -3%; }

.cb-hero-stamp {
  position: absolute;
  bottom: -2%; right: 38%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--cb-gold);
  color: var(--cb-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-12deg);
  opacity: 0;
  animation: stampIn 1s var(--ease-out) 1.3s forwards;
  box-shadow: var(--shadow);
}
.cb-hero-stamp::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 50%;
}
@keyframes stampIn {
  from { opacity: 0; transform: rotate(0) scale(.5); }
  to   { opacity: 1; transform: rotate(-12deg) scale(1); }
}

.cb-hero-scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cb-muted);
  z-index: 3;
  text-decoration: none;
}
.cb-hero-scroll-line {
  width: 1px; height: 50px;
  background: var(--cb-muted);
  position: relative;
  overflow: hidden;
}
.cb-hero-scroll-line::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%; background: var(--cb-gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@media (max-width: 991px) {
  .cb-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cb-hero-visual { height: 420px; }
  .cb-hero-meta { grid-template-columns: 1fr 1fr; }
  .cb-hero-stamp { width: 80px; height: 80px; font-size: .68rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-marquee {
  background: var(--cb-ink);
  color: var(--cb-cream);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 152, 42, .15);
  border-bottom: 1px solid rgba(200, 152, 42, .15);
  position: relative;
  z-index: 2;
}
.cb-marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.cb-marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  display: flex; align-items: center; gap: 4rem;
  white-space: nowrap;
}
.cb-marquee-item::after {
  content: '✦';
  color: var(--cb-gold);
  font-size: 1.2rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.cb-sec-head-left { text-align: left; margin-left: 0; }

.cb-sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  margin: 1rem 0;
  color: var(--cb-ink);
}
.cb-sec-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cb-gold-d);
}

.cb-sec-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cb-muted);
  max-width: 520px;
  margin: 0 auto;
}
.cb-sec-head-left .cb-sec-sub { margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS — Editorial premium
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.cb-srv {
  position: relative;
  background: #fff;
  border: 1px solid var(--cb-line);
  overflow: hidden;
  transition: all var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.cb-srv:hover {
  transform: translateY(-8px);
  border-color: var(--cb-gold);
  box-shadow: var(--shadow-lg);
}

.cb-srv-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cb-cream-d);
}
.cb-srv-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(107, 30, 71, .14);
  background: linear-gradient(135deg, var(--cb-cream) 0%, var(--cb-cream-d) 100%);
}
.cb-srv-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.cb-srv:hover .cb-srv-img img { transform: scale(1.08); }

.cb-srv-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .15em;
  color: #fff;
  background: rgba(26, 16, 24, .7);
  backdrop-filter: blur(8px);
  padding: .35rem .75rem;
  border-radius: 50px;
  z-index: 2;
}

.cb-srv-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cb-srv-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cb-ink);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.cb-srv-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--cb-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.cb-srv-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cb-line);
  font-size: .82rem;
  color: var(--cb-muted);
}
.cb-srv-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cb-gold-d);
  letter-spacing: .04em;
}
.cb-srv-duration { display: inline-flex; align-items: center; gap: .4rem; }
.cb-srv-duration i { color: var(--cb-gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY — Asymmetric magazine layout
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.cb-g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cb-cream-d);
}
.cb-g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.cb-g-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,16,24,.8));
  opacity: 0;
  transition: opacity var(--t);
  z-index: 1;
}
.cb-g-item:hover img { transform: scale(1.07); }
.cb-g-item:hover::before { opacity: 1; }
.cb-g-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t);
  font-size: 1.1rem;
}
.cb-g-item:hover .cb-g-label {
  opacity: 1; transform: translateY(0);
}

.cb-g-1 { grid-column: span 5; grid-row: span 5; }
.cb-g-2 { grid-column: span 4; grid-row: span 3; }
.cb-g-3 { grid-column: span 3; grid-row: span 4; }
.cb-g-4 { grid-column: span 4; grid-row: span 2; }
.cb-g-5 { grid-column: span 5; grid-row: span 3; }
.cb-g-6 { grid-column: span 3; grid-row: span 3; }

@media (max-width: 768px) {
  .cb-gallery { grid-auto-rows: 80px; }
  .cb-g-1 { grid-column: span 12; grid-row: span 4; }
  .cb-g-2, .cb-g-3, .cb-g-4, .cb-g-5, .cb-g-6 { grid-column: span 6; grid-row: span 3; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SPLIT
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.cb-split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cb-cream-d);
}
.cb-split-img img { width: 100%; height: 100%; object-fit: cover; }
.cb-split-img::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--cb-gold);
  z-index: -1;
}

.cb-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--cb-text);
  padding-left: 1.5rem;
  border-left: 2px solid var(--cb-gold);
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .cb-split { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY US — feature cards
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.cb-why-card {
  padding: 2.5rem 1.75rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  transition: all var(--t);
}
.cb-section-ink .cb-why-card { border-color: rgba(200, 152, 42, .25); }

.cb-why-card:hover {
  background: rgba(200, 152, 42, .04);
}
.cb-why-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .25em;
  color: var(--cb-gold);
  margin-bottom: 1.5rem;
}
.cb-why-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--cb-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--cb-gold-l);
  margin-bottom: 1.25rem;
}
.cb-why-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: #fff;
}
.cb-why-text {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.cb-testi {
  background: #fff;
  padding: 2.25rem 2rem;
  position: relative;
  border: 1px solid var(--cb-line);
  transition: all var(--t);
}
.cb-testi::before {
  content: '"';
  position: absolute;
  top: -.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cb-gold);
  line-height: 1;
}
.cb-testi:hover {
  border-color: var(--cb-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cb-testi-stars { color: var(--cb-gold); margin-bottom: 1rem; letter-spacing: .15em; }
.cb-testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--cb-text);
  margin-bottom: 1.5rem;
}
.cb-testi-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cb-line);
}
.cb-testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cb-gold), var(--cb-primary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.cb-testi-name { font-weight: 500; color: var(--cb-ink); font-size: .92rem; }
.cb-testi-role { font-size: .78rem; color: var(--cb-muted); letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA banner
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-cta {
  background: var(--cb-ink);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cb-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(200, 152, 42, .15), transparent 60%);
}
.cb-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}
.cb-cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-gold-l);
  font-weight: 300;
}
.cb-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.cb-cta-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative;
}

.cb-btn-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.cb-btn-wa:hover { background: #1ebe5c; border-color: #1ebe5c; color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-foot {
  background: var(--cb-cream);
  color: var(--cb-text);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--cb-line);
}
.cb-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.cb-foot h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cb-ink);
  margin-bottom: 1.25rem;
}
.cb-foot a {
  display: block;
  font-size: .9rem;
  color: var(--cb-muted);
  padding: .25rem 0;
  transition: color var(--t-fast);
}
.cb-foot a:hover { color: var(--cb-gold-d); }

.cb-foot-brand-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cb-ink);
  margin-bottom: .5rem;
}
.cb-foot-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.cb-foot-socials {
  display: flex; gap: .75rem;
}
.cb-foot-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--cb-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cb-ink);
  font-size: 1rem;
  padding: 0;
  transition: all var(--t-fast);
}
.cb-foot-socials a:hover {
  background: var(--cb-ink);
  color: var(--cb-gold-l);
  border-color: var(--cb-ink);
  transform: translateY(-2px);
}
.cb-foot-bottom {
  border-top: 1px solid var(--cb-line);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 0;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--cb-muted);
}

@media (max-width: 768px) {
  .cb-foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING CHATBOT
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-chat-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 96;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cb-ink);
  color: var(--cb-gold-l);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--t);
}
.cb-chat-fab::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cb-gold);
  animation: chatPulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes chatPulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.3); }
}
.cb-chat-fab:hover {
  background: var(--cb-gold);
  color: var(--cb-ink);
  transform: translateY(-3px) scale(1.05);
}
.cb-chat-fab.is-open i { transform: rotate(180deg); }
.cb-chat-fab i { transition: transform var(--t); }

.cb-chat-fab-pop {
  position: absolute;
  right: 78px; top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--cb-ink);
  padding: .65rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-family: var(--font-serif);
  font-style: italic;
  white-space: nowrap;
  box-shadow: var(--shadow);
  pointer-events: none;
  opacity: 0;
  animation: fabPop .5s var(--ease-out) 3s forwards;
}
.cb-chat-fab-pop::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}
.cb-chat-fab.is-open .cb-chat-fab-pop { display: none; }
@keyframes fabPop {
  0%   { opacity: 0; transform: translateY(-50%) translateX(20px); }
  60%  { opacity: 1; transform: translateY(-50%) translateX(-4px); }
  100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.cb-chat-panel {
  position: fixed;
  bottom: 6.5rem; right: 1.5rem;
  width: min(400px, calc(100vw - 2rem));
  height: min(620px, calc(100vh - 8rem));
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 95;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  border: 1px solid var(--cb-line);
}
.cb-chat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.cb-chat-head {
  background: var(--cb-ink);
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(200, 152, 42, .2);
}
.cb-chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cb-gold), var(--cb-gold-d));
  color: var(--cb-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.cb-chat-info { flex: 1; }
.cb-chat-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.cb-chat-status {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .35rem;
  letter-spacing: .04em;
}
.cb-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}
.cb-chat-close {
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color var(--t-fast);
}
.cb-chat-close:hover { color: var(--cb-gold-l); }

.cb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cb-cream);
  scrollbar-width: thin;
  scrollbar-color: var(--cb-gold) transparent;
}
.cb-chat-body::-webkit-scrollbar { width: 5px; }
.cb-chat-body::-webkit-scrollbar-thumb {
  background: rgba(200, 152, 42, .35);
  border-radius: 5px;
}

.cb-msg {
  display: flex;
  gap: .6rem;
  animation: msgIn .35s var(--ease-out);
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cb-msg-bot { justify-content: flex-start; }
.cb-msg-user { justify-content: flex-end; }

.cb-msg-bubble {
  max-width: 85%;
  padding: .85rem 1.1rem;
  border-radius: 18px;
  font-size: .92rem;
  line-height: 1.55;
}
.cb-msg-bot .cb-msg-bubble {
  background: #fff;
  color: var(--cb-text);
  border: 1px solid var(--cb-line);
  border-bottom-left-radius: 4px;
}
.cb-msg-user .cb-msg-bubble {
  background: var(--cb-ink);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.cb-msg-thinking .cb-msg-bubble {
  padding: 1rem 1.1rem;
}
.cb-msg-dots { display: inline-flex; gap: 4px; }
.cb-msg-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cb-gold);
  animation: dotJump 1.2s infinite;
}
.cb-msg-dots span:nth-child(2) { animation-delay: .2s; }
.cb-msg-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotJump {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

.cb-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0 .25rem;
  animation: msgIn .35s var(--ease-out);
}
.cb-chip {
  background: #fff;
  border: 1px solid var(--cb-line);
  border-radius: 50px;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-family: var(--font-sans);
  color: var(--cb-ink);
  cursor: pointer;
  transition: all var(--t-fast);
  font-weight: 500;
}
.cb-chip:hover, .cb-chip:focus {
  background: var(--cb-ink);
  color: #fff;
  border-color: var(--cb-ink);
  transform: translateY(-1px);
}

.cb-chat-result {
  background: #fff;
  border: 1px solid var(--cb-gold);
  padding: 1.5rem;
  border-radius: var(--r);
  margin-top: .5rem;
}
.cb-chat-result-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cb-ink);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.cb-chat-result-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cb-gold-d);
  background: rgba(200, 152, 42, .12);
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.cb-chat-result-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--cb-muted);
  margin-bottom: 1.25rem;
}
.cb-chat-result-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cb-ink);
  color: #fff !important;
  padding: .8rem 1.4rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  text-decoration: none;
  transition: all var(--t);
}
.cb-chat-result-cta:hover {
  background: var(--cb-gold-d);
  color: #fff !important;
  transform: translateY(-2px);
}
.cb-chat-restart {
  background: none;
  border: 1px solid var(--cb-line);
  color: var(--cb-muted);
  padding: .55rem 1rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: .75rem;
  transition: all var(--t-fast);
  border-radius: 50px;
}
.cb-chat-restart:hover { color: var(--cb-ink); border-color: var(--cb-ink); }

@media (max-width: 480px) {
  .cb-chat-fab { bottom: 1rem; right: 1rem; width: 56px; height: 56px; font-size: 1.3rem; }
  .cb-chat-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .cb-chat-fab-pop { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-page-head {
  padding: 9rem 0 4rem;
  text-align: center;
  background: var(--cb-cream);
  border-bottom: 1px solid var(--cb-line);
}
.cb-page-head-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--cb-ink);
  margin: 1rem 0;
}
.cb-page-head-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-gold-d);
  font-weight: 300;
}
.cb-page-head-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-form-group {
  margin-bottom: 1.5rem;
}
.cb-label {
  display: block;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-ink);
  margin-bottom: .6rem;
}
.cb-input, .cb-select, .cb-textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--cb-text);
  background: #fff;
  border: 1px solid var(--cb-line);
  border-radius: 0;
  transition: all var(--t-fast);
}
.cb-input:focus, .cb-select:focus, .cb-textarea:focus {
  outline: none;
  border-color: var(--cb-gold);
  box-shadow: 0 0 0 3px rgba(200, 152, 42, .12);
}
.cb-textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL / SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ALERT
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cb-alert-success {
  background: #f0fdf4;
  color: #166534;
  border-color: #22c55e;
}
.cb-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #ef4444;
}
.cb-alert-info {
  background: rgba(200, 152, 42, .08);
  color: var(--cb-gold-d);
  border-color: var(--cb-gold);
}
.cb-alert-close {
  background: none; border: none;
  color: inherit; font-size: 1.2rem;
  cursor: pointer; opacity: .6;
  padding: 0; line-height: 1;
}
.cb-alert-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════════════════════ */
.cb-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.cb-container-wide {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.cb-text-center { text-align: center; }
.cb-mt-0 { margin-top: 0; }
.cb-mt-1 { margin-top: 1rem; }
.cb-mt-2 { margin-top: 2rem; }
.cb-mb-0 { margin-bottom: 0; }
.cb-mb-1 { margin-bottom: 1rem; }
.cb-mb-2 { margin-bottom: 2rem; }
.cb-mb-3 { margin-bottom: 3rem; }
.cb-flex { display: flex; }
.cb-flex-wrap { flex-wrap: wrap; }
.cb-gap-1 { gap: 1rem; }
.cb-gap-2 { gap: 2rem; }
.cb-justify-center { justify-content: center; }
.cb-items-center { align-items: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   v3 — Home page premium enrichment
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Press / featured-in strip ────────────────────────────────────────────── */
.cb-press {
  background: var(--cb-cream);
  padding: 2.5rem 0;
  border-top: 1px solid var(--cb-line);
  border-bottom: 1px solid var(--cb-line);
}
.cb-press-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cb-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}
.cb-press-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}
.cb-press-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cb-muted);
  opacity: .55;
  transition: all var(--t);
  white-space: nowrap;
}
.cb-press-item.cb-press-italic {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .03em;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
}
.cb-press-item:hover { opacity: 1; color: var(--cb-ink); }

/* ── Service spotlight (large hero-like cards) ────────────────────────────── */
.cb-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) { .cb-spotlight { grid-template-columns: 1fr; } }

.cb-spot {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cb-ink);
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform var(--t);
}
.cb-spot:hover { transform: translateY(-4px); }
.cb-spot-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cb-primary-d), var(--cb-ink) 70%);
  transition: all var(--t-slow);
}
.cb-spot:hover .cb-spot-bg { transform: scale(1.08); }
.cb-spot-bg-2 {
  background: linear-gradient(135deg, var(--cb-gold-d), var(--cb-primary) 80%);
}
.cb-spot-bg-3 {
  background: linear-gradient(135deg, var(--cb-ink), var(--cb-primary-d) 70%);
}

.cb-spot-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(200,152,42,.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(107,30,71,.4), transparent 50%);
  opacity: .8;
}

.cb-spot-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: #fff;
  z-index: 2;
}
.cb-spot-num {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .25em;
  color: var(--cb-gold-l);
  margin-bottom: 1rem;
}
.cb-spot-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.05;
  letter-spacing: .015em;
}
.cb-spot-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-gold-l);
}
.cb-spot-desc {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.cb-spot-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: .35rem;
  transition: all var(--t-fast);
}
.cb-spot:hover .cb-spot-cta {
  color: var(--cb-gold-l);
  border-color: var(--cb-gold-l);
  gap: .9rem;
}

.cb-spot::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.45));
  z-index: 1;
}

/* ── Process timeline ─────────────────────────────────────────────────────── */
.cb-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.cb-process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cb-gold), var(--cb-gold), transparent);
  z-index: 0;
}
@media (max-width: 768px) {
  .cb-process { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .cb-process::before { display: none; }
}
@media (max-width: 480px) {
  .cb-process { grid-template-columns: 1fr; }
}

.cb-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cb-step-num {
  width: 64px; height: 64px;
  background: var(--cb-cream);
  border: 1px solid var(--cb-gold);
  color: var(--cb-gold-d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all var(--t);
}
.cb-step:hover .cb-step-num {
  background: var(--cb-ink);
  color: var(--cb-gold-l);
  border-color: var(--cb-ink);
  transform: scale(1.05);
}
.cb-step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cb-ink);
  margin-bottom: .5rem;
}
.cb-step-desc {
  font-size: .88rem;
  color: var(--cb-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ── Before / After teaser (in-home) ──────────────────────────────────────── */
.cb-ba-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cb-ba-teaser { grid-template-columns: 1fr; }
}
.cb-ba-mini {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--cb-cream-d);
  box-shadow: var(--shadow);
}
.cb-ba-mini-after,
.cb-ba-mini-before-wrap {
  position: absolute; inset: 0;
}
.cb-ba-mini-after { z-index: 1; }
.cb-ba-mini-before-wrap {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}
.cb-ba-mini-before-wrap > * {
  width: 200%;
  height: 100%;
}
.cb-ba-mini-before, .cb-ba-mini-after-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cb-ba-mini-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(0,0,0,.4);
}
.cb-ba-mini-handle::before {
  content: '⇿';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: #fff;
  color: var(--cb-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
}
.cb-ba-mini-tag {
  position: absolute;
  top: 1rem;
  z-index: 4;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 50px;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.cb-ba-mini-before-tag { left: 1rem; background: rgba(26,16,24,.85); color: #fff; }
.cb-ba-mini-after-tag  { right: 1rem; background: rgba(200,152,42,.95); color: var(--cb-ink); }

.cb-ba-mini-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(107, 30, 71, .25);
  background: linear-gradient(135deg, var(--cb-cream), var(--cb-cream-d));
  letter-spacing: .05em;
}
.cb-ba-mini-fallback-after {
  background: linear-gradient(135deg, var(--cb-primary-d), var(--cb-ink));
  color: var(--cb-gold);
}

/* ── Pricing tiers ────────────────────────────────────────────────────────── */
.cb-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .cb-tiers { grid-template-columns: 1fr; } }

.cb-tier {
  background: #fff;
  border: 1px solid var(--cb-line);
  padding: 2.5rem 2rem;
  transition: all var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
}
.cb-tier:hover {
  border-color: var(--cb-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cb-tier-featured {
  background: var(--cb-ink);
  color: #fff;
  border-color: var(--cb-ink);
}
.cb-tier-featured::before {
  content: 'Most loved';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--cb-gold);
  color: var(--cb-ink);
  padding: .35rem 1.25rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cb-tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .03em;
  margin-bottom: .5rem;
  color: inherit;
}
.cb-tier-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--cb-muted);
  margin-bottom: 2rem;
  min-height: 3rem;
}
.cb-tier-featured .cb-tier-tagline { color: rgba(255,255,255,.6); }
.cb-tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cb-ink);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: .02em;
}
.cb-tier-featured .cb-tier-price { color: var(--cb-gold-l); }
.cb-tier-price small {
  font-size: .9rem;
  color: var(--cb-muted);
  font-family: var(--font-sans);
  letter-spacing: .04em;
  font-weight: 400;
  margin-left: .35rem;
}
.cb-tier-featured .cb-tier-price small { color: rgba(255,255,255,.5); }
.cb-tier-features {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  flex: 1;
}
.cb-tier-features li {
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--cb-text);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.cb-tier-featured .cb-tier-features li { color: rgba(255,255,255,.85); }
.cb-tier-features li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background: var(--cb-gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── Stats counter ────────────────────────────────────────────────────────── */
.cb-stats-banner {
  background: var(--cb-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--cb-line);
  border-bottom: 1px solid var(--cb-line);
}
.cb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
@media (max-width: 768px) {
  .cb-stats-grid { grid-template-columns: 1fr 1fr; gap: 3rem 1rem; }
}
.cb-stat-block {
  text-align: center;
  position: relative;
}
.cb-stat-block + .cb-stat-block::before {
  content: '';
  position: absolute;
  left: -1rem; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--cb-line);
}
@media (max-width: 768px) {
  .cb-stat-block + .cb-stat-block::before { display: none; }
}
.cb-stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--cb-ink);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.cb-stat-big em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cb-gold-d);
  font-weight: 300;
  font-size: .7em;
  margin-left: .15em;
}
.cb-stat-cap {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cb-muted);
  font-weight: 500;
}

/* ── FAQ accordion ────────────────────────────────────────────────────────── */
.cb-faq {
  max-width: 820px;
  margin: 0 auto;
}
.cb-faq-item {
  border-bottom: 1px solid var(--cb-line);
}
.cb-faq-item:first-child { border-top: 1px solid var(--cb-line); }
.cb-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--cb-ink);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--t-fast);
  line-height: 1.4;
}
.cb-faq-q:hover { color: var(--cb-gold-d); }
.cb-faq-q::after {
  content: '+';
  position: absolute;
  right: .5rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cb-gold);
  transition: transform var(--t);
}
.cb-faq-item.is-open .cb-faq-q { color: var(--cb-gold-d); }
.cb-faq-item.is-open .cb-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.cb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.cb-faq-a-inner {
  padding: 0 0 1.75rem;
  font-family: var(--font-sans);
  font-size: .98rem;
  color: var(--cb-muted);
  line-height: 1.7;
}
.cb-faq-item.is-open .cb-faq-a { max-height: 400px; }

/* ── Instagram strip ──────────────────────────────────────────────────────── */
.cb-ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 900px) { .cb-ig-strip { grid-template-columns: repeat(3, 1fr); } }

.cb-ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--cb-cream-d);
}
.cb-ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.cb-ig-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,16,24,.6);
  opacity: 0;
  transition: opacity var(--t);
  z-index: 1;
}
.cb-ig-cell::after {
  content: '\F437'; /* bi-instagram */
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  font-family: 'bootstrap-icons';
  font-size: 1.8rem;
  color: var(--cb-gold-l);
  opacity: 0;
  transition: all var(--t);
  z-index: 2;
}
.cb-ig-cell:hover img { transform: scale(1.08); }
.cb-ig-cell:hover::before { opacity: 1; }
.cb-ig-cell:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.cb-ig-cell-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
}

/* ── Hero featured image (logo lockup) ────────────────────────────────────── */
.cb-hero-logo-card {
  position: absolute;
  width: 62%; height: 78%;
  right: 0; top: 0;
  background: linear-gradient(135deg, #1A1018 0%, #2D1E28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
}
.cb-hero-logo-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200,152,42,.15), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(107,30,71,.3), transparent 60%);
}
.cb-hero-logo-card img {
  position: relative;
  z-index: 1;
  max-width: 70%;
  max-height: 70%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(200,152,42,.25));
}

/* ── Service preview card on Celine booking ──────────────────────────────── */
.cb-svc-preview {
  background: var(--cb-cream);
  border: 1px solid var(--cb-gold);
  padding: 1.5rem;
  margin: -.5rem 0 1.5rem;
  position: relative;
  animation: cbPreviewIn .4s var(--ease-out);
}
@keyframes cbPreviewIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cb-svc-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cb-gold), transparent);
}
.cb-svc-preview-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cb-gold-d);
  padding: .3rem .85rem;
  background: rgba(200, 152, 42, .12);
  border: 1px solid rgba(200, 152, 42, .25);
  margin-bottom: 1rem;
}
.cb-svc-preview-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--cb-ink);
  margin: 0 0 .75rem;
}
.cb-svc-preview-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--cb-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cb-svc-preview-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cb-line);
}
.cb-svc-preview-meta-item {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cb-svc-preview-meta-label {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cb-muted);
  font-weight: 500;
}
.cb-svc-preview-meta-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cb-gold-d);
  letter-spacing: .03em;
}

/* ── Before/After pair (side-by-side, used when video involved) ──────────── */
.cb-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 4/5;
  background: var(--cb-ink);
  position: relative;
  overflow: hidden;
}
.cb-ba-pair-half {
  position: relative;
  overflow: hidden;
  background: var(--cb-cream-d);
}
.cb-ba-pair-half img,
.cb-ba-pair-half video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cb-ba-pair-half .cb-ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 50px;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.cb-ba-pair-half .cb-ba-tag-before {
  background: rgba(26,16,24,.85);
  color: #fff;
}
.cb-ba-pair-half .cb-ba-tag-after {
  background: rgba(200,152,42,.95);
  color: var(--cb-ink);
  left: auto;
  right: 1rem;
}

/* Force native video controls to be discreet */
.cb-ba-pair-half video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0,0,0,.5));
}

/* Single item video on portfolio */
.cb-single-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
