:root {  
  --teal:       #0F766E;  
  --teal-mid:   #1A9E95;  
  --teal-light: #C8EDEA;  
  --teal-pale:  #EBF8F7;  
  --teal-dark:  #085550;  
  --beige:      #F5E9E2;  
  --beige-mid:  #EAD8CC;  
  --beige-dark: #D9C0AE;  
  --coral:      #FF6B6B;  
  --coral-dk:   #E85252;  
  --coral-pale: #FFF0F0;  
  --white:      #FFFCFA;  
  --charcoal:   #1B2B2A;  
  --text:       #2E3D3C;  
  --muted:      #6B807E;  
  --border:     rgba(15,118,110,0.13);  
  --sans:       'Nunito', system-ui, sans-serif;  
  --serif:      'Fraunces', Georgia, serif;  
}  
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }  
html { scroll-behavior: smooth; }  
body { font-family: var(--sans); background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.65; }

/* NAV */  
nav {  
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;  
  display: flex; align-items: center; justify-content: space-between;  
  padding: 0 5vw; height: 66px;  
  background: rgba(255,252,250,0.8); backdrop-filter: blur(14px);  
  border-bottom: 1px solid var(--border); transition: all 0.3s;  
}  
nav.scrolled { background: rgba(255,252,250,0.95); box-shadow: 0 2px 28px rgba(15,118,110,0.09); }  
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }  
.logo-mark {  
  width: 38px; height: 38px; border-radius: 12px;  
  background: var(--teal); display: flex; align-items: center; justify-content: center;  
  font-family: var(--serif); color: white; font-size: 15px; font-weight: 900;  
  animation: logoPulse 4s infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,118,110,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(15,118,110,0); }
}
.logo-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 900; color: var(--charcoal); }  
.logo-name em { font-style: normal; color: var(--teal); }  
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--coral) !important; color: white !important;
  padding: 0.5rem 1.2rem !important; border-radius: 100px;
  font-weight: 700 !important; box-shadow: 0 3px 14px rgba(255,107,107,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.nav-cta:hover { background: var(--coral-dk) !important; transform: translateY(-2px) scale(1.05); box-shadow: 0 5px 20px rgba(255,107,107,0.4); }

/* HAMBURGER */
.menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 310;
}
.menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--teal);
  margin: 5px auto; transition: 0.3s;
}

/* HERO */  
#hero {  
  min-height: 100vh; padding: 110px 5vw 70px;  
  background: var(--beige);  
  display: grid; grid-template-columns: 1.1fr 0.9fr;  
  gap: 3rem; align-items: center; position: relative; overflow: hidden;  
}  
#hero::before {  
  content: ''; position: absolute; right: -8vw; top: 5%;  
  width: 52vw; height: 52vw; max-width: 680px; max-height: 680px;  
  background: radial-gradient(ellipse at center, rgba(15,118,110,0.09) 0%, transparent 68%);  
  border-radius: 50%; pointer-events: none;  
}  
.hero-pill {  
  display: inline-flex; align-items: center; gap: 8px;  
  background: white; border: 1.5px solid var(--teal-light);  
  color: var(--teal); font-size: 0.78rem; font-weight: 700;  
  letter-spacing: 0.08em; text-transform: uppercase;  
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.6rem;  
}  
.hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); display: block; animation: blink 2s infinite; }  
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }  
h1 {  
  font-family: var(--serif); font-weight: 900; line-height: 1.08;  
  font-size: clamp(2.4rem, 4.8vw, 3.9rem); letter-spacing: -0.02em;  
  color: var(--charcoal); margin-bottom: 1.3rem;  
}  
.hero-title { display: grid; gap: 0.6rem; }
.hero-title__line { display: block; }
.hero-title__line--teal { color: var(--teal); }
.hero-title__line--coral { color: var(--coral); }
.hero-title__line--gold { color: #E68B2D; }
.hero-greeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(15,118,110,0.1);
  border: 1px solid rgba(15,118,110,0.16);
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: fit-content;
  box-shadow: 0 16px 36px rgba(15,118,110,0.06);
}
.hero-art img {
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(15,118,110,0.15);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

h1 em { 
  font-style: italic; 
  background: linear-gradient(90deg, var(--teal), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-body { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 500; max-width: 480px; margin-bottom: 0.6rem; }  
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* BUTTONS */  
.btn-coral {  
  display: inline-flex; align-items: center; gap: 8px;  
  background: var(--coral); color: white;  
  font-family: var(--sans); font-weight: 800; font-size: 0.95rem;  
  padding: 0.95rem 2rem; border-radius: 100px; text-decoration: none;  
  box-shadow: 0 5px 22px rgba(255,107,107,0.38);  
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);  
}  
.btn-coral:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(255,107,107,0.48); background: var(--coral-dk); }  
.btn-outline {  
  display: inline-flex; align-items: center; gap: 8px;  
  background: transparent; color: var(--teal);  
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;  
  padding: 0.95rem 2rem; border-radius: 100px; text-decoration: none;  
  border: 2px solid var(--teal); transition: all 0.3s;  
}  
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }  
.hero-art { display: flex; align-items: center; justify-content: center; }  
.hero-art svg { width: 100%; max-width: 440px; height: auto; }

