/* =============================================
   WEE XIN MIN — DESIGN SYSTEM
   Warm-Luxury · Story-Led · Premium
   ============================================= */

:root {
  /* Palette */
  --cream:       #FAF8F5;
  --cream-deep:  #F3EFE8;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #A8854A;
  --charcoal:    #1A1714;
  --charcoal-mid:#3D3530;
  --charcoal-soft:#6B6158;
  --blush:       #F0E6E1;
  --blush-deep:  #E8D5CC;
  --white:       #FFFFFF;
  --green:       #25D366;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  /* Spacing */
  --nav-h:       72px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(26,23,20,.06);
  --shadow-md:   0 8px 32px rgba(26,23,20,.10);
  --shadow-lg:   0 20px 60px rgba(26,23,20,.14);
  --shadow-gold: 0 8px 32px rgba(201,169,110,.20);

  /* Transitions */
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .hero-headline, .section-title {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 400;
}
em { font-style: italic; color: var(--gold-dark); }

/* ---- UTILITY BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 2px solid var(--charcoal);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--charcoal);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 2px solid rgba(26,23,20,.25);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--charcoal-mid);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid var(--gold);
  transition: all .3s var(--ease);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.logo-sub {
  font-size: .625rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--charcoal-mid);
  letter-spacing: .02em;
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--charcoal); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all .3s;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px 28px;
  background: var(--cream);
  border-top: 1px solid rgba(201,169,110,.15);
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.mobile-link {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--charcoal-mid);
  border-bottom: 1px solid rgba(26,23,20,.06);
}
.mobile-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  padding: 12px 28px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}
/* Image column */
.hero-image-col { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-portrait {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.02) contrast(1.02);
}
.hero-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(250,248,245,.7);
}
.hero-image-badge-2 {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  box-shadow: var(--shadow-md);
  letter-spacing: .02em;
}
/* Content column */
.hero-content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero-headline {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
}
.hero-body {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-credentials {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(26,23,20,.1);
  margin-top: 8px;
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cred-val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}
.cred-label {
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.cred-divider {
  width: 1px;
  height: 32px;
  background: rgba(26,23,20,.12);
}
/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--charcoal);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* =============================================
   PHILOSOPHY STRIP
   ============================================= */
.philosophy-strip {
  background: var(--charcoal);
  padding: 60px 40px;
}
.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.strip-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
}
.strip-quote em { color: var(--gold-light); }
.strip-attr {
  display: block;
  margin-top: 20px;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250,248,245,.5);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}

/* =============================================
   SERVICES BENTO GRID
   ============================================= */
.services-section {
  padding: 100px 0;
  background: var(--cream);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(201,169,110,.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,.4);
}
.bento-card:hover::before { opacity: 1; }
.bento-large { grid-column: span 2; }
.bento-wide   { grid-column: span 2; }
.bento-accent {
  background: var(--cream-deep);
  border-color: rgba(201,169,110,.3);
}
.bento-icon {
  font-size: 2rem;
  line-height: 1;
}
.bento-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}
.bento-body {
  font-size: .9375rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  flex: 1;
}
.bento-link {
  display: inline-flex;
  align-self: flex-start;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-dark);
  margin-top: 8px;
  transition: gap .25s, letter-spacing .25s;
}
.bento-link:hover { letter-spacing: .08em; }

/* =============================================
   TRUST PREVIEW
   ============================================= */
