:root {
  --ink: #221b17;
  --forest: #21382f;
  --moss: #627560;
  --clay: #a65438;
  --terracotta: #c9744d;
  --gold: #d7b56d;
  --bone: #f5efe4;
  --linen: #fbf7ef;
  --mist: #e7ddce;
  --teal: #496f68;
  --shadow: 0 18px 48px rgba(34, 27, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--bone);
  background: linear-gradient(180deg, rgba(34, 27, 23, 0.76), rgba(34, 27, 23, 0.16) 72%, rgba(34, 27, 23, 0));
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  width: min(230px, 42vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a,
.header-cta {
  opacity: 0.9;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(245, 239, 228, 0.65);
  border-radius: 999px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 27, 23, 0.84), rgba(34, 27, 23, 0.48) 45%, rgba(34, 27, 23, 0.08)),
    linear-gradient(180deg, rgba(34, 27, 23, 0.1), rgba(34, 27, 23, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 92px;
  padding-bottom: clamp(52px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 13.6ch;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 5.8vw, 5.9rem);
  line-height: 1.01;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.25rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(245, 239, 228, 0.86);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.secondary {
  border-color: rgba(245, 239, 228, 0.7);
  color: var(--bone);
}

.button.tertiary {
  background: var(--forest);
  color: var(--bone);
}

.dark-button {
  background: var(--forest);
  color: var(--bone);
}

.whatsapp-button {
  background: var(--teal);
  color: var(--bone);
}

.dark-outline {
  border-color: rgba(34, 27, 23, 0.28);
  color: var(--ink);
}

.section,
.split-section,
.contact-section,
.intro-band,
.about-section,
.ritual-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--forest);
  color: var(--bone);
}

.about-section {
  background:
    linear-gradient(135deg, rgba(98, 117, 96, 0.14), rgba(215, 181, 109, 0.08)),
    var(--linen);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 27, 23, 0.04), rgba(34, 27, 23, 0.36)),
    url("assets/encuentro-grupo.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 239, 228, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 239, 228, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.34;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 239, 228, 0.48);
  border-radius: 6px;
}

.portrait-orb {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(34, 27, 23, 0), rgba(34, 27, 23, 0.08)),
    url("assets/rox-portrait.jpeg") center / cover;
  color: var(--bone);
  backdrop-filter: blur(10px);
}

.portrait-orb span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about-copy p {
  color: rgba(34, 27, 23, 0.7);
  font-size: 1.04rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 27, 23, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 252, 246, 0.76);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section-heading {
  max-width: 740px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-heading p {
  color: rgba(34, 27, 23, 0.68);
  font-size: 1.05rem;
}

.section-heading.light p {
  color: rgba(245, 239, 228, 0.75);
}

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

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

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 181, 109, 0.18), transparent 34%),
    radial-gradient(circle at 88% 36%, rgba(73, 111, 104, 0.14), transparent 30%),
    linear-gradient(180deg, #fbf7ef, #f3ebdd);
}

.service-card,
.experience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(34, 27, 23, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 246, 0.88), rgba(245, 239, 228, 0.76));
  box-shadow: 0 10px 34px rgba(34, 27, 23, 0.06);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -35% 38%;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.32), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 48%);
  pointer-events: none;
}

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

.service-energy::before {
  background: radial-gradient(circle, rgba(215, 181, 109, 0.36), transparent 66%);
}

.service-maya::before {
  background: radial-gradient(circle, rgba(73, 111, 104, 0.28), transparent 66%);
}

.service-tarot::before {
  background: radial-gradient(circle, rgba(166, 84, 56, 0.28), transparent 66%);
}

.service-lineage::before {
  background: radial-gradient(circle, rgba(98, 117, 96, 0.3), transparent 66%);
}

.service-candle::before {
  background: radial-gradient(circle, rgba(201, 116, 77, 0.3), transparent 66%);
}

.service-card.highlighted {
  background:
    linear-gradient(145deg, rgba(33, 56, 47, 0.96), rgba(34, 27, 23, 0.92));
  color: var(--bone);
}

.service-card p,
.experience-grid p {
  margin-bottom: 0;
  color: rgba(34, 27, 23, 0.66);
}

.service-card.highlighted p {
  color: rgba(245, 239, 228, 0.72);
}

