:root {
  --deep-teal: #064B68;
  --ink-teal: #03384D;
  --gold: #F6B333;
  --soft-gold: #FFE2A4;
  --cream: #FFF9EE;
  --warm-white: #FFFFFF;
  --charcoal: #151515;
  --muted: #5f6670;
  --line: rgba(6, 75, 104, 0.16);
  --shadow: 0 24px 60px rgba(3, 56, 77, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ink-teal);
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 999px;
}
.brand span { font-size: 1.05rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-teal);
}
.nav-links a { opacity: 0.9; }
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  border: 2px solid transparent;
  box-shadow: 0 12px 26px rgba(246, 179, 51, 0.28);
}
.nav-button:hover,
.button:hover { transform: translateY(-1px); }
.button.secondary {
  background: transparent;
  color: var(--deep-teal);
  border-color: var(--deep-teal);
  box-shadow: none;
}
.mobile-toggle { display: none; }

.hero {
  overflow: hidden;
  position: relative;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 78% 18%, rgba(246,179,51,0.26), transparent 32%),
    radial-gradient(circle at 14% 20%, rgba(6,75,104,0.22), transparent 30%),
    linear-gradient(135deg, #fff9ee 0%, #fff3d9 46%, #eef8fb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 55%;
  height: 520px;
  border-radius: 999px;
  background: rgba(6, 75, 104, 0.10);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--ink-teal); }
h1 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: -0.07em;
}
.hero h1 span { color: var(--gold); }
.hero-text {
  margin: 22px 0 0;
  max-width: 700px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #284653;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-card {
  position: relative;
  border-radius: 44px;
  padding: 32px;
  background: var(--deep-teal);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -70px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(246,179,51,0.28);
}
.logo-frame {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.logo-frame img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
}
.hero-card p {
  position: relative;
  margin: 24px 0 0;
  font-size: 1.04rem;
  color: rgba(255,255,255,0.92);
}

.section { padding: 82px 0; }
.section.compact { padding: 54px 0; }
.section.teal {
  background: var(--deep-teal);
  color: white;
}
.section.teal h2,
.section.teal h3 { color: white; }
.section.teal p,
.section.teal li { color: rgba(255,255,255,0.86); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-header p {
  max-width: 590px;
  color: var(--muted);
  margin: 14px 0 0;
}
.section.teal .section-header p { color: rgba(255,255,255,0.82); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.045em; }
h3 { font-size: 1.32rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.14rem; color: #365765; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(3, 56, 77, 0.08);
}
.card.gold {
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  border-color: transparent;
}
.card.teal-card {
  background: var(--ink-teal);
  color: white;
  border-color: rgba(255,255,255,0.14);
}
.card.teal-card h3 { color: white; }
.card.teal-card p { color: rgba(255,255,255,0.83); }
.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(246,179,51,0.18);
  color: var(--deep-teal);
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: #50626b; }

.story-band {
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(6,75,104,0.98), rgba(3,56,77,0.98)),
    radial-gradient(circle at top right, rgba(246,179,51,0.32), transparent 26%);
  color: white;
  padding: 46px;
  overflow: hidden;
}
.story-band h2, .story-band h3 { color: white; }
.story-band p { color: rgba(255,255,255,0.86); }
.story-band strong { color: var(--soft-gold); }

.values-list {
  display: grid;
  gap: 14px;
}
.value-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(6,75,104,0.06);
}
.value-item b { color: var(--ink-teal); }
.value-dot {
  flex: 0 0 12px;
  margin-top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--gold);
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 24px 24px 24px 76px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(3, 56, 77, 0.06);
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
}

