:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #66716b;
  --paper: #f7f4ed;
  --white: #fffdf8;
  --green: #284f3d;
  --green-2: #6f8a6c;
  --terracotta: #a75135;
  --gold: #c49a4a;
  --blue: #254763;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(18, 26, 22, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 22, 18, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  padding: 4px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(40, 79, 61, 0.28);
  background: #fffdf8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(40, 79, 61, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 118px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/window-nature.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 22, 18, 0.9), rgba(14, 22, 18, 0.62) 48%, rgba(14, 22, 18, 0.22)),
    linear-gradient(0deg, rgba(14, 22, 18, 0.48), rgba(14, 22, 18, 0.12) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c36d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 1480px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 6.6vw, 7.6rem);
  font-weight: 500;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--gold);
  color: #151411;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dbb45e;
}

.button-secondary {
  border-color: rgba(255, 253, 248, 0.5);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.12);
}

.hero-actions .button-primary {
  min-width: 148px;
}

.hero-actions .button-secondary {
  min-width: 190px;
}

.hero-actions .button-newsletter {
  min-width: 142px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro,
.history,
.course,
.faq {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p:not(.section-kicker),
.course-intro p,
.split-content p,
.leader-content p,
.ayurveda p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card,
.course-fact,
.direction-grid article,
.service-list article,
.leader-note,
.faq details,
.contact-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
}

.audience-card {
  min-height: 250px;
  padding: 22px;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card:nth-child(2) .card-icon,
.audience-card:nth-child(3) .card-icon,
.audience-card:nth-child(4) .card-icon {
  background: var(--green);
}

.audience-card p,
.service-list p,
.course-fact p,
.direction-grid p,
.leader-note p,
.faq p,
.intro-copy p,
.split-content p {
  overflow-wrap: break-word;
}

.audience-card p,
.service-list p,
.course-fact p,
.direction-grid p,
.leader-note p,
.faq p {
  color: var(--muted);
}

.split,
.ayurveda {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-image img,
.service-main img,
.program-media img,
.ayurveda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image {
  min-height: 520px;
}

.split-content {
  max-width: 610px;
}

.element-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.element-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
}

.history {
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    url("assets/images/vastu-mandala.jpg") center / cover;
}

.history .section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.history-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 237, 0.72);
  padding: 22px;
}

.history-grid span,
.course-price span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.history-grid p {
  color: var(--muted);
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.newsletter-band .section-kicker,
.newsletter-bottom .section-kicker {
  color: #f1c36d;
}

.newsletter-copy {
  max-width: 760px;
}

.newsletter-copy p:not(.section-kicker),
.newsletter-bottom .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.sender-form-field {
  width: min(100%, 520px);
  min-height: 72px;
}

.newsletter-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.services {
  background: #e8eee9;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.service-main {
  min-height: 680px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  padding: 24px;
}

.service-list span,
.course-fact span,
.direction-grid span,
.contact-link span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list span {
  display: none;
}

.course-intro {
  max-width: 950px;
  margin-bottom: 32px;
}

.download-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(40, 79, 61, 0.22);
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.download-actions .download-link {
  margin-top: 0;
}

.download-link-light {
  background: var(--white);
  color: var(--green);
}

.download-link-light:hover,
.download-link-light:focus-visible {
  background: #eef4ef;
}

.download-link:hover,
.download-link:focus-visible {
  transform: translateY(-2px);
  background: #1f4031;
  outline: none;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.course-price {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.course-price article {
  border: 1px solid rgba(40, 79, 61, 0.18);
  border-radius: var(--radius);
  background: rgba(40, 79, 61, 0.06);
  padding: 22px;
}

.course-price strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.course-price p {
  margin-bottom: 0;
  color: var(--muted);
}

.course-fact {
  padding: 22px;
}

.course-fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.course-audience {
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(40, 79, 61, 0.06);
}

.course-audience h3 {
  margin-bottom: 16px;
}

.course-audience div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-audience span {
  border: 1px solid rgba(40, 79, 61, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
}

.program-full {
  display: grid;
  gap: 22px;
}

.program-heading {
  max-width: 860px;
}

.program-heading h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 500;
}

.program-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.program-level,
.program-outcomes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 237, 0.68);
  padding: clamp(18px, 3vw, 30px);
}

.program-outcomes h4 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.program-level-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}

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

.program-level-summary span {
  color: var(--green);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 850;
}

.program-level-summary small {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.program-level-summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(40, 79, 61, 0.22);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font-size: 1.3rem;
  font-weight: 700;
}

.program-level[open] .program-level-summary::after {
  content: "-";
}

