@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --porcelain-white: #F7F5F0;
  --warm-stone: #D8D1C7;
  --soft-graphite: #1C1D1F;
  --deep-charcoal: #0E0F10;
  --titanium-grey: #8C8F91;
  --clinical-cyan: #B9E6E8;
  --muted-emerald: #7A9A8D;
  
  --border-color: rgba(28, 29, 31, 0.08);
  --border-color-hover: rgba(28, 29, 31, 0.2);
  --focus-ring: rgba(28, 29, 31, 0.3);
  
  /* Layout */
  --max-width: 1280px;
  --desktop-padding: clamp(2rem, 5vw, 4.5rem);
  --mobile-padding: 1.25rem;
  --section-spacing: clamp(4.5rem, 9vw, 8rem);
  
  /* Typography Scale */
  --fs-hero-title: clamp(2.25rem, 5vw, 4.25rem); /* 36px to 68px */
  --fs-hero-sub: clamp(1.125rem, 2.5vw, 1.625rem); /* 18px to 26px */
  --fs-section-title: clamp(1.625rem, 4vw, 2.5rem); /* 26px to 40px */
  --fs-body: clamp(1rem, 1.2vw, 1.125rem); /* 16px to 18px */
  --fs-small: clamp(0.8125rem, 1vw, 0.9375rem); /* 13px to 15px */
  --fs-btn: 0.9375rem; /* 15px */
  
  /* Easing */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-speed: 0.6s;
}

/* --- Language Specific Fonts --- */
:lang(ka) {
  font-family: "Noto Sans Georgian", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

:lang(en),
:lang(ru) {
  font-family: "Noto Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--porcelain-white);
  color: var(--soft-graphite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Thin Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--porcelain-white);
}
::-webkit-scrollbar-thumb {
  background: var(--warm-stone);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--titanium-grey);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-speed) var(--ease-premium);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Accessible Visually Hidden helper */
.visually-hidden {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

/* Focus Indicator Styles */
*:focus-visible {
  outline: 2px solid var(--soft-graphite);
  outline-offset: 4px;
}

/* --- Grid & Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--desktop-padding);
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--mobile-padding);
  }
}

.section {
  padding-block: var(--section-spacing);
  border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
  border-bottom: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.label-num {
  font-size: var(--fs-small);
  color: var(--titanium-grey);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

/* --- Custom Buttons & Links --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: var(--fs-btn);
  font-weight: 500;
  border: 1px solid var(--soft-graphite);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed) var(--ease-premium);
  min-height: 48px;
}

.btn-primary {
  background-color: var(--soft-graphite);
  color: var(--porcelain-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--soft-graphite);
}

.btn-secondary {
  background-color: transparent;
  color: var(--soft-graphite);
}

.btn-secondary:hover {
  background-color: var(--soft-graphite);
  color: var(--porcelain-white);
}

/* Sub-nav inline text link animation */
.text-link {
  font-size: var(--fs-btn);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--soft-graphite);
  position: relative;
  padding-block: 0.25rem;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--soft-graphite);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-premium);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
}

.header.scrolled {
  background-color: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(4.5rem, 7vw, 5.5rem);
}

.logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--soft-graphite);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-weight: 400;
  color: var(--titanium-grey);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--soft-graphite);
  opacity: 0.7;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

/* Language selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lang-link {
  color: var(--titanium-grey);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.lang-link.active {
  color: var(--soft-graphite);
  background-color: rgba(28, 29, 31, 0.06);
}

.lang-link:hover:not(.active) {
  color: var(--soft-graphite);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-btn {
  padding: 0.6rem 1.25rem;
  font-size: 13px;
  min-height: auto;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--soft-graphite);
  transition: transform 0.3s var(--ease-premium), opacity 0.3s var(--ease-premium);
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--porcelain-white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: var(--mobile-padding);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-premium);
    z-index: 999;
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .nav-link {
    font-size: 1.5rem;
  }
  
  .header-actions {
    display: none; /* Controlled on mobile menu */
  }
  
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-headline {
  font-size: var(--fs-hero-title);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--deep-charcoal);
  margin-bottom: 1.5rem;
}

.hero-headline span {
  display: block;
  color: var(--titanium-grey);
  font-weight: 500;
}

