/* Krinda — static site styles (shared-hosting friendly) */

:root {
  --canvas: #f1eddb;
  --canvas-alt: #f8f6ef;
  --white: #ffffff;
  --text: #28231e;
  --text-muted: #535353;
  --green: #1e4a3f;
  --green-light: #2d6b5c;
  --gold: #b8922a;
  --gold-light: #d4af37;
  --accent: #cc4a22;
  --cta: #d68306;
  --cta-hover: #955d09;
  --peacock: #1a6b7a;
  --shadow: 0 12px 40px rgba(40, 35, 30, 0.08);
  --shadow-soft: 0 4px 20px rgba(40, 35, 30, 0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --content: min(1110px, 92vw);
  --narrow: min(720px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
}

h3 {
  font-size: 1.375rem;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 237, 219, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 74, 63, 0.1);
}

.header-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
}

.main-nav a:hover {
  color: var(--accent);
  background: rgba(204, 74, 34, 0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem !important;
  background: var(--cta) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--cta-hover) !important;
  color: var(--white) !important;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 175, 55, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30, 74, 63, 0.08), transparent 45%),
    linear-gradient(180deg, var(--canvas-alt) 0%, var(--canvas) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 34rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--green);
}

.hero h1 span {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-top: 0.35em;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}

.hero-credentials li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  padding-left: 1.25rem;
  position: relative;
}

.hero-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: min(100%, 380px);
  padding: 1.5rem;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  border-radius: 50%;
  background: var(--white);
  padding: 0.5rem;
}

/* —— Hero photo —— */
.hero-photo-wrap {
  position: relative;
  width: min(100%, 540px);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 146, 42, 0.25);
}

.hero-photo-badge {
  position: absolute;
  right: -0.75rem;
  bottom: -1rem;
  background: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  text-align: center;
  line-height: 1.2;
}

.hero-photo-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}

.hero-photo-badge-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* —— Hero offering tags —— */
.hero-offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-offer-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid rgba(30, 74, 63, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-soft);
}

.hero-offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* —— Divider —— */
.section-divider {
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-alt {
  background: var(--canvas-alt);
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: var(--narrow);
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-highlight {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold);
}

.about-highlight h3 {
  color: var(--green);
  margin-bottom: 1rem;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(30, 74, 63, 0.1);
  font-size: 0.975rem;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list strong {
  color: var(--green);
  font-weight: 600;
}

/* —— Offerings —— */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 3px solid var(--green);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offering-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--green);
}

.offering-card h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* —— Quote —— */
.quote-section {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}

.quote-inner {
  width: var(--narrow);
  margin: 0 auto;
}

.quote-sanskrit {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-english {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.quote-attribution {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* —— Method banner —— */
.method-banner {
  background: linear-gradient(135deg, var(--green) 0%, #163830 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.method-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.method-banner p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
  font-size: 1.0625rem;
}

.method-banner .btn-primary {
  background: var(--gold-light);
  color: var(--text);
}

.method-banner .btn-primary:hover {
  background: var(--white);
  color: var(--green);
}

/* —— Contact CTA —— */
.contact-cta {
  text-align: center;
}

.contact-cta .section-header {
  margin-bottom: 2rem;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .brand-name {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.75rem;
  max-width: 22rem;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: var(--content);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: none;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-logo-wrap {
    width: min(280px, 70vw);
  }

  .hero-photo-wrap {
    width: min(460px, 88vw);
    margin: 0 auto 1rem;
  }

  .hero-photo-badge {
    right: 0.5rem;
  }

  .hero-offer-tags {
    justify-content: center;
  }

  .hero-credentials {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid rgba(30, 74, 63, 0.12);
    padding: 0.5rem 1rem 1rem;
    display: none;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }
}

/* —— Inner pages —— */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--canvas-alt) 0%, var(--canvas) 100%);
  border-bottom: 1px solid rgba(30, 74, 63, 0.08);
}

.page-hero-inner {
  width: var(--content);
  margin: 0 auto;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.page-hero-text {
  max-width: 36rem;
}

.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 146, 42, 0.2);
  transition: transform 0.4s ease;
}

.page-hero-img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .page-hero-text {
    max-width: none;
    margin: 0 auto;
  }
  .page-hero-img {
    height: 240px;
    max-width: 450px;
  }
}

.breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--green);
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.page-hero h1 {
  color: var(--green);
  max-width: 18ch;
}