.program-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.program-level[open] .program-modules {
  margin-top: 18px;
}

.program-module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.program-module h5 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
}

.program-module ul,
.program-outcomes ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.program-module li,
.program-outcomes li {
  margin-bottom: 7px;
}

.program-module li:last-child,
.program-outcomes li:last-child {
  margin-bottom: 0;
}

.certificate-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(40, 79, 61, 0.06);
  padding: clamp(18px, 3vw, 30px);
}

.certificate-copy h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
}

.certificate-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.certificate-image img {
  width: 100%;
  border: 1px solid rgba(23, 32, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.accordion-trigger span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-panel {
  padding: 18px 0 24px;
  color: var(--muted);
}

.accordion-panel ul {
  margin: 0;
  padding-left: 20px;
}

.accordion-panel p:last-child {
  margin-bottom: 0;
}

.directions {
  background: var(--green);
  color: var(--white);
}

.directions .section-kicker {
  color: #f1c36d;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.direction-grid article {
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.18);
}

.direction-grid span {
  color: #f1c36d;
}

.direction-grid p {
  color: rgba(255, 253, 248, 0.76);
}

.leader {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  background:
    linear-gradient(rgba(247, 244, 237, 0.97), rgba(247, 244, 237, 0.97)),
    url("assets/images/vastu-mandala.jpg") center / cover;
  color: #101a16;
}

.leader-photo {
  align-self: stretch;
  min-height: 480px;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.leader-content {
  max-width: 820px;
}

.leader .section-kicker {
  color: #7c3f2c;
}

.leader-content p {
  color: #33443d;
}

.leader-note {
  align-self: end;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.leader-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.1rem;
}

.organizers {
  background: var(--white);
}

.organizer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.organizer-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(247, 244, 237, 0.72);
}

.organizer-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.organizer-grid p {
  color: var(--muted);
}

.ayurveda {
  background: var(--blue);
  color: var(--white);
}

.ayurveda .section-kicker {
  color: #f1c36d;
}

.ayurveda p {
  color: rgba(255, 253, 248, 0.76);
}

.ayurveda-content {
  max-width: 780px;
}

.ayurveda-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ayurveda-grid article,
.ayurveda-example {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
}

.ayurveda-grid article {
  padding: 18px;
}

.ayurveda-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.ayurveda-grid p {
  margin-bottom: 0;
}

.ayurveda-example {
  margin-top: 12px;
  padding: 20px;
}

.ayurveda-example strong {
  display: block;
  margin-bottom: 8px;
  color: #f1c36d;
}

.ayurveda-example p {
  margin-bottom: 0;
}

.ayurveda-image {
  min-height: 500px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 840;
}

.faq summary::marker {
  color: var(--terracotta);
}

.faq p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.contact .section-kicker {
  color: #f1c36d;
}

.contact-copy p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-panel,
.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.contact-actions {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form,
.payment-card {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  padding: clamp(20px, 3vw, 28px);
}

.contact-form h3,
.payment-card h3 {
  margin-bottom: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 253, 248, 0.86);
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f1c36d;
  outline: 2px solid rgba(241, 195, 109, 0.24);
}

.form-consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: rgba(255, 253, 248, 0.74);
  font-weight: 500;
}

.form-consent a {
  color: #f1c36d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.submit-button {
  width: 100%;
  cursor: pointer;
}

.payment-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.payment-card div {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  padding-top: 12px;
}

.payment-card dt {
  margin-bottom: 4px;
  color: #f1c36d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-card dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
  font-weight: 760;
}

.payment-note {
  margin: -4px 0 18px;
  color: rgba(255, 253, 248, 0.74);
}

.bank-number {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.contact-link {
  display: block;
  padding: 20px;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.16);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.12);
  outline: none;
}

.contact-link span {
  color: #f1c36d;
}

.contact-link strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
}

.social-presence {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.06);
}

.social-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.social-heading .section-kicker,
.social-heading h3 {
  margin: 0;
}

.social-heading h3 {
  max-width: 620px;
  color: var(--white);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(15, 21, 18, 0.34);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: #f1c36d;
  background: rgba(255, 253, 248, 0.1);
  outline: none;
}

.social-link svg {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(241, 195, 109, 0.62);
  color: #f1c36d;
}

.social-link span,
.social-link strong,
.social-link small {
  display: block;
  min-width: 0;
}

.social-link small {
  margin-bottom: 3px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-link strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #0f1512;
  color: rgba(255, 253, 248, 0.74);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #f1c36d;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.newsletter-page {
  min-height: 100svh;
  background: var(--green);
}

.newsletter-landing {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100svh - 80px);
}