.trust-preview {
  padding: 100px 0;
  background: var(--blush);
}
.trust-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,.12);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tc-highlight {
  background: var(--charcoal);
  color: var(--cream);
}
.tc-stars {
  font-size: .875rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.tc-highlight .tc-stars { color: var(--gold-light); }
.tc-quote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  color: var(--charcoal);
}
.tc-highlight .tc-quote { color: rgba(250,248,245,.9); }
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,23,20,.08);
}
.tc-highlight .tc-author { border-top-color: rgba(250,248,245,.15); }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  flex-shrink: 0;
}
.tc-highlight .tc-avatar { background: rgba(201,169,110,.25); color: var(--gold-light); }
.tc-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--charcoal);
}
.tc-highlight .tc-name { color: var(--cream); }
.tc-role {
  font-size: .75rem;
  color: var(--charcoal-soft);
}
.tc-highlight .tc-role { color: rgba(250,248,245,.6); }

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-teaser {
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}
.about-teaser-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-teaser-image {
  position: relative;
  overflow: hidden;
}
.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream));
  z-index: 1;
}
.about-teaser-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 72px 80px 60px;
}
.about-body {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  max-width: 480px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--blush) 100%);
  border-top: 1px solid rgba(201,169,110,.2);
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  max-width: 480px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-brand { text-align: center; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
}
.footer-tagline {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,248,245,.45);
  margin-top: 6px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(250,248,245,.6);
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(250,248,245,.08);
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(250,248,245,.3);
}
.footer-admin-link {
  font-size: .6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(250,248,245,.2);
  transition: color .25s;
}
.footer-admin-link:hover { color: rgba(250,248,245,.5); }

/* =============================================
   SYNTA AI WIDGET
   ============================================= */
.synta-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.synta-fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  pointer-events: auto;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border: 2px solid rgba(201,169,110,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(201,169,110,.3);
  transition: all .3s var(--ease);
  animation: fabPulse 3s ease-in-out infinite;
}
.synta-fab:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  animation: none;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(201,169,110,.3); }
  50% { box-shadow: var(--shadow-md), 0 0 0 10px rgba(201,169,110,.0); }
}
.synta-panel {
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,.2);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: all .35s var(--ease);
}
.synta-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
/* Panel header */
.synta-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--charcoal);
  color: var(--cream);
}
.synta-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.synta-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,169,110,.25);
  border: 2px solid rgba(201,169,110,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .05em;
}
.synta-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--cream);
}
.synta-status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  margin-right: 5px;
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.synta-status-text {
  font-size: .6875rem;
  color: rgba(250,248,245,.55);
}
.synta-close {
  background: none;
  border: none;
  color: rgba(250,248,245,.6);
  cursor: pointer;
  font-size: 1rem;
  transition: color .2s;
  padding: 4px;
}
.synta-close:hover { color: var(--cream); }

/* AI Locked section */
.synta-ai-locked {
  position: relative;
  background: var(--cream-deep);
  padding: 16px;
  overflow: hidden;
}
.synta-ai-blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,248,245,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}
.synta-ai-fake-ui {
  display: flex;
  flex-direction: column;
  gap: 8px;
  filter: blur(1px);
}
.fake-msg {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .75rem;
  max-width: 80%;
}
.fake-msg-in {
  background: var(--white);
  color: var(--charcoal);
  align-self: flex-start;
  border: 1px solid rgba(201,169,110,.2);
}
.fake-input-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  align-items: center;
}
.fake-input {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(26,23,20,.12);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .75rem;
  color: rgba(26,23,20,.3);
}
.fake-send-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}
.synta-ai-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(250,248,245,.95);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  color: var(--charcoal-mid);
  margin-top: 8px;
  line-height: 1.4;
}
.synta-upgrade-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Panel divider */
.synta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--charcoal-soft);
}
.synta-divider::before,
.synta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26,23,20,.1);
}
/* Panel body */
.synta-panel-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.synta-chat-header {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--charcoal);
}
.synta-chat-sub {
  font-size: .8125rem;
  color: var(--charcoal-soft);
}
.synta-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .9375rem;
  transition: all .3s var(--ease);
  margin-top: 4px;
}
.synta-whatsapp-btn:hover {
  background: #1ebc58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
}

