﻿:root {
  --color-cream: #faf6f0;
  --color-gold: #c9a227;
  --color-gold-deep: #9f7d21;
  --color-gold-soft: #f0e2c7;
  --color-red: #c2002f;
  --color-red-dark: #930023;
  --color-ink: #1b1b1b;
  --color-text: #4b4b4b;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
}

body.page--body {
  --color-red: #1e7b6f;
  --color-red-dark: #0f5549;
}

* {
  box-sizing: border-box;
}

body.page {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

body.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 5% 95%, rgba(194, 0, 47, 0.05) 0, transparent 45%),
    radial-gradient(circle at 95% 10%, rgba(201, 162, 39, 0.08) 0, transparent 55%);
}

body.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("../img/pattern-ishvara.svg");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: multiply;
}

a {
  color: var(--color-red);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-ink);
  text-decoration: underline;
}

.skip {
  position: absolute;
  top: 8px;
  left: 12px;
  background: var(--color-red);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  gap: 2rem;
}

.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.header__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.82);
  transition: color 0.2s ease;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0) 0%, rgba(201, 162, 39, 0.8) 50%, rgba(201, 162, 39, 0) 100%);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}

.header__link:hover,
.header__link:focus-visible {
  color: var(--color-ink);
}

.header__link:hover::after,
.header__link:focus-visible::after {
  transform: scaleX(1);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand__logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  color: var(--color-ink);
}

.brand__tag {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.82);
}

.header__cta .cta {
  font-size: 0.95rem;
}

.header__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(194, 0, 47, 0.12) 0, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.3) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1.5rem;
}

.hero__copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
  color: var(--color-ink);
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(27, 27, 27, 0.78);
  max-width: 60ch;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  color: rgba(27, 27, 27, 0.75);
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-red);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.hero__stat {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 1.1rem;
  padding: 1.1rem 1.35rem;
  box-shadow: 0 18px 30px -30px rgba(27, 27, 27, 0.35);
}

.hero__stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.55);
  font-weight: 600;
}

.hero__stat-text {
  margin: 0.5rem 0 0;
  color: var(--color-ink);
  font-weight: 500;
}

.hero__stat-text strong {
  color: var(--color-red);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -18px rgba(201, 162, 39, 0.9);
  color: #fff;
}

.cta--ghost {
  background: rgba(194, 0, 47, 0.08);
  color: var(--color-red);
  border: 1px solid rgba(194, 0, 47, 0.4);
}

.cta--ghost:hover,
.cta--ghost:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  border-color: var(--color-red);
  box-shadow: 0 16px 26px -16px rgba(194, 0, 47, 0.8);
}

.cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.hero__note {
  font-size: 0.95rem;
  color: rgba(27, 27, 27, 0.65);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.5);
}

.hero__scroll span:last-child {
  font-size: 1.1rem;
  display: inline-block;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero__visual {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.hero__scene {
  position: relative;
  background: linear-gradient(155deg, rgba(201, 162, 39, 0.28) 0%, rgba(201, 162, 39, 0.08) 100%);
  padding: 1.4rem;
  border-radius: 2.8rem;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 34px 48px -40px rgba(27, 27, 27, 0.38);
}

.hero__scene::after {
  content: "";
  position: absolute;
  inset: auto 12% -15% 12%;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero__scene img {
  display: block;
  width: clamp(260px, 38vw, 360px);
  height: auto;
  aspect-ratio: 720 / 544;
  border-radius: 2rem;
  border: 4px solid #fff;
}

.hero__badge {
  align-self: start;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(194, 0, 47, 0.1);
  color: var(--color-red);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__card {
  position: absolute;
  bottom: 1.2rem;
  left: -3.5rem;
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(194, 0, 47, 0.16);
  box-shadow: 0 16px 28px -24px rgba(194, 0, 47, 0.4);
  width: clamp(220px, 40vw, 260px);
}

.hero__card span {
  display: block;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.hero__card small {
  color: rgba(75, 75, 75, 0.75);
}

.section {
  padding: clamp(4rem, 9vw, 6rem) 0;
}

.section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}

.section__intro--left {
  text-align: left;
  margin: 0 0 3rem;
  max-width: 640px;
}

.section__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
  color: var(--color-ink);
}

.section__intro h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0) 0%, rgba(201, 162, 39, 0.8) 50%, rgba(201, 162, 39, 0) 100%);
}

