/* ==========================================================================
   Artha Neeti — Design tokens
   ========================================================================== */
:root {
  --bg: #fbf9f5;
  --surface: #ffffff;
  --surface-alt: #f3efe6;
  --ink: #1a2229;
  --ink-soft: #4b5563;
  --ink-faint: #7c8790;
  --navy: #0f2a3c;
  --navy-dark: #081720;
  --navy-mid: #163a52;
  --gold: #a9814f;
  --gold-light: #e8dcc4;
  --line: #e7e1d6;
  --line-dark: #22384a;
  --danger: #8a3324;

  --font-head: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 60, 0.06), 0 1px 1px rgba(15, 42, 60, 0.04);
  --shadow-md: 0 12px 30px -12px rgba(15, 42, 60, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(15, 42, 60, 0.35);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; color: var(--navy); font-weight: 600; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: #bd9863; box-shadow: var(--shadow-sm); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge { flex: none; width: 48px; height: 34px; overflow: hidden; border-radius: 8px; }
.brand-badge img { width: 48px; height: auto; display: block; }
.brand-word { font-family: var(--font-head); font-size: 1.28rem; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.brand-word small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 1px; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy);
  position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

.mobile-panel {
  display: none;
  position: fixed; inset: 82px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
}
.mobile-panel.is-open { display: block; }
.mobile-panel .nav-links { flex-direction: column; gap: 4px; }
.mobile-panel .nav-links a { display: block; padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-panel .btn { margin-top: 20px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

body.nav-open { overflow: hidden; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 76px 0 96px;
  background: linear-gradient(180deg, var(--bg) 0%, #f4efe4 100%);
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.85rem; }
.hero-trust strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 1.5rem; }

.hero-portrait { position: relative; }
.hero-portrait-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--navy);
}
.hero-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: #fff; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #2f9e5b; flex: none; }
.hero-badge span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.35; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-badge { left: 12px; bottom: -18px; }
}

/* ==========================================================================
   Trust bar / logos
   ========================================================================== */
.trust-bar { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ==========================================================================
   Cards: services, team, testimonials, blog
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .learn { font-size: 0.88rem; font-weight: 600; color: var(--gold); }

.service-detail {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--surface-alt);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.service-detail .icon svg { width: 28px; height: 28px; }
.service-detail h3 { font-size: 1.35rem; margin: 16px 0 4px; }
.service-detail .for-whom { font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.service-detail p { color: var(--ink-soft); }
.service-detail ul { margin-top: 12px; }
.service-detail li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--ink-soft); }
.service-detail li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 720px) { .service-detail { grid-template-columns: 1fr; } }

.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; background: var(--navy); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.88rem; margin-bottom: 12px; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; }
.team-card .socials { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
.team-card .socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); }
.team-card .socials a:hover { border-color: var(--navy); color: var(--navy); }
.team-card .socials svg { width: 16px; height: 16px; }

.team-open-card {
  border: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-soft); min-height: 100%;
}
.team-open-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 14px; }

.testimonial { position: relative; }
.testimonial .stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial blockquote { margin: 0 0 20px; font-family: var(--font-head); font-size: 1.08rem; color: var(--navy); line-height: 1.5; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-alt); flex: none; }
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--ink-faint); }

.blog-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); position: relative; }
.blog-card .thumb .tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px;
}
.blog-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.blog-card .meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--ink-faint); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin: 0; max-width: 480px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-hero .photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--navy); box-shadow: var(--shadow-md); }
.about-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } .about-hero .photo { max-width: 320px; margin: 0 auto; } }

.meaning-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.meaning-block h2 { color: #fff; }
.meaning-block .word { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); margin-bottom: 4px; }
.meaning-block .word + .word { margin-top: 24px; }
.meaning-block .translit { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; display: block; }
.meaning-block p { color: rgba(255,255,255,0.78); }
@media (max-width: 760px) { .meaning-block { grid-template-columns: 1fr; padding: 36px; } }

.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 620px) { .values-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 16px; }
.value-item .num { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); flex: none; width: 40px; }
.value-item h4 { margin-bottom: 6px; font-size: 1.05rem; }
.value-item p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ==========================================================================
   Blog post
   ========================================================================== */
.post-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.post-header .tag { color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.1em; }
.post-header h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 14px 0 20px; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--ink-faint); font-size: 0.88rem; }
.post-meta .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-alt); object-fit: cover; }
.post-meta strong { color: var(--navy); }

.post-cover { max-width: 900px; margin: 0 auto 48px; aspect-ratio: 16/8; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }

.post-body { max-width: 720px; margin: 0 auto; font-size: 1.06rem; color: var(--ink); }
.post-body h2 { font-size: 1.5rem; margin-top: 2.2em; }
.post-body h3 { font-size: 1.2rem; margin-top: 1.8em; }
.post-body p { color: var(--ink); margin-bottom: 1.3em; }
.post-body ul, .post-body ol { margin: 0 0 1.3em; padding-left: 1.3em; list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 0.5em; color: var(--ink); }
.post-body a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.post-body blockquote {
  margin: 2em 0; padding: 24px 28px; background: var(--surface-alt);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--navy);
}
.post-body table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: 0.94rem; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.post-body th { background: var(--surface-alt); color: var(--navy); font-family: var(--font-head); font-weight: 600; }
.post-body hr { border: none; border-top: 1px solid var(--line); margin: 2.5em 0; }

.post-cta {
  max-width: 720px; margin: 2.5em auto; padding: 32px; border-radius: var(--radius);
  background: var(--surface-alt); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.post-cta p { margin: 0; font-weight: 600; color: var(--navy); }

.post-sources { max-width: 720px; margin: 3em auto 0; padding-top: 28px; border-top: 1px solid var(--line); }
.post-sources h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 14px; }
.post-sources ol { list-style: decimal; padding-left: 1.2em; }
.post-sources li { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 8px; }

.disclaimer-box {
  max-width: 720px; margin: 3em auto 0; padding: 20px 24px; border-radius: var(--radius);
  background: transparent; border: 1px solid var(--line);
  font-size: 0.8rem; color: var(--ink-faint); line-height: 1.6;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info-item .icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--surface); font-family: inherit; font-size: 0.96rem; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-word small { color: var(--gold); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.8rem; }
.footer-disclosure { max-width: var(--container); margin: 0 auto; padding: 0 24px 28px; font-size: 0.76rem; line-height: 1.7; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { padding: 64px 0 48px; text-align: center; }
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--navy); }

.bg-alt { background: var(--surface-alt); }

/* Blog listing filters */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filters .chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft);
}
.blog-filters .chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