/* TICKER */
.ticker { background: var(--teal); padding: 0.85rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 2.5rem; animation: slide 22s linear infinite; white-space: nowrap; }
.ticker-inner span { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 700; flex-shrink: 0; }
.ticker-inner .dot { color: var(--coral); font-size: 0.55rem; }
@keyframes slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker:hover .ticker-inner { animation-play-state: paused; }

/* RESULTS BENTO GRID */
#results { padding: 7rem 5vw; background: var(--white); border-bottom: 1px solid var(--border); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-item {
  background: var(--beige);
  border-radius: 32px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}
.bento-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 60px rgba(15,118,110,0.12);
  border-color: var(--teal-mid);
  background: white;
}
.bento-item.large { grid-column: span 2; grid-row: span 2; background: var(--teal); color: white; border: none; }
.bento-item.medium { grid-column: span 2; }
.bento-item.small { grid-column: span 1; }

.bento-item.large .stat-num { color: white; font-size: 5rem; }
.bento-item.large .stat-label { color: rgba(255,255,255,0.7); }

.stat-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 0.8rem; }
.stat-label { font-size: 0.9rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }

@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-item.small { grid-column: span 1; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large, .bento-item.medium, .bento-item.small { grid-column: span 1; grid-row: span 1; }
  .stat-num { font-size: 2.8rem; }
}

/* SECTION COMMON */  
section { padding: 7rem 5vw; }  
.sec-label {  
  display: inline-flex; align-items: center; gap: 8px;  
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;  
  color: var(--teal); margin-bottom: 1rem;  
}  
.sec-label::before { content:''; width: 22px; height: 2.5px; background: var(--teal); border-radius: 2px; }  
h2 {  
  font-family: var(--serif); font-weight: 900; line-height: 1.15;  
  font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.02em; color: var(--charcoal);  
}  
h2 em { font-style: italic; color: var(--teal); }
.svc-subtitle { max-width: 700px; margin: 1rem auto 0; color: var(--muted); font-size: 1rem; font-weight: 500; line-height: 1.8; }

/* SERVICES */  
#services { background: var(--white); }  
.svc-head { text-align: center; max-width: 650px; margin: 0 auto 5rem; }  
.svc-head p { font-size: 1.1rem; color: var(--muted); margin-top: 1.2rem; line-height: 1.8; font-weight: 500; }  
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(240px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }  
.svc-card {  
  background: var(--white); border-radius: 32px; padding: 3rem 2.5rem;  
  border: 1px solid var(--border);  
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}  
.svc-card:hover { 
  transform: translateY(-15px) scale(1.02); 
  border-color: var(--teal-mid); 
  box-shadow: 0 40px 80px rgba(15,118,110,0.15); 
}
.svc-illo {
  width: 100px;
  height: 100px;
  margin-bottom: 1.2rem;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s;
}
.svc-card:hover .svc-illo { transform: scale(1.08) rotate(5deg); }
.svc-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 900; color: var(--charcoal); margin-bottom: 1rem; }  
.svc-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.8rem; font-weight: 700; }  
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }  
.tag { font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 100px; background: var(--teal-pale); color: var(--teal); border: 1px solid transparent; transition: all 0.2s; }  
.svc-card:hover .tag { border-color: var(--teal-light); background: white; }

/* PROCESS */  
#process { background: var(--beige); position: relative; }  
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }  
.process-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }  
.p-step {  
  display: flex; gap: 1.5rem; align-items: flex-start;  
  background: white; border-radius: 28px; padding: 2rem;  
  border: 1px solid transparent;  
  transition: all 0.3s;  
}  
.p-step:hover { border-color: var(--teal-light); transform: translateX(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }  
.p-num { width: 48px; height: 48px; border-radius: 16px; flex-shrink: 0; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 900; font-size: 1.2rem; }  
.p-step h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 900; color: var(--charcoal); margin-bottom: 0.5rem; }  
.p-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 500; }  

/* WHO */  
#who { background: var(--teal-pale); }  
.who-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; max-width: 900px; margin: 0 auto; }  
.who-copy p { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin: 1.5rem 0 2.5rem; font-weight: 500; }  
.who-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }  
.who-item { display: flex; align-items: center; gap: 1.5rem; background: white; border-radius: 24px; padding: 1.5rem 2rem; border: 1px solid var(--teal-light); transition: all 0.3s; }  
.who-item:hover { transform: scale(1.02) translateX(8px); box-shadow: 0 12px 30px rgba(15,118,110,0.08); }  
.who-icon { font-size: 2rem; flex-shrink: 0; }  
.who-item h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 900; color: var(--charcoal); margin-bottom: 0.2rem; }  
.who-item p { font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ABOUT */  
#about { background: var(--charcoal); color: white; border-radius: 60px 60px 0 0; margin-top: -60px; position: relative; z-index: 10; }  
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }  
.about-copy .sec-label { color: var(--teal-mid); }  
.about-copy .sec-label::before { background: var(--teal-mid); }  
.about-copy h2 { color: white; }  
.about-copy h2 em { color: var(--coral); }  
.about-copy p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.9; font-weight: 500; margin-bottom: 1.5rem; }  
.skill-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.5rem; }  
.skill-chip { font-size: 0.85rem; font-weight: 700; padding: 0.5rem 1.2rem; border-radius: 100px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; cursor: default; }  
.skill-chip:hover { background: var(--teal); color: white; transform: translateY(-3px); border-color: var(--teal); }  