/* =============================================
   PAGE-SPECIFIC: ABOUT PAGE
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
}
.about-split {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-sticky-image {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.about-sticky-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: top center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.stat-card {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(250,248,245,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.about-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-text-block h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.about-text-block p {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
}
.about-text-block p + p { margin-top: 16px; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-hero {
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  background: var(--charcoal);
  color: var(--cream);
}
.services-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.services-hero-tagline {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.services-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.services-hero-title em { color: var(--gold-light); }
.services-hero-body {
  font-size: 1.0625rem;
  color: rgba(250,248,245,.7);
  line-height: 1.75;
  max-width: 420px;
}
.services-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  transition: all .3s;
}
.services-hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.service-details {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(26,23,20,.08);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,169,110,.2);
  line-height: 1;
  margin-bottom: 8px;
}
.service-detail-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.service-detail-body {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chip {
  padding: 6px 14px;
  background: var(--cream-deep);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--charcoal-mid);
  font-weight: 500;
}
.service-visual {
  border-radius: var(--radius-xl);
  background: var(--cream-deep);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid rgba(201,169,110,.2);
}

/* =============================================
   TRUST WALL PAGE
   ============================================= */
.trust-wall-hero {
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.trust-wall-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 100px;
  columns: 3;
  column-gap: 20px;
}
.trust-wall-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  border: 1px solid rgba(201,169,110,.15);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  transition: box-shadow .3s, transform .3s;
}
.trust-wall-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tw-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
}
.tw-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,23,20,.07);
}
.tw-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--charcoal-mid);
  flex-shrink: 0;
}
.tw-name { font-size: .875rem; font-weight: 600; color: var(--charcoal); }
.tw-role { font-size: .75rem; color: var(--charcoal-soft); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 40px; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
.contact-body {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,.15);
  transition: all .3s var(--ease);
}
.contact-method:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-method-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--charcoal-soft);
}
.contact-method-val {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--charcoal);
}
.contact-form-col {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(201,169,110,.15);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1.5px solid rgba(26,23,20,.12);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--charcoal);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.form-submit:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px 60px; }
  .hero-portrait { height: 480px; }
  .hero-image-badge-2 { right: 16px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large, .bento-wide { grid-column: span 2; }
  .testimonial-row { grid-template-columns: 1fr; }
  .about-teaser-layout { grid-template-columns: 1fr; }
  .about-teaser-image { height: 400px; }
  .about-portrait { height: 400px; object-fit: cover; }
  .about-image-overlay { background: linear-gradient(to bottom, transparent 50%, var(--cream)); }
  .about-split { grid-template-columns: 1fr; }
  .about-sticky-image { position: relative; top: auto; }
  .about-sticky-image img { max-height: 460px; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item.reverse { direction: ltr; }
  .services-hero-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .trust-wall-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .hero-layout { padding: 36px 24px 48px; }
  .hero-portrait { height: 380px; }
  .hero-image-badge { bottom: -16px; left: -8px; padding: 12px 16px; }
  .badge-number { font-size: 2rem; }
  .hero-credentials { gap: 16px; }
  .philosophy-strip { padding: 48px 24px; }
  .section-container { padding: 0 24px; }
  .services-section { padding: 72px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .trust-preview { padding: 72px 0; }
  .trust-header { flex-direction: column; align-items: flex-start; }
  .about-teaser-content { padding: 48px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-inner { padding: 0 24px; text-align: center; }
  .footer-links { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .synta-widget { bottom: 20px; right: 20px; }
  .synta-panel { width: min(320px, calc(100vw - 40px)); }
  .trust-wall-grid { columns: 1; }
  .contact-layout { padding: calc(var(--nav-h) + 48px) 24px 60px; }
  .contact-form-col { padding: 32px 24px; }
  .about-split { padding: 0 24px 60px; }
  .service-details { padding: 60px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 48px; }
  .services-hero { padding: calc(var(--nav-h) + 48px) 24px 48px; }
  .trust-wall-hero { padding: calc(var(--nav-h) + 48px) 24px 48px; }
  .trust-wall-grid { padding: 0 24px 60px; }
}
