: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;
}

* {
  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 {
  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);
}

.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.85rem 1.8rem;
  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;
  font-size: 1.05rem;
}

.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;
}

.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__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);
}

.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));
}

.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;
}

.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__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;
}

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

@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;
  }

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

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

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

@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
}

[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);
}

@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;
  }
}