/* TESTIMONIALS */
#testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 4rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.testimonial-card { background: var(--teal-pale); padding: 3rem; border-radius: 40px; position: relative; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-10px); background: white; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--teal); opacity: 0.1; position: absolute; top: 1.5rem; left: 2rem; line-height: 1; }
.quote-text { font-size: 1.1rem; color: var(--text); font-weight: 500; font-style: italic; margin-bottom: 2rem; position: relative; z-index: 1; line-height: 1.7; }
.client-info { display: flex; align-items: center; gap: 1.2rem; }
.client-avatar { width: 56px; height: 56px; background: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid var(--teal-light); }
.client-name { font-weight: 800; color: var(--charcoal); font-size: 1.1rem; }
.client-role { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

/* FAQ */  
#faq { background: var(--white); }  
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; max-width: 1200px; margin: 0 auto; }  
.faq-left p { font-size: 1.1rem; color: var(--muted); line-height: 1.8; font-weight: 500; margin-top: 1.5rem; }  
.faq-items { display: flex; flex-direction: column; gap: 1rem; }  
.faq-item { background: var(--beige); border-radius: 24px; padding: 0.5rem 1.8rem; cursor: pointer; transition: all 0.3s; border: 1px solid transparent; }  
.faq-item:hover { border-color: var(--teal-light); background: white; }
.faq-item.open { background: white; border-color: var(--teal-mid); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }  
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-family: var(--serif); font-weight: 900; font-size: 1.1rem; color: var(--charcoal); gap: 1rem; }  
.faq-toggle { width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0; background: white; color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: all 0.3s; }  
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--teal); color: white; }  
.faq-a { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 500; overflow: hidden; max-height: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }  
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 2rem; }

/* BOOK */  
#book { background: var(--teal); padding: 10rem 5vw; color: white; position: relative; overflow: hidden; }  
.book-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; }  
.book-copy { max-width: 620px; }  
.book-copy h2 { color: white; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }  
.book-copy p { font-size: 1.2rem; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 500; }  
.book-art img { width: 100%; height: auto; border-radius: 32px; box-shadow: 0 30px 60px rgba(0,0,0,0.18); }  
.btn-white { display: inline-flex; align-items: center; gap: 12px; background: white; color: var(--teal); font-family: var(--sans); font-weight: 800; font-size: 1.1rem; padding: 1.2rem 3rem; border-radius: 100px; text-decoration: none; box-shadow: 0 15px 45px rgba(0,0,0,0.2); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }  
.btn-white:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }  

/* FOOTER */
footer { background: var(--charcoal); padding: 2rem 5vw; display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; align-items: center; justify-content: flex-start; gap: 0.55rem; flex-wrap: wrap; }
.footer-copy p { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: white; margin: 0; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0; }
.footer-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.1rem; border-radius: 999px; background: rgba(255,255,255,0.08); color: white; font-weight: 700; text-decoration: none; border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s ease; }
.footer-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.footer-note { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }  
.reveal.v { opacity: 1; transform: none; }  
.d1{transition-delay:0.1s} .d2{transition-delay:0.2s} .d3{transition-delay:0.3s} .d4{transition-delay:0.4s}

/* RESPONSIVE */
@media (max-width: 1000px) {
  #hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-body { margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 2rem; }
  .process-wrap, .who-inner, .about-inner, .faq-layout, .book-grid, .svc-grid { grid-template-columns: 1fr; gap: 4rem; }
  .process-art, .who-art, .about-art, .book-art { max-width: 420px; margin: 0 auto; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
}

@media (max-width: 760px) {
  section { padding: 4rem 4vw; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 420px; }
  .btn-coral, .btn-outline, .btn-white { justify-content: center; }
  .hero-body, .svc-subtitle, .who-copy p, .about-copy p, .book-copy p, .faq-left p { font-size: 1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3rem 3vw; }
  #hero { padding-top: 110px; }
  h1 { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero-body { font-size: 0.95rem; }
  .btn-coral, .btn-outline, .btn-white { font-size: 0.95rem; padding: 0.95rem 1.8rem; }
  .footer { padding: 3rem 3vw; }
  .hero-art, .process-art, .about-art, .book-art { order: 1; }
}

/* MOBILE NAV */
.nav-links.mobile-open {
  display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: white; flex-direction: column; justify-content: center;
  z-index: 305; animation: fadeIn 0.3s both;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