.section__intro--left h2::after {
  margin-left: 0;
}

.section__intro p {
  margin: 0 auto;
  font-size: 1.05rem;
  max-width: 60ch;
}

.section__intro--left p {
  margin-left: 0;
}

.section--promise {
  background: #fff;
  position: relative;
}

.section--promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 15%, rgba(201, 162, 39, 0.25) 0, transparent 50%);
  pointer-events: none;
}

.section--path {
  background: linear-gradient(135deg, rgba(250, 246, 240, 0.9) 0%, rgba(30, 123, 111, 0.08) 100%);
}

.pathway {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.pathway__lead {
  display: grid;
  gap: 1.2rem;
  max-width: 560px;
}

.pathway__lead h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  color: var(--color-ink);
  margin: 0;
}

.pathway__lead p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(27, 27, 27, 0.78);
}

.pathway__steps {
  align-self: stretch;
}

.section--path .card {
  border-color: rgba(30, 123, 111, 0.18);
  box-shadow: 0 20px 34px -30px rgba(30, 123, 111, 0.35);
}

.section--path .card:hover {
  box-shadow: 0 26px 40px -30px rgba(30, 123, 111, 0.42);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.9rem;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 18px 32px -32px rgba(27, 27, 27, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--color-ink);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 38px -30px rgba(27, 27, 27, 0.4);
}

.card p {
  margin: 0;
}

.section--steps {
  background: #fdf9f4;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 18px 32px -32px rgba(27, 27, 27, 0.35);
  display: grid;
  gap: 0.85rem;
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.step p {
  margin: 0;
  color: rgba(27, 27, 27, 0.75);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(30, 123, 111, 0.16);
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section--fee {
  background: #fffaf5;
}

.fee-box {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 2.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: #ffffff;
  box-shadow: 0 24px 40px -36px rgba(27, 27, 27, 0.4);
}

.fee-box h2 {
  margin: 0.6rem 0 0.4rem;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: rgba(27, 27, 27, 0.75);
  font-weight: 500;
}

.fee-list li {
  position: relative;
  padding-left: 1.6rem;
}

.fee-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.section--form {
  background: linear-gradient(135deg, rgba(250, 246, 240, 0.9) 0%, rgba(30, 123, 111, 0.08) 100%);
}

.form-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.form-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 28px 44px -36px rgba(27, 27, 27, 0.35);
  display: grid;
  gap: 1rem;
}

.form-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.form-copy p {
  max-width: 60ch;
}

.form-note {
  margin: 0;
  color: rgba(27, 27, 27, 0.75);
}

.form-subnote {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(27, 27, 27, 0.7);
}

.form-fallback {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(27, 27, 27, 0.7);
}

.form-micro {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(27, 27, 27, 0.65);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  color: var(--color-ink);
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(27, 27, 27, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(30, 123, 111, 0.35);
  outline-offset: 1px;
}

.field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(27, 27, 27, 0.75);
}

.field--checkbox input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
}

.field__error {
  margin: 0;
  color: var(--color-red);
  font-size: 0.85rem;
  min-height: 1rem;
}

.form-status {
  margin: 0;
  font-weight: 600;
  color: rgba(27, 27, 27, 0.7);
  min-height: 1.2rem;
}

.form-submit {
  width: 100%;
}

.list--compact {
  margin-top: 1rem;
}

.section--faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 18px 30px -32px rgba(27, 27, 27, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-ink);
  list-style: none;
}

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

.faq-item p {
  margin: 0.75rem 0 0;
  color: rgba(27, 27, 27, 0.75);
}

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(540px, 92vw);
  background: rgba(250, 246, 240, 0.95);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 999px;
  padding: 0.6rem;
  display: none;
  gap: 0.6rem;
  row-gap: 0.4rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 30px -26px rgba(27, 27, 27, 0.45);
  z-index: 950;
}

