:root {
  --ink: #101414;
  --muted: #5b6461;
  --line: #d9ded9;
  --paper: #f6f8f4;
  --paper-2: #edf3ef;
  --green: #12342d;
  --gold: #c99a39;
  --blue: #2368a2;
  --red: #a73542;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(12, 20, 18, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(8, 14, 14, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.topbar.light {
  color: var(--ink);
  background: rgba(246, 248, 244, 0.82);
  border-bottom-color: rgba(16, 20, 20, 0.1);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 750;
  line-height: 1;
}

.brandmark::before {
  content: "";
  width: 11px;
  height: 30px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 17px 0 0 rgba(255, 255, 255, 0.45), 34px 0 0 rgba(201, 154, 57, 0.72);
}

.topbar.light .brandmark::before {
  box-shadow: 17px 0 0 rgba(35, 104, 162, 0.42), 34px 0 0 rgba(167, 53, 66, 0.62);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  white-space: nowrap;
}

.topbar.light .navlinks a {
  border-color: rgba(16, 20, 20, 0.14);
}

.navlinks a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.topbar.light .navlinks a:hover {
  background: rgba(16, 20, 20, 0.06);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 7svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 10, 0.82), rgba(5, 10, 10, 0.46) 46%, rgba(5, 10, 10, 0.18)),
    linear-gradient(0deg, rgba(5, 10, 10, 0.62), transparent 44%);
}

.hero.ganesha::before {
  background-image: url("assets/ganesha-hero.png");
}

.hero.shkola::before {
  background-image: url("assets/shkola-hero.png");
}

.hero.shkola::after {
  background:
    linear-gradient(90deg, rgba(246, 248, 244, 0.93), rgba(246, 248, 244, 0.66) 48%, rgba(246, 248, 244, 0.28)),
    linear-gradient(0deg, rgba(246, 248, 244, 0.82), transparent 42%);
}

.hero-content {
  width: min(920px, 100%);
  color: var(--white);
}

.shkola .hero-content {
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: currentColor;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.78;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 13vw, 172px);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 28px 0 0;
  font-size: clamp(19px, 2.5vw, 31px);
  line-height: 1.18;
  color: currentColor;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 34px 0 0;
}

.pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 13px;
  color: currentColor;
  font-size: 13px;
  font-weight: 680;
  opacity: 0.82;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 19px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.shkola .button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  border-color: currentColor;
  color: currentColor;
  background: rgba(255, 255, 255, 0.04);
}

.shkola .button.secondary {
  background: rgba(255, 255, 255, 0.34);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section.dark {
  background: #0c1514;
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 34px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.dark .section-label {
  color: #e0b455;
}

h2 {
  margin: 0;
  font-size: clamp(33px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.dark .section-lede {
  color: rgba(255, 255, 255, 0.68);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.tile {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.dark .tile {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.tile-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 26px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 780;
}

.ganesha-accent .tile-kicker {
  background: var(--gold);
  color: #17110a;
}

.shkola-accent .tile-kicker {
  background: var(--blue);
}

.tile h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.dark .tile p {
  color: rgba(255, 255, 255, 0.66);
}

.terms {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 80px);
  align-items: start;
}

.terms-list {
  display: grid;
  gap: 12px;
}

.term-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.term-row strong {
  font-size: 15px;
}

.term-row span {
  color: var(--muted);
  line-height: 1.45;
}

.dark .term-row {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.dark .term-row span {
  color: rgba(255, 255, 255, 0.68);
}

.inquiry {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 760;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fbfcfa;
  color: var(--ink);
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.inquiry .button.primary {
  width: 100%;
  margin-top: 4px;
  background: var(--ink);
  color: var(--white);
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 760;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.home {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 72px) 54px;
  background:
    linear-gradient(110deg, rgba(18, 52, 45, 0.96), rgba(16, 20, 20, 0.9) 46%, rgba(35, 104, 162, 0.42)),
    url("assets/ganesha-hero.png") center / cover;
  color: var(--white);
}

.home-wrap {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.home h1 {
  max-width: 980px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.92;
}

.home p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.42;
}

.domain-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.domain-card {
  min-height: 310px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.domain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 14, 14, 0.82), rgba(8, 14, 14, 0.12));
}

.domain-card.ganesha-card {
  background-image: url("assets/ganesha-hero.png");
}

.domain-card.shkola-card {
  background-image: url("assets/shkola-hero.png");
}

.domain-card > * {
  position: relative;
}

.domain-card h2 {
  color: var(--white);
}

.domain-card p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
    min-height: 0;
  }

  .navlinks {
    gap: 6px;
  }

  .navlinks a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 118px;
  }

  .section-header,
  .terms {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .domain-switch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: grid;
  }

  .brandmark::before {
    height: 24px;
  }

  .hero {
    min-height: 90svh;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .hero-copy {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

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

  .tile {
    min-height: 190px;
  }

  .term-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    display: grid;
  }
}


.direct-contact {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.direct-contact a {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}