.page-hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a.is-active {
  color: var(--accent);
  font-weight: 600;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-content .section-inner {
  width: var(--narrow);
  margin: 0 auto;
}

.page-content.wide .section-inner {
  width: var(--content);
}

.prose h2 {
  color: var(--green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  color: var(--green-light);
  font-size: 1.2rem;
  margin-top: 1.75rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li::marker {
  color: var(--gold);
}

.content-callout {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-soft);
  margin: 2rem 0;
}

.content-callout p:last-child {
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

.benefits-grid li {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 0.975rem;
  margin: 0;
}

.benefits-grid li strong {
  display: block;
  color: var(--green);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.session-card {
  background: var(--canvas-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 74, 63, 0.1);
}

.session-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.session-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.steps-list li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.75rem;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.related-offerings {
  padding: 3rem 0;
  background: var(--canvas-alt);
  border-top: 1px solid rgba(30, 74, 63, 0.08);
}

.related-offerings h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-links a {
  display: block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 74, 63, 0.12);
}

.related-links a:hover {
  border-color: var(--cta);
  color: var(--accent);
}

.offering-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.offering-card .card-link:hover {
  color: var(--cta-hover);
}

.page-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--green) 0%, #163830 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.page-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-cta p {
  opacity: 0.92;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.page-cta .btn-primary {
  background: var(--gold-light);
  color: var(--text);
}

.page-cta .btn-primary:hover {
  background: var(--white);
  color: var(--green);
}

@media (max-width: 768px) {
  .benefits-grid,
  .session-cards {
    grid-template-columns: 1fr;
  }
}

/* —— Premium Navigation Underline Hover (Desktop) —— */
@media (min-width: 769px) {
  .main-nav a {
    position: relative;
    background: transparent !important;
    transition: color 0.3s ease;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .main-nav a:hover {
    color: var(--accent);
  }
  .main-nav a:hover::after,
  .main-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .main-nav a.is-active {
    color: var(--accent);
    font-weight: 600;
  }
}

/* —— Floating Aura Effects (Backgrounds) —— */
.aura-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  mix-blend-mode: multiply;
  animation: float-aura 22s infinite ease-in-out;
}

.aura-blob-gold {
  width: min(350px, 80vw);
  height: min(350px, 80vw);
  background: var(--gold);
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.aura-blob-green {
  width: min(400px, 90vw);
  height: min(400px, 90vw);
  background: var(--green);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

@keyframes float-aura {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.15); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* —— Premium Ornamental Divider —— */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 220px;
  height: 32px;
  color: var(--gold);
}

.ornamental-divider-line {
  stroke: var(--gold);
  stroke-dasharray: 4, 4;
}

/* —— Stats Strip —— */
.stats-strip {
  background: linear-gradient(135deg, var(--green) 0%, #13332c 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: var(--content);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
}

.stat-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 15rem;
  line-height: 1.45;
}

/* —— Overriding Card Grid with Image support —— */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border-top: none; /* override old border-top */
  border: 1px solid rgba(30, 74, 63, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.offering-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--green);
}

.offering-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offering-card:hover .offering-card-img {
  transform: scale(1.05);
}

.offering-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30, 74, 63, 0.3));
}

.offering-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offering-card-body h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-serif);
}

.offering-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offering-card .card-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.offering-card:hover .card-link {
  color: var(--cta-hover);
  transform: translateX(4px);
}

/* —— Testimonials Section —— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(30, 74, 63, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--green);
  border: 2px solid var(--gold-light);
  font-size: 0.95rem;
}

.testimonial-meta {
  line-height: 1.35;
}

.testimonial-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
}

.testimonial-role {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* —— FAQ Section —— */
.faq-list {
  max-width: var(--narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 74, 63, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(184, 146, 42, 0.3);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  color: var(--green);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--canvas-alt);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
  padding: 0 2rem;
}

.faq-answer-inner {
  padding-bottom: 1.75rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3M cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item.is-open {
  border-color: rgba(184, 146, 42, 0.5);
}

.faq-item.is-open .faq-answer {
  max-height: 350px; /* high enough limit for FAQ content */
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* —— Premium Contact Form —— */
.contact-form-wrap {
  max-width: var(--narrow);
  margin: 3.5rem auto 0;
  background: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 74, 63, 0.08);
  position: relative;
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--canvas-alt);
  border: 1px solid rgba(30, 74, 63, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 146, 42, 0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* —— Responsive Media Queries for Premium elements —— */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