.service-kicker {
  display: block;
  margin-bottom: 26px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlighted .service-kicker {
  color: var(--gold);
}

.split-section {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.18), rgba(73, 111, 104, 0.08)),
    var(--bone);
}

.ritual-section {
  background:
    linear-gradient(135deg, rgba(33, 56, 47, 0.94), rgba(34, 27, 23, 0.9)),
    linear-gradient(180deg, rgba(34, 27, 23, 0.16), rgba(34, 27, 23, 0.62)),
    url("assets/hero-rox-experiences.png") center / cover;
  color: var(--bone);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.ritual-copy p {
  max-width: 650px;
  color: rgba(245, 239, 228, 0.75);
  font-size: 1.04rem;
}

.download-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.download-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.06);
}

.download-list span {
  color: var(--gold);
  font-weight: 800;
}

.download-list p {
  margin: 0;
}

.download-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.download-form label {
  color: rgba(245, 239, 228, 0.78);
}

.download-form input,
.download-form select {
  border-color: rgba(245, 239, 228, 0.18);
  background: rgba(255, 252, 246, 0.94);
}

.form-title {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-copy p {
  max-width: 570px;
  color: rgba(34, 27, 23, 0.68);
}

.list-panel {
  display: grid;
  gap: 10px;
}

.list-panel p {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--clay);
  background: rgba(255, 252, 246, 0.8);
  box-shadow: 0 8px 24px rgba(34, 27, 23, 0.05);
}

.earth {
  background: #211915;
  color: var(--bone);
}

.encounters-section {
  position: relative;
  overflow: hidden;
}

.encounters-section .section-inner {
  position: relative;
  z-index: 1;
}

.encounter-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 4.4vw, 56px);
  align-items: center;
  margin-bottom: clamp(26px, 5vw, 52px);
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.055);
  backdrop-filter: blur(10px);
}

.encounter-proof img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 56%;
  border-radius: 6px;
}

.encounter-proof h3 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
}

.encounter-proof p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(245, 239, 228, 0.74);
}

.memory-gallery {
  overflow: hidden;
  margin-top: clamp(34px, 6vw, 72px);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.memory-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 18px;
}

.memory-heading h3 {
  width: 100%;
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.memory-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scrollbar-color: rgba(215, 181, 109, 0.55) rgba(245, 239, 228, 0.08);
  scroll-snap-type: x mandatory;
}

.memory-track.is-animated {
  width: max-content;
  overflow: visible;
  padding-bottom: 4px;
  animation: memory-carousel 78s linear infinite;
  will-change: transform;
}

.memory-track.is-animated:hover {
  animation-play-state: paused;
}

.memory-track figure {
  position: relative;
  flex: 0 0 clamp(220px, 22vw, 310px);
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.06);
  scroll-snap-align: start;
}

.memory-track img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@keyframes memory-carousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .memory-track {
    width: auto;
    animation: none;
  }
}

.experience-grid article {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: clamp(20px, 2.2vw, 28px);
  border-color: rgba(245, 239, 228, 0.14);
  background: rgba(245, 239, 228, 0.06);
}

.experience-grid h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1.15;
}

.experience-grid p {
  flex: 1;
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.98rem;
}