.sticky-bar .cta {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.sticky-bar__note {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: rgba(27, 27, 27, 0.65);
  text-align: center;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.section--narrative {
  background: linear-gradient(135deg, #f9ede6 0%, #f4dcd2 100%);
  color: #2d1f1c;
}

.narrative {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.narrative__copy h2 {
  color: #2d1f1c;
}

.narrative__copy p,
.narrative__copy li {
  color: rgba(45, 33, 28, 0.84);
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.list li {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 500;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-red);
}

.list--compact {
  gap: 0.55rem;
}

.list--compact li::before {
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
}

.narrative__quote {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(240, 198, 186, 0.4);
  box-shadow: 0 28px 44px -36px rgba(140, 90, 80, 0.35);
  position: relative;
  overflow: hidden;
}

.narrative__quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1.2rem;
  color: var(--color-ink);
}

.narrative__quote span {
  font-weight: 600;
}


.section--experience {
  background: #fdf9f4;
  overflow: hidden;
}

.experience {
  display: grid;
  grid-auto-flow: column;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  grid-auto-columns: minmax(260px, 1fr);
  margin: 0 0 2.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  list-style: none;
}

.experience::-webkit-scrollbar {
  height: 6px;
}

.experience::-webkit-scrollbar-thumb {
  background: rgba(194, 0, 47, 0.3);
  border-radius: 999px;
}


.experience__card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 20px 34px -30px rgba(27, 27, 27, 0.35);
  display: grid;
  gap: 1.1rem;
  min-height: 280px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 40px -32px rgba(27, 27, 27, 0.45);
}

.experience__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(194, 0, 47, 0.12);
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.experience__card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.experience__card p {
  margin: 0;
  color: rgba(27, 27, 27, 0.78);
}

.experience__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.55);
}

.experience__cta {
  display: flex;
  justify-content: center;
}

.section--atelier {
  background: linear-gradient(120deg, #faf6f0 0%, rgba(250, 246, 240, 0.35) 45%, #fdf9f4 100%);
}

.atelier {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.atelier__panel {
  background: #fff;
  border-radius: 2rem;
  padding: clamp(2.2rem, 4vw, 2.8rem);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 30px 40px -36px rgba(27, 27, 27, 0.4);
  display: grid;
  gap: 1.5rem;
}

.atelier__panel h2 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--color-ink);
}

.atelier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.atelier__list li {
  display: grid;
  gap: 0.3rem;
}

.atelier__label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.55);
}

.atelier__value {
  font-weight: 600;
  color: var(--color-ink);
}

.atelier__mosaic {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.mosaic {
  padding: 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid transparent;
  display: grid;
  gap: 0.6rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mosaic:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px -30px rgba(27, 27, 27, 0.28);
}

.mosaic--tall {
  grid-row: span 2;
  background: rgba(201, 162, 39, 0.16);
  border-color: rgba(201, 162, 39, 0.38);
  box-shadow: inset 0 0 0 2px rgba(201, 162, 39, 0.12);
}

.mosaic--wide {
  grid-column: span 2;
  background: rgba(194, 0, 47, 0.12);
  border-color: rgba(194, 0, 47, 0.3);
}

.mosaic[data-tone="sound"] {
  background: rgba(211, 181, 145, 0.18);
  border-color: rgba(157, 121, 86, 0.42);
  box-shadow: inset 0 0 0 1px rgba(157, 121, 86, 0.28), 0 16px 28px -20px rgba(64, 43, 23, 0.24);
  color: #2a1c10;
}

.mosaic[data-tone="sound"] .mosaic__title,
.mosaic[data-tone="sound"] p {
  color: #2a1c10;
}

.mosaic[data-tone="scent"] {
  background: rgba(245, 183, 178, 0.18);
  border: 1px solid rgba(193, 96, 92, 0.4);
  box-shadow: inset 0 0 0 1px rgba(193, 96, 92, 0.24), 0 16px 28px -20px rgba(120, 40, 36, 0.2);
  color: #3a1414;
}

.mosaic[data-tone="scent"] .mosaic__title,
.mosaic[data-tone="scent"] p {
  color: #3a1414;
}

.mosaic__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-ink);
}