.hero-subheadline {
  font-size: var(--fs-hero-sub);
  font-weight: 400;
  color: var(--soft-graphite);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

.hero-visual {
  width: 100%;
  height: 480px;
  position: relative;
  background-color: rgba(216, 209, 199, 0.2);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.9;
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-section {
    padding-block: 7rem 4rem;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-visual {
    height: 320px;
    order: 2;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
}

/* --- Section: The Standard --- */
.standard-intro {
  max-width: 800px;
  margin-bottom: 4.5rem;
}

.section-title {
  font-size: var(--fs-section-title);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--deep-charcoal);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-copy {
  font-size: var(--fs-body);
  color: var(--soft-graphite);
  opacity: 0.8;
  max-width: 720px;
}

.principle-card {
  padding: 2.5rem 2rem;
  background: rgba(247, 245, 240, 0.5);
  border: 1px solid var(--border-color);
  transition: border-color 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium);
}

.principle-card:hover {
  border-color: var(--warm-stone);
  background: var(--porcelain-white);
}

.principle-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 1rem;
}

.principle-desc {
  font-size: var(--fs-body);
  color: var(--soft-graphite);
  opacity: 0.75;
}

/* --- Section: Founder's Standard --- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.founder-visual {
  border: 1px solid var(--border-color);
  padding: 1rem;
  background-color: rgba(216, 209, 199, 0.15);
}

.founder-image {
  width: 100%;
  filter: grayscale(1);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-color);
  transition: filter 0.8s var(--ease-premium);
}

.founder-visual:hover .founder-image {
  filter: grayscale(0.2);
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-quote {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--deep-charcoal);
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
}

.founder-name {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--soft-graphite);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: var(--fs-small);
  color: var(--titanium-grey);
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-visual {
    max-width: 480px;
    margin-inline: auto;
  }
}

/* --- Section: Treatments --- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  padding: 3rem 2.25rem;
  background-color: transparent;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  transition: all var(--transition-speed) var(--ease-premium);
}

.treatment-card:hover {
  background-color: #FFFFFF;
  border-color: var(--soft-graphite);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14, 15, 16, 0.03);
}

.treatment-num {
  font-size: var(--fs-small);
  color: var(--titanium-grey);
  margin-bottom: 2rem;
}

.treatment-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 1rem;
}

.treatment-desc {
  font-size: var(--fs-body);
  color: var(--soft-graphite);
  opacity: 0.75;
  margin-bottom: auto;
}

@media (max-width: 992px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section: Technology --- */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-item-num {
  font-size: var(--fs-small);
  color: var(--titanium-grey);
  font-weight: 600;
  margin-top: 0.25rem;
}

.tech-item-content {
  flex: 1;
}

.tech-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.tech-item-desc {
  font-size: var(--fs-body);
  color: var(--soft-graphite);
  opacity: 0.75;
}

@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- Section: The Visit --- */
.visit-timeline {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  padding-block: 2rem;
}

.visit-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.25rem;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
}

.visit-step {
  position: relative;
  padding-left: 5.5rem;
  margin-bottom: 4rem;
}

.visit-step:last-child {
  margin-bottom: 0;
}

.visit-marker {
  position: absolute;
  left: 1.25rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--porcelain-white);
  border: 1px solid var(--soft-graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--soft-graphite);
  z-index: 2;
  transition: background-color 0.4s var(--ease-premium), color 0.4s var(--ease-premium);
}

.visit-step:hover .visit-marker {
  background-color: var(--soft-graphite);
  color: var(--porcelain-white);
}

.visit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.75rem;
}

.visit-desc {
  font-size: var(--fs-body);
  color: var(--soft-graphite);
  opacity: 0.75;
  max-width: 680px;
}

@media (max-width: 768px) {
  .visit-timeline::before {
    left: 1.5rem;
  }
  .visit-marker {
    left: 0.5rem;
  }
  .visit-step {
    padding-left: 3.5rem;
  }
}

/* --- Section: Location / Vake --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-wrapper {
    height: 300px;
  }
}

/* --- Section: Booking / Form --- */
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.booking-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--titanium-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--soft-graphite);
}

.contact-value a:hover {
  color: var(--titanium-grey);
}

.booking-form {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--soft-graphite);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  min-height: 48px;
  border-bottom: 1px solid var(--warm-stone);
  font-size: 1rem;
  color: var(--soft-graphite);
  padding-block: 0.5rem;
  transition: border-color 0.3s var(--ease-premium);
  background: transparent;
  border-radius: 0; /* Reset iOS rounded corners */
}

.form-input:focus {
  border-bottom-color: var(--soft-graphite);
}

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

/* Custom Select styling */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 5px;
  background-color: var(--soft-graphite);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2rem;
}

/* Validation Styling (Blur valid/invalid states) */
.form-input.is-invalid {
  border-bottom-color: #DC3545;
}

.form-input.is-valid {
  border-bottom-color: var(--muted-emerald);
}

.form-error {
  font-size: 12px;
  color: #DC3545;
  margin-top: 0.4rem;
  display: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-premium);
}

.form-error.visible {
  display: block;
  opacity: 1;
}

.form-note {
  font-size: 13px;
  color: var(--titanium-grey);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.form-btn {
  width: 100%;
  height: 54px;
}

/* Feedback Notifications */
.form-status {
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 14px;
  display: none;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-premium);
}

.form-status.success {
  display: block;
  background-color: rgba(122, 154, 141, 0.08);
  border-color: var(--muted-emerald);
  color: var(--muted-emerald);
  font-weight: 500;
}

.form-status.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.08);
  border-color: #DC3545;
  color: #DC3545;
  font-weight: 500;
}

@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-form {
    padding: 2rem var(--mobile-padding);
  }
}

/* --- Footer --- */
.footer {
  background-color: var(--deep-charcoal);
  color: #FFFFFF;
  padding-block: 5rem 3rem;
  font-size: var(--fs-small);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 4rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--titanium-grey);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--titanium-grey);
}

.footer-link:hover {
  color: #FFFFFF;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--titanium-grey);
}

.footer-info strong {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--titanium-grey);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* --- Animation System (Scroll-Driven Reveals) --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Progressive Scroll-Driven animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .reveal {
      animation: fadeInUp linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}

/* IntersectionObserver Fallback Classes (For Firefox and Safari older than 26) */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
