/* Aujaswa Acupuncture — Dr. Reshika
   Claymorphism, sage green + terracotta wellness palette */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --sage: #8FA876;
  --sage-dark: #5F7A4A;
  --sage-deep: #41512f;
  --sage-light: #E8EEDD;
  --terracotta: #D97B56;
  --terracotta-dark: #B85F3E;
  --cream: #FBF6EE;
  --cream-deep: #F3ECDF;
  --text: #3A3B2E;
  --text-light: #6B6F5C;
  --white: #FFFFFF;

  --shadow-out: 9px 9px 18px rgba(95, 91, 70, 0.18), -9px -9px 18px rgba(255, 255, 255, 0.75);
  --shadow-out-sm: 5px 5px 10px rgba(95, 91, 70, 0.16), -5px -5px 10px rgba(255, 255, 255, 0.7);
  --shadow-in: inset 4px 4px 8px rgba(95, 91, 70, 0.15), inset -4px -4px 8px rgba(255, 255, 255, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--sage-deep);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-out-sm);
  margin-bottom: 16px;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-title { font-size: 2.1rem; margin-bottom: 14px; }
.section-lead { color: var(--text-light); font-size: 1.05rem; max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-out-sm);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--terracotta-dark); }
.btn-ghost {
  background: var(--cream);
  color: var(--sage-deep);
  box-shadow: var(--shadow-out-sm);
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-whatsapp {
  background: #ffffff;
  color: #2f7a4f;
  box-shadow: var(--shadow-out-sm);
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-whatsapp svg { fill: #2f7a4f; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  padding: 16px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 26px;
  padding: 10px 14px 10px 22px;
  box-shadow: var(--shadow-out-sm);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--sage-deep);
}
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-in);
  overflow: hidden;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo small {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--terracotta-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e9f8ee;
  color: #2f7a4f;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-out-sm);
}
.nav-wa svg { width: 18px; height: 18px; fill: #2f7a4f; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sage-light);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--sage-deep);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  width: 20px; height: 2px;
  background: var(--sage-deep);
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ===== Floating WhatsApp (mobile) ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  z-index: 600;
  animation: pulse 2.6s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45); }
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { font-size: 2.85rem; margin-bottom: 20px; }
.hero h1 span { color: var(--terracotta); }
.hero p.lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--sage-deep);
}
.trust-item span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-light);
}

.hero-art { position: relative; }
.hero-art-main {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  aspect-ratio: 4/5;
}
.hero-art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-badge {
  position: absolute;
  bottom: -22px;
  left: -28px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 22px;
  box-shadow: var(--shadow-out);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-art-badge .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-art-badge strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1rem; color: var(--sage-deep); }
.hero-art-badge span { font-size: 0.82rem; color: var(--text-light); }

/* ===== Cards / Benefits ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }

.clay-card {
  background: var(--white);
  border-radius: 26px;
  padding: 34px 28px;
  box-shadow: var(--shadow-out);
  transition: transform 0.2s ease;
}
.clay-card:hover { transform: translateY(-5px); }
.clay-icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-in);
}
.clay-icon svg { width: 26px; height: 26px; }
.clay-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.clay-card p { color: var(--text-light); font-size: 0.96rem; }

/* ===== Section variants ===== */
.section-sage {
  background: var(--sage-light);
  border-radius: 50px;
  margin: 0 auto;
  max-width: 1180px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
}
.split-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-img { order: 2; }

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.checklist li svg { flex-shrink: 0; margin-top: 3px; }

/* ===== Services ===== */
.service-row {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-out);
  margin-bottom: 24px;
}
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-img {
  width: 260px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-in);
}
.service-img img { width: 100%; height: 200px; object-fit: cover; }
.service-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.service-row h3 { font-size: 1.4rem; margin: 6px 0 10px; }
.service-row p { color: var(--text-light); }

/* ===== Testimonial / quote ===== */
.quote-block {
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  position: relative;
}
.quote-block p {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.5;
}
.quote-block span { color: var(--sage-light); font-weight: 700; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow-out);
  margin-bottom: 22px;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
.contact-card p { color: var(--text-light); font-size: 0.96rem; }
.contact-card .note { font-size: 0.82rem; color: var(--terracotta-dark); margin-top: 6px; }

.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-out);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--sage-deep);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: none;
  background: var(--cream);
  box-shadow: var(--shadow-in);
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--sage); }

.map-embed {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  margin-top: 22px;
  height: 240px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--sage-deep);
  color: var(--sage-light);
  padding: 70px 0 28px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-grid p { color: rgba(251,246,238,0.7); font-size: 0.92rem; }
.footer-col h5 {
  font-family: 'Fredoka', sans-serif;
  color: var(--cream);
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(251,246,238,0.75);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--terracotta); }

.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.social-row a svg { width: 18px; height: 18px; fill: var(--cream); }
.social-row a:hover { background: var(--terracotta); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(251,246,238,0.55);
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 50px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-out-sm);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.02rem;
  color: var(--sage-deep);
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--sage-deep);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: transform 0.2s ease; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 26px;
}
.faq-a p { color: var(--text-light); font-size: 0.96rem; padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 240px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.gallery-tile {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  aspect-ratio: 1/1;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile.placeholder {
  background: var(--sage-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-in);
}
.gallery-tile.placeholder svg { width: 34px; height: 34px; opacity: 0.6; }
.gallery-tile.placeholder span {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.86rem;
  color: var(--sage-dark);
}
.gallery-tile.placeholder small { color: var(--text-light); font-size: 0.78rem; }

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.blog-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 26px 26px 30px; }
.blog-card .eyebrow { margin-bottom: 12px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.blog-card .read-more {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--terracotta-dark);
  font-size: 0.92rem;
}

.blog-post-hero-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  aspect-ratio: 16/8;
  margin-bottom: 10px;
}
.blog-post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.blog-post-body h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.blog-post-body p { margin-bottom: 18px; color: var(--text); }
.blog-post-body p.lead-p { color: var(--text-light); font-size: 1.08rem; }
.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 30px;
}
.blog-meta span.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-light); }
.blog-disclaimer {
  background: var(--sage-light);
  border-radius: 20px;
  padding: 20px 26px;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--sage-dark);
}

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: 2.4rem; }
.page-hero p { color: var(--text-light); max-width: 560px; margin: 14px auto 0; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row, .service-row:nth-child(even) { flex-direction: column; }
  .service-img { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-links, .nav-wa span.label { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 24px; right: 24px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-out);
    flex-direction: column;
    padding: 14px;
    gap: 4px;
  }
  .hero h1 { font-size: 2.1rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .quote-block { padding: 38px 24px; }
  .quote-block p { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-art-badge { left: 10px; bottom: -18px; }
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.wide { grid-column: span 1; }
  .blog-post-body h2 { font-size: 1.22rem; }
}