.page-hero {
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 85% 15%, rgba(246,179,51,0.24), transparent 30%),
    linear-gradient(135deg, #fff9ee, #eef8fb);
}
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
.page-hero p { max-width: 780px; margin-top: 18px; font-size: 1.18rem; color: #365765; }

.list-clean { padding-left: 18px; margin: 12px 0 0; color: #50626b; }
.list-clean li { margin: 8px 0; }
.quote {
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--ink-teal);
  font-weight: 700;
}
.testimonial {
  min-height: 100%;
}
.testimonial p { font-size: 1.02rem; }
.testimonial b { color: var(--ink-teal); }

.blog-card { overflow: hidden; padding: 0; }
.blog-image {
  height: 160px;
  background:
    linear-gradient(135deg, rgba(6,75,104,0.92), rgba(246,179,51,0.82)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), transparent 28%);
}
.blog-card .card-body { padding: 24px; }
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,179,51,0.18);
  color: var(--ink-teal);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.form {
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--charcoal);
}
textarea { min-height: 150px; resize: vertical; }
label { font-weight: 800; color: var(--ink-teal); }
.form-note { font-size: 0.92rem; color: var(--muted); }

.cta {
  border-radius: 44px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(246,179,51,0.34), transparent 28%),
    var(--deep-teal);
  color: white;
}
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,0.86); }
.cta .button.secondary { color: white; border-color: rgba(255,255,255,0.75); }

.site-footer {
  padding: 52px 0 28px;
  background: #031F2B;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}
.footer-logo { width: 74px; border-radius: 50%; background: white; margin-bottom: 16px; }
.site-footer h3 { color: white; margin-bottom: 12px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.75); }
.footer-links { display: grid; gap: 8px; }
.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: inline-flex;
    border: 0;
    background: var(--deep-teal);
    color: white;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-button { margin-top: 8px; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .cta, .footer-grid { grid-template-columns: 1fr; }
  .section-header { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .navbar { height: 76px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 0.95rem; }
  .hero { padding: 62px 0 54px; }
  .hero-card, .story-band, .cta { padding: 26px; border-radius: 28px; }
  .section { padding: 58px 0; }
  .form-row { grid-template-columns: 1fr; }
  h1 { letter-spacing: -0.055em; }
}

.hero-feature-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px;
  margin: -8px 0 20px;
  box-shadow: 0 12px 28px rgba(3, 56, 77, 0.12);
}
.story-image-card {
  padding: 16px;
  overflow: hidden;
}
.story-image-card .card-image {
  height: 230px;
  margin: 0 0 18px;
}
.section-header + .grid-4,
.section-header + .grid-3,
.section-header + .grid-2 {
  margin-top: 14px;
}
.values-block {
  padding-top: 18px;
}
.values-list {
  margin-top: 22px;
}
@media (max-width: 640px) {
  .hero-feature-image img { height: 320px; }
  .card-image, .story-image-card .card-image { height: 220px; }
}


/* FolkDeep layout refinements: compact square image cards and clearer heading gaps */
.card h3,
.feature-card h3,
.story-image-card h3,
.journal-card h3,
.value-card h3 {
  margin-top: 0.85rem;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.card p,
.feature-card p,
.story-image-card p,
.journal-card p,
.value-card p {
  margin-top: 0.35rem;
  line-height: 1.65;
}

.story-image-card {
  padding: 12px;
  min-height: auto !important;
}

.story-image-card .card-image,
.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto !important;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 !important;
  display: block;
}

.story-image-card h3 {
  margin-top: 0.9rem;
}

.story-image-card p {
  margin-bottom: 0.2rem;
}

.grid-4 .story-image-card,
.grid-3 .story-image-card,
.grid-2 .story-image-card {
  align-self: start;
}

.section .grid-4,
.section .grid-3,
.section .grid-2 {
  align-items: start;
}

.section-header {
  margin-bottom: 1.45rem;
}

.section-header h2,
.section h2 {
  margin-bottom: 0.85rem;
}

.card,
.value-card,
.journal-card {
  min-height: auto !important;
}

.values-block {
  padding-top: 28px;
}

.values-list {
  margin-top: 26px;
}

/* Slightly reduce visual weight where image-only cards were feeling too tall */
.image-grid-compact .card,
.image-grid-compact .story-image-card {
  padding-bottom: 14px;
}


/* Radha Sutra image gallery */
.radha-gallery {
  margin-top: 1.8rem;
}
.radha-gallery .story-image-card {
  padding: 12px;
  min-height: auto !important;
}
.radha-gallery .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto !important;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 !important;
  display: block;
}
.radha-gallery .story-image-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.65rem;
}