.experience-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(215, 181, 109, 0.48);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(251, 247, 239, 0.94), rgba(231, 221, 206, 0.86)),
    url("assets/hero-rox-experiences.png") center / cover;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(34, 27, 23, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(166, 84, 56, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.contact-copy p {
  color: rgba(34, 27, 23, 0.68);
  font-size: 1.04rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(34, 27, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(34, 27, 23, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(34, 27, 23, 0.16);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--forest);
  color: rgba(245, 239, 228, 0.76);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--bone);
  box-shadow: 0 14px 34px rgba(34, 27, 23, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
}

.library-preview {
  background:
    radial-gradient(circle at 8% 16%, rgba(215, 181, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf7ef, #f2eadc);
}

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

.library-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(34, 27, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 12px 34px rgba(34, 27, 23, 0.08);
}

.library-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.library-card div {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 24px;
}

.library-card p:not(.eyebrow) {
  color: rgba(34, 27, 23, 0.68);
}

.library-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--clay);
  font-size: 0.92rem;
  font-weight: 850;
}

.library-button {
  margin-top: 28px;
}

.library-page,
.article-page {
  background: var(--linen);
}

.library-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(132px, 17vw, 188px) clamp(18px, 4vw, 56px) clamp(72px, 10vw, 124px);
  background:
    linear-gradient(100deg, rgba(34, 27, 23, 0.86), rgba(33, 56, 47, 0.72)),
    url("assets/hero-rox-experiences.png") center / cover;
  color: var(--bone);
}

.library-hero .section-inner {
  position: relative;
  z-index: 1;
}

.library-hero h1 {
  max-width: 12ch;
}

.library-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(245, 239, 228, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.library-list-section {
  background:
    linear-gradient(135deg, rgba(98, 117, 96, 0.12), rgba(215, 181, 109, 0.08)),
    var(--linen);
}

.library-list {
  display: grid;
  gap: clamp(26px, 5vw, 52px);
}

.library-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(34, 27, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.library-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.library-feature h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
}

.library-feature p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(34, 27, 23, 0.68);
}

.article-shell {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(245, 239, 228, 0.96)),
    url("assets/hero-rox-experiences.png") center top / cover fixed;
}

.article-hero {
  display: grid;
  gap: 22px;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(132px, 16vw, 178px) 0 clamp(40px, 8vw, 76px);
}

.article-hero h1 {
  max-width: 12.5ch;
  color: var(--ink);
}

.article-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(34, 27, 23, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.article-hero img {
  width: 100%;
  max-height: 520px;
  border: 1px solid rgba(34, 27, 23, 0.1);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-hero .article-symbol-image {
  max-height: 560px;
  object-fit: contain;
  background: rgba(255, 252, 246, 0.88);
  padding: clamp(16px, 3vw, 36px);
}

.article-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(72px, 10vw, 132px);
}

.article-content p {
  color: rgba(34, 27, 23, 0.72);
  font-size: 1.08rem;
}

.article-content h2 {
  margin-top: clamp(34px, 5vw, 56px);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.article-note {
  margin: 34px 0;
  padding: 20px;
  border-left: 3px solid var(--clay);
  background: rgba(255, 252, 246, 0.72);
}

.article-note p {
  margin: 0;
}

.article-cta {
  margin-top: clamp(42px, 7vw, 72px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(33, 56, 47, 0.96), rgba(34, 27, 23, 0.92));
  color: var(--bone);
}

.article-resource-cta {
  margin-top: 18px;
  background:
    linear-gradient(145deg, rgba(166, 84, 56, 0.92), rgba(98, 117, 96, 0.9));
}

.article-cta h2 {
  margin-top: 0;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.article-cta .button {
  margin-top: 8px;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(251, 247, 239, 0.9), rgba(231, 221, 206, 0.82)),
    url("assets/hero-rox-experiences.png") center / cover;
}

.thanks-shell {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 36px;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.thanks-logo {
  width: min(260px, 70vw);
}

.thanks-logo img {
  width: 100%;
}

.thanks-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(34, 27, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.thanks-card h1 {
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.thanks-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(34, 27, 23, 0.68);
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(34, 27, 23, 0.72), rgba(34, 27, 23, 0.44)),
      linear-gradient(90deg, rgba(34, 27, 23, 0.72), rgba(34, 27, 23, 0.28));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 82px;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .intro-grid,
  .split-grid,
  .contact-grid,
  .about-grid,
  .ritual-grid,
  .encounter-proof {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    min-height: 440px;
  }

  .service-grid,
  .experience-grid,
  .library-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memory-heading {
    display: block;
  }

  .library-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: inline;
  }

  .brand {
    width: 176px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero {
    min-height: 94vh;
    align-items: flex-end;
    padding-bottom: 36px;
  }

  .hero-image {
    object-position: 63% center;
  }

  h1 {
    max-width: 10.5ch;
    font-size: 3rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .experience-grid,
  .library-card-grid {
    grid-template-columns: 1fr;
  }

  .memory-track {
    grid-auto-columns: minmax(230px, 78vw);
  }

  .service-card,
  .experience-grid article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .portrait-frame {
    min-height: 360px;
  }

  .download-list article {
    grid-template-columns: 38px 1fr;
  }

  .library-card div {
    min-height: auto;
  }

  .library-card img {
    height: 200px;
  }

  .article-hero h1,
  .library-hero h1 {
    max-width: 11ch;
  }
}
