:root {
  --cream: #FBF7F2;
  --cream-dark: #F3EDE4;
  --ink: #1A1A1A;
  --ink-soft: #5C5C5C;
  --sage: #7A9E7E;
  --sage-dark: #5C7A60;
  --sage-light: #E8F0E9;
  --blush: #E8B4B8;
  --blush-dark: #C98A90;
  --white: #FFFFFF;
  --radius: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Bubbles canvas */
#bubbles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}

/* Header - transparent glass */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.header.scrolled {
  background: rgba(251,247,242,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 12px 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.logo em {
  font-style: normal; color: var(--sage-dark); font-weight: 600; font-size: .95rem;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--sage-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; transition: all .3s; font-family: inherit;
}
.btn-sage {
  background: var(--sage-dark); color: white;
  box-shadow: 0 8px 24px rgba(92,122,96,.3);
}
.btn-sage:hover { background: var(--sage); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--ink); color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-blush {
  background: var(--blush); color: var(--ink);
  box-shadow: 0 8px 24px rgba(232,180,184,.35);
}
.btn-blush:hover { background: var(--blush-dark); color: white; transform: translateY(-2px); }
.mobile-toggle {
  display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer;
}

/* HERO - split asymmetric */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic; color: var(--sage-dark);
}
.hero-desc {
  font-size: 1.1rem; color: var(--ink-soft); max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative; height: 480px;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(0px);
}
.hero-blob.b1 {
  width: 320px; height: 320px; top: 10%; right: 10%;
  background: linear-gradient(145deg, var(--sage-light), var(--sage));
  opacity: .85;
  animation: float 7s ease-in-out infinite;
}
.hero-blob.b2 {
  width: 180px; height: 180px; bottom: 8%; left: 5%;
  background: linear-gradient(145deg, var(--blush), #f5d0d3);
  opacity: .9;
  animation: float 5s ease-in-out infinite reverse;
}
.hero-blob.b3 {
  width: 100px; height: 100px; top: 5%; left: 20%;
  background: var(--cream-dark);
  border: 2px solid var(--sage);
  animation: float 6s ease-in-out infinite 1s;
}
.hero-card-float {
  position: absolute; bottom: 15%; right: 5%;
  background: white; border-radius: 20px; padding: 22px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  max-width: 240px;
  animation: float 8s ease-in-out infinite .5s;
}
.hero-card-float strong { display: block; font-size: 1.5rem; color: var(--sage-dark); font-family: 'Fraunces', serif; }
.hero-card-float span { font-size: .85rem; color: var(--ink-soft); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Marquee strip */
.marquee {
  position: relative; z-index: 1;
  background: var(--sage-dark); color: white;
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-weight: 500; font-size: .95rem;
}
.marquee-track span::after {
  content: ' · '; margin-left: 48px; opacity: .5;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services - horizontal scroll cards */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-head {
  margin-bottom: 48px;
}
.section-head .label {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -.02em;
  max-width: 480px;
}
.services-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  transition: transform .35s, box-shadow .35s;
  border: 1px solid rgba(0,0,0,.04);
}
.svc:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.svc-num {
  font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 700;
  color: var(--sage-light); line-height: 1; margin-bottom: 16px;
}
.svc h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.svc p { color: var(--ink-soft); font-size: .95rem; }

/* Process - vertical timeline style */
.process {
  background: var(--cream-dark);
}
.process-list { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.proc-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.proc-item:last-child { border-bottom: none; }
.proc-n {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-dark); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem;
}
.proc-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.proc-item p { color: var(--ink-soft); }

/* Why - bento grid */
.bento {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto;
  gap: 16px;
}
.bento-item {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 4px 20px rgba(0,0,0,.03);
}
.bento-item.wide { grid-column: 1; grid-row: 1 / 3; background: var(--sage-dark); color: white; }
.bento-item.wide p { color: rgba(255,255,255,.8); }
.bento-item h3 {
  font-family: 'Fraunces', serif; font-size: 1.35rem; margin-bottom: 10px;
}
.bento-item p { color: var(--ink-soft); font-size: .95rem; }
.bento-item .big {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700;
  color: var(--sage-light); margin-bottom: 8px;
}
.bento-item.wide .big { color: rgba(255,255,255,.3); }

/* CTA */
.cta-wrap {
  position: relative; z-index: 1; padding: 40px 0 100px;
}
.cta-box {
  background: linear-gradient(135deg, var(--blush) 0%, #f5d0d3 50%, var(--sage-light) 100%);
  border-radius: 32px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box h2 {
  font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; margin-bottom: 12px;
}
.cta-box p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px;
}
.contact-info h3 {
  font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 24px;
}
.ci-item { margin-bottom: 20px; }
.ci-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage-dark); margin-bottom: 4px; }
.ci-item a, .ci-item span { font-size: 1.05rem; }
.contact-form {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form h3 { font-family: 'Fraunces', serif; font-size: 1.35rem; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: 6px; color: var(--ink-soft); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e5e0d8;
  border-radius: 14px; font-family: inherit; font-size: .95rem; background: var(--cream);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--sage);
  background: white;
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* Footer */
.footer {
  position: relative; z-index: 1;
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer .logo { color: white; margin-bottom: 12px; }
.footer .logo em { color: var(--sage); }
.footer p { font-size: .9rem; max-width: 280px; }
.footer h4 { color: white; font-size: .95rem; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul a { font-size: .9rem; opacity: .75; transition: opacity .2s; }
.footer ul a:hover { opacity: 1; }
.footer ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* Float */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.18); transition: transform .2s; color: white;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; }
.float-ph { background: var(--sage-dark); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }
  .services-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-item.wide { grid-column: auto; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 20px; gap: 14px;
    border-bottom: 1px solid rgba(0,0,0,.06); }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 50px; min-height: auto; }
}