.newsletter-landing-copy,
.newsletter-landing-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 118px) clamp(22px, 6vw, 90px);
}

.newsletter-landing-copy {
  background: var(--paper);
}

.newsletter-landing-copy h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3rem, 5.6vw, 6.3rem);
}

.newsletter-landing-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.newsletter-gift {
  max-width: 760px;
  margin-top: 24px;
  padding: 24px 0 22px 24px;
  border-left: 4px solid var(--gold);
}

.newsletter-gift span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter-gift h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.newsletter-gift p {
  margin-bottom: 0;
  color: var(--muted);
}

.newsletter-benefits {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}

.newsletter-benefits li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.newsletter-landing-form {
  align-items: flex-start;
  background: var(--green);
  color: var(--white);
}

.newsletter-form-intro {
  max-width: 520px;
  margin-bottom: 24px;
}

.newsletter-form-intro .section-kicker {
  color: #f1c36d;
}

.newsletter-form-intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.newsletter-form-intro p:not(.section-kicker),
.newsletter-privacy {
  color: rgba(255, 253, 248, 0.74);
}

.newsletter-landing-form .sender-form-field {
  width: min(100%, 520px);
  min-height: 360px;
}

.newsletter-privacy {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.newsletter-privacy a {
  color: #f1c36d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-page-footer {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.legal-body {
  background: var(--white);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header .brand {
  color: var(--ink);
}

.legal-header .brand-mark {
  border-color: rgba(40, 79, 61, 0.28);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 36px);
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.legal-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-card,
.legal-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 237, 0.7);
}

.legal-card {
  margin: 32px 0;
  padding: clamp(20px, 3vw, 30px);
}

.legal-section {
  margin-top: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.legal-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.legal-section p,
.legal-section li,
.legal-card p {
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .audience-grid,
  .direction-grid,
  .history-grid,
  .organizer-grid,
  .ayurveda-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .service-layout,
  .program,
  .newsletter-band,
  .newsletter-bottom,
  .certificate-showcase,
  .ayurveda,
  .leader,
  .contact,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .newsletter-landing-form .sender-form-field {
    min-height: 180px;
  }

  .service-main,
  .split-image,
  .program-media,
  .ayurveda-image {
    min-height: 360px;
  }
}

@media (max-width: 760px) {

  .newsletter-landing-copy,
  .newsletter-landing-form {
    padding: 52px 20px;
  }

  .newsletter-landing-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .newsletter-gift {
    padding: 18px 0 18px 18px;
  }
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.8vw, 3.5rem);
    line-height: 1.03;
  }

  h1 span {
    display: inline;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
    padding-top: 112px;
  }

  .hero-content {
    align-self: center;
    padding-bottom: 0;
  }

  .hero-lead {
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 240px);
    margin-bottom: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 22, 18, 0.9), rgba(14, 22, 18, 0.52)),
      linear-gradient(0deg, rgba(14, 22, 18, 0.48), rgba(14, 22, 18, 0.16));
  }

  .intro-grid,
  .course-grid,
  .course-price,
  .program-modules {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .direction-grid,
  .history-grid,
  .organizer-grid,
  .ayurveda-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .audience-card {
    min-height: 0;
    padding: 18px;
  }

  .organizer-grid article {
    padding: 20px;
  }

  .ayurveda-grid {
    margin-top: 22px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .card-icon svg {
    width: 19px;
    height: 19px;
  }

  .service-main,
  .split-image,
  .program-media,
  .ayurveda-image {
    min-height: 0;
  }

  .split-image img,
  .service-main img,
  .program-media img,
  .ayurveda-image img {
    height: auto;
    max-height: 340px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .program-media img {
    aspect-ratio: 1 / 1;
  }

  .leader {
    background: #f7f4ed;
  }

  .leader-photo {
    min-height: 0;
    max-width: 420px;
  }

  .leader-photo img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: 50% 34%;
  }

  .leader-note {
    padding: 22px;
  }

  .split {
    gap: 24px;
  }

  .direction-grid {
    gap: 10px;
  }

  .direction-grid article {
    min-height: 0;
    padding: 18px;
  }

  .program-level,
  .program-outcomes,
  .certificate-showcase,
  .program-module,
  .contact-form,
  .payment-card {
    padding: 18px;
  }

  .direction-grid span,
  .service-list span,
  .course-fact span,
  .contact-link span {
    margin-bottom: 8px;
  }

  .direction-grid h3 {
    margin-bottom: 8px;
  }

  .direction-grid p {
    margin-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-presence {
    padding: 20px;
  }

  .social-heading {
    display: block;
  }

  .social-heading .section-kicker {
    margin-bottom: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