.mosaic p {
  margin: 0;
  color: rgba(27, 27, 27, 0.75);
}

.section--results {
  background: var(--color-cream);
}

.case-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2.5rem;
}

.case {
  background: #fff;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 20px 36px -34px rgba(27, 27, 27, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case__body {
  padding: 1.6rem;
}

.case:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 44px -30px rgba(27, 27, 27, 0.45);
}

.case__body h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
}

.testimonial-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial {
  margin: 0;
  background: #fff;
  padding: 1.8rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 18px 28px -28px rgba(27, 27, 27, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-ink);
}

.testimonial figcaption {
  font-weight: 600;
  color: var(--color-red);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px -30px rgba(27, 27, 27, 0.4);
}

.section--cta {
  background: linear-gradient(120deg, rgba(194, 0, 47, 0.12) 0%, rgba(201, 162, 39, 0.25) 100%);
}

.callout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.callout__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-ink);
}

.callout__copy p {
  font-size: 1.05rem;
  max-width: 60ch;
}

.callout__actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.callout__meta {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.link {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.footer {
  background: var(--color-ink);
  color: #f5f5f5;
  padding: 2.5rem 0;
}

.footer__inner {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.footer__tag {
  margin: 0.35rem 0 0;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer__links .link {
  color: #fff;
}

.footer__text {
  color: #fff;
}

.footer__legal span,
.footer__legal p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal .link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #ffd8a8;
}

.link--button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.link--button:focus-visible {
  outline: 2px solid rgba(255, 216, 168, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer__legal .link:hover,
.footer__legal .link:focus-visible {
  color: #ffe8c2;
}

.footer__credit {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__credit p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer__credit .link {
  color: #ffd8a8;
}

.footer__credit .link:hover,
.footer__credit .link:focus-visible {
  color: #ffe8c2;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 18, 18, 0.96);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  width: min(920px, 92vw);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner .link {
  color: #ffd8a8;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-banner .cta {
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
  }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.cookie-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.6);
}

.cookie-modal__panel {
  position: relative;
  background: #141414;
  color: #f5f5f5;
  border-radius: 18px;
  padding: 1.8rem;
  width: min(720px, 92vw);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-modal__header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.cookie-modal__header p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-modal__content {
  display: grid;
  gap: 1rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-option h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.cookie-option p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle span {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + span {
  background: #ffd8a8;
}

.cookie-toggle input:checked + span::after {
  transform: translateX(20px);
}

.cookie-toggle--disabled span {
  background: rgba(255, 255, 255, 0.12);
}

.cookie-modal__actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cookie-option {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero__card {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
  }

  .hero__scene {
    padding: 1rem;
  }

  .header__inner {
    padding: 0.75rem 4vw;
  }

  .callout__actions {
    justify-items: stretch;
  }

  .cta,
  .cta--ghost {
    width: 100%;
    text-align: center;
  }

  body.page {
    padding-bottom: 120px;
  }

  .experience {
    grid-auto-columns: 80%;
  }

  .mosaic--wide {
    grid-column: span 1;
  }

  .mosaic--tall {
    grid-row: span 1;
  }

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

  .cookie-banner {
    bottom: 5.5rem;
  }
}

@media (max-width: 992px) {
  .header__inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header__nav {
    width: 100%;
    order: 3;
    justify-content: flex-start;
  }

  .header__menu {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header__cta {
    width: 100%;
    order: 2;
    justify-content: flex-start;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="slide-left"] {
  transform: translateX(40px);
}

[data-reveal="slide-left"].is-visible {
  transform: translateX(0);
}

[data-reveal="slide-right"] {
  transform: translateX(-40px);
}

[data-reveal="slide-right"].is-visible {
  transform: translateX(0);
}

[data-reveal="scale-up"] {
  transform: scale(0.94);
}

[data-reveal="scale-up"].is-visible {
  transform: scale(1);
}

[data-reveal][data-reveal-delay] {
  transition-delay: calc(var(--reveal-delay, 0) * 1s);
}

/* Body landing overrides */
body.page--body::before {
  background:
    radial-gradient(circle at 5% 95%, rgba(30, 123, 111, 0.08) 0, transparent 45%),
    radial-gradient(circle at 95% 10%, rgba(86, 135, 120, 0.12) 0, transparent 55%);
}

body.page--body .hero::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(30, 123, 111, 0.14) 0, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.22) 0, transparent 55%);
}

body.page--body .hero__scene::after {
  background: radial-gradient(circle, rgba(30, 123, 111, 0.22) 0, transparent 70%);
}

body.page--body .hero__badge {
  background: rgba(30, 123, 111, 0.16);
  color: var(--color-red);
}

body.page--body .hero__card {
  border: 1px solid rgba(30, 123, 111, 0.18);
  box-shadow: 0 16px 28px -24px rgba(15, 85, 73, 0.5);
}

body.page--body .cta--ghost {
  background: rgba(30, 123, 111, 0.1);
  border: 1px solid rgba(30, 123, 111, 0.34);
}

body.page--body .cta--ghost:hover,
body.page--body .cta--ghost:focus-visible {
  box-shadow: 0 16px 26px -16px rgba(15, 85, 73, 0.6);
}

body.page--body .experience::-webkit-scrollbar-thumb {
  background: rgba(30, 123, 111, 0.3);
}

body.page--body .experience__step {
  background: rgba(30, 123, 111, 0.16);
}

body.page--body .section--cta {
  background: linear-gradient(120deg, rgba(30, 123, 111, 0.12) 0%, rgba(201, 162, 39, 0.18) 100%);
}

body.page--body .bc-section {
  background: #faf7f4;
  padding: 5rem 0;
}

body.page--body .bc-row {
  display: grid;
  gap: 2.5rem;
}

body.page--body .bc-subtitle {
  font-weight: 600;
  margin-bottom: 1rem;
}

body.page--body .bc-block__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

body.page--body .bc-list {
  padding-left: 1.2rem;
  margin: 0;
}

body.page--body .bc-list li {
  margin-bottom: 0.75rem;
}

body.page--body .bc-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(33, 24, 16, 0.08);
  padding: 2rem;
  border: 1px solid rgba(33, 24, 16, 0.08);
}

body.page--body .bc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f1e8e0;
  color: #5a4634;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.page--body .bc-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 1.5rem 0 0.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}

body.page--body .bc-price__label {
  color: #5a4634;
  font-weight: 500;
}

body.page--body .bc-price__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  color: #2a1f18;
  font-weight: 700;
}

body.page--body .bc-price__value-text {
  font-size: 2.15rem;
  line-height: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f6efe9;
  border: 1px solid rgba(42, 31, 24, 0.12);
  letter-spacing: 0.02em;
}

body.page--body .bc-price__value-note {
  font-size: 0.85rem;
  color: #5a4634;
  font-weight: 600;
}

body.page--body .bc-price__value-suffix {
  font-size: 0.9rem;
  color: #5a4634;
  font-weight: 600;
}

body.page--body .bc-meta {
  color: #5a4634;
  font-weight: 600;
  margin-bottom: 1rem;
}

body.page--body .bc-price__meta {
  color: #5a4634;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

body.page--body .bc-note {
  margin-bottom: 1.5rem;
  color: #3f3127;
}

body.page--body .bc-faq {
  margin-bottom: 1.5rem;
  color: #5a4634;
  font-size: 0.95rem;
}

body.page--body .bc-actions {
  display: grid;
  gap: 0.75rem;
}

body.page--body .bc-actions__title {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: #2a1f18;
}

body.page--body .bc-hint {
  margin: 0 0 0.75rem;
  color: #5a4634;
  font-size: 0.9rem;
}

body.page--body .bc-hint--payment {
  margin: 0.25rem 0 0;
  font-weight: 600;
  text-align: center;
}

body.page--body .bc-divider {
  height: 1px;
  width: 100%;
  background: rgba(90, 70, 52, 0.2);
  margin: 0.75rem 0 0.5rem;
}

body.page--body .bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page--body .bc-btn--premium {
  background: linear-gradient(135deg, #2a1f18, #5a4634);
  border: none;
  color: #fdf7f0;
  box-shadow: 0 16px 30px rgba(42, 31, 24, 0.25);
}

body.page--body .bc-btn--premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(42, 31, 24, 0.3);
  color: #ffffff;
}

body.page--body .bc-btn--paypal {
  background: #0070e0;
  border: none;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(0, 112, 224, 0.25);
}

body.page--body .bc-btn--paypal:hover {
  transform: translateY(-2px);
  background: #005bb5;
  box-shadow: 0 18px 32px rgba(0, 91, 181, 0.28);
  color: #ffffff;
}

body.page--body .bc-pay-modal {
  border-radius: 20px;
  border: 1px solid rgba(90, 70, 52, 0.2);
  background: #fdf7f0;
  color: #2a1f18;
}

body.page--body .bc-pay-modal .modal-header {
  border-bottom: none;
  padding: 2rem 2.25rem 1rem;
}

body.page--body .bc-pay-modal .modal-body {
  padding: 0 2.25rem 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

body.page--body .bc-pay-modal .modal-footer {
  border-top: none;
  padding: 0 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

body.page--body .bc-pay-subtitle {
  margin: 0.35rem 0 0;
  color: #5a4634;
  font-weight: 500;
}

body.page--body .bc-pay-list {
  padding-left: 1.2rem;
  margin: 0 0 1.25rem;
  color: #3f3127;
}

body.page--body .bc-pay-section h5 {
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

body.page--body .bc-pay-details {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
  color: #3f3127;
}

body.page--body .bc-pay-price span {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a1f18;
}

body.page--body .bc-pay-policy {
  margin-bottom: 0;
  color: #5a4634;
  font-size: 0.92rem;
}

body.page--body .bc-pay-note {
  margin: 0;
  color: #5a4634;
  font-size: 0.9rem;
  text-align: center;
}

body.page--body .bc-pay-btn {
  text-align: center;
}

body.page--body .bc-pay-btn__title {
  font-weight: 600;
}

body.page--body .bc-pay-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

body.page--body .bc-pay-badges img {
  height: 32px;
  width: auto;
  display: block;
}

body.page--body .bc-pay-modal .btn-close {
  opacity: 0.6;
}

body.page--body .bc-pay-modal .btn-close:hover {
  opacity: 1;
}

/* Bootstrap modal minimal styles (scoped to avoid layout conflicts) */
body.page--body .modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

body.page--body .modal.fade {
  transition: opacity 0.2s ease;
}

body.page--body .modal.fade .modal-dialog {
  transition: transform 0.2s ease;
  transform: translateY(-12px);
}

body.page--body .modal.show {
  display: block;
  opacity: 1;
}

body.page--body .modal.show .modal-dialog {
  transform: translateY(0);
}

body.page--body .modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
  max-width: 720px;
  padding: 0 1.25rem;
}

body.page--body .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

body.page--body .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

body.page--body .modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(17, 12, 9, 0.65);
}

body.page--body .modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.page--body .modal-backdrop.show {
  opacity: 1;
}

body.page--body .modal-header,
body.page--body .modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.page--body .modal-header {
  border-radius: 20px 20px 0 0;
}

body.page--body .modal-footer {
  border-radius: 0 0 20px 20px;
}

body.page--body .btn-close {
  background: transparent;
  border: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

body.page--body .btn-close::before,
body.page--body .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: #5a4634;
  transform-origin: center;
}

body.page--body .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.page--body .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.page--body.modal-open {
  overflow: hidden;
}

body.page--body .bc-btn--primary {
  background: #2a1f18;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(33, 24, 16, 0.18);
}

body.page--body .bc-btn--outline {
  background: transparent;
  color: #2a1f18;
  border: 1px solid #2a1f18;
}

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

body.page--body .bc-microcopy {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #5a4634;
}

@media (min-width: 992px) {
  body.page--body .bc-row {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }

  body.page--body .bc-card {
    position: sticky;
    top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__scroll span:last-child {
    animation: none !important;
  }
}


.field textarea {
  resize: vertical;
}
