/* VedThenics marketing site — brand tokens from owner logo + photography */

:root {
  --ink: #1a1510;
  --ink-soft: #3a3128;
  --muted: #6a5e52;
  --paper: #f6efe4;
  --paper-deep: #ebe0d0;
  --sand: #e4d7c4;
  --ember: #b56a3c;
  --ember-deep: #8c4c2a;
  --sun: #d08f45;
  --line: rgba(26, 21, 16, 0.11);
  --max: 70rem;
  --prose: 38rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(208, 143, 69, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 8%, rgba(181, 106, 60, 0.1), transparent 50%),
    linear-gradient(180deg, #faf4eb 0%, var(--paper) 35%, #f1e7d9 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--ember-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 0.25rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  padding: 1.1rem 1.25rem;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header a {
  color: rgba(246, 239, 228, 0.86);
  text-decoration: none;
}

.site-header a:hover {
  color: #fff;
}

@media (min-width: 640px) {
  .site-header {
    padding: 1.35rem 1.75rem;
  }

  .site-header nav {
    gap: 1.35rem;
    font-size: 0.82rem;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f6efe4;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 35%;
  transform: scale(1.05);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 7, 4, 0.78) 0%, rgba(10, 7, 4, 0.52) 38%, rgba(10, 7, 4, 0.18) 62%, rgba(10, 7, 4, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 7, 4, 0.35) 0%, rgba(10, 7, 4, 0.12) 28%, rgba(10, 7, 4, 0.55) 72%, rgba(10, 7, 4, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 6.5rem 0 3.25rem;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.05rem;
  max-width: 34rem;
}

.brand-mark {
  width: clamp(3.5rem, 9vw, 4.75rem);
  height: auto;
  border-radius: 0.3rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.95s var(--ease) 0.08s forwards;
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 10vw, 5.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: none;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 1s var(--ease) 0.18s forwards;
}

.hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 3vw, 1.72rem);
  font-weight: 450;
  line-height: 1.28;
  color: rgba(246, 239, 228, 0.95);
  max-width: 22ch;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 1s var(--ease) 0.3s forwards;
}

.hero-support {
  margin: 0;
  max-width: 28rem;
  color: rgba(246, 239, 228, 0.8);
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 1s var(--ease) 0.42s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 1s var(--ease) 0.54s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.18rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.btn-primary:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(246, 239, 228, 0.42);
  color: #f6efe4;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #f6efe4;
  color: #fff;
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: #000;
  color: #fff;
}

.btn-line {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-line:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-quiet {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: auto;
  padding: 0.35rem 0;
  font-weight: 500;
  cursor: default;
}

.btn-quiet:hover {
  transform: none;
  color: var(--muted);
}

main section {
  padding: clamp(4.25rem, 11vw, 7rem) 0;
}

.section-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-deep);
}

.section-title {
  margin: 0 0 1rem;
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.section-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.pillars .section-lead strong {
  color: #f6efe4;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  transform: translateX(-50%);
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(180deg, transparent, rgba(246, 239, 228, 0.55));
  opacity: 0;
  animation: rise 1.1s var(--ease) 1.1s forwards;
}

@media (max-width: 640px) {
  .hero-scroll {
    display: none;
  }
}

.split {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
  }

  .split-reverse > :first-child {
    order: 2;
  }

  .split-reverse > :last-child {
    order: 1;
  }
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.12rem;
  background: var(--sand);
  box-shadow: 0 28px 70px rgba(26, 21, 16, 0.14);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(26, 21, 16, 0.06);
}

.visual-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 415 / 449;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(1.15rem);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.philosophy {
  background:
    linear-gradient(180deg, transparent, rgba(228, 215, 196, 0.4) 40%, transparent 100%);
}

.philosophy .section-lead + .section-lead {
  margin-top: 1rem;
}

.pillars {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(208, 143, 69, 0.12), transparent 55%),
    linear-gradient(180deg, #1c1712 0%, #14110d 100%);
  color: #f1e7d9;
}

.pillars .section-kicker {
  color: var(--sun);
}

.pillars .section-title {
  color: #f6efe4;
  max-width: 20ch;
}

.pillars .section-lead {
  color: rgba(241, 231, 217, 0.74);
}

.pillar-grid {
  display: grid;
  gap: 2.25rem 2.75rem;
  margin-top: 3rem;
}

@media (min-width: 720px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.58rem;
  font-weight: 500;
}

.pillar p {
  margin: 0;
  color: rgba(241, 231, 217, 0.74);
  max-width: 32rem;
}

.pillar-sanskrit {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
}

.practice .section-lead + .section-lead {
  margin-top: 1rem;
}

.practice-flow {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
  counter-reset: step;
}

.practice-flow li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--ink-soft);
  counter-increment: step;
}

.practice-flow li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(181, 106, 60, 0.45);
  color: var(--ember-deep);
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  background: transparent;
}

.journey {
  background:
    linear-gradient(180deg, #f3e9db 0%, #ebe0d0 100%);
}

.journey .section-title {
  max-width: 22ch;
}

.journey-list {
  display: grid;
  gap: 2.25rem;
  margin-top: 2.75rem;
}

@media (min-width: 800px) {
  .journey-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
  }
}

.journey-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
}

.journey-item p {
  margin: 0;
  color: var(--ink-soft);
}

.journey-icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  object-fit: contain;
}

.journey-item-skills .journey-mark {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 0.2rem;
  object-fit: cover;
}

.bounds {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.35);
}

.bounds-grid {
  display: grid;
  gap: 2.75rem;
  margin-top: 2.15rem;
}

@media (min-width: 800px) {
  .bounds-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.25rem;
  }
}

.bounds h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.bounds ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.bounds li + li {
  margin-top: 0.5rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
}

.trust-list li:not(:last-child)::after {
  content: "·";
  margin: 0 0.85rem;
  color: rgba(106, 94, 82, 0.45);
}

.close .section-title {
  max-width: 16ch;
}

.close-note {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 2.35rem 0 2.85rem;
  border-top: 1px solid var(--line);
  background: rgba(246, 239, 228, 0.72);
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.18rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  font-size: 0.88rem;
}

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

.footer-note {
  width: 100%;
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

/* Interior pages */
.page-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-top {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 239, 228, 0.9);
  backdrop-filter: blur(10px);
}

.page-top-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.page-top a.home {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.page-top img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.18rem;
}

.page-top nav {
  display: flex;
  gap: 1rem;
  font-size: 0.88rem;
}

.page-top nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.page-top nav a:hover {
  color: var(--ink);
}

.legal-main,
.support-main {
  width: min(100% - 2.5rem, var(--prose));
  margin: 0 auto;
  padding: 3rem 0 4.5rem;
  flex: 1;
}

.legal-main h1,
.support-main h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
}

.legal-main .meta,
.support-main .meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.legal-main h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.legal-main p,
.legal-main li,
.support-main p,
.support-main li {
  color: var(--ink-soft);
}

.legal-main ul {
  padding-left: 1.2rem;
}

.legal-main hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 640px) {
  .hero-media img {
    object-position: 78% 28%;
  }

  .hero-inner {
    padding: 5.5rem 0 2.75rem;
  }

  .brand-lockup {
    gap: 0.9rem;
    max-width: 22rem;
  }

  .hero-headline {
    max-width: 18ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-mark,
  .brand-name,
  .hero-headline,
  .hero-support,
  .cta-row,
  .hero-scroll,
  .reveal,
  .hero-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}


/* vt-polish-2 */
