:root {
  --gold: #C9A84C;
  --gold-light: #E8D09A;
  --gold-pale: #F5EDD6;
  --deep: #0D1117;
  --ink: #1A1F2E;
  --sage: #3D5A4F;
  --sage-light: #6B8F80;
  --cream: #FAF6EE;
  --text: #2C2C2C;
  --muted: #6B6B6B;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--deep);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: #71b3d163;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: multiply;
}

.hero-lines {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 0 5vw;
  padding-top: 100px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(61, 90, 79, 0.4);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--sage);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 901px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
}

.btn-primary {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 31, 46, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ── HERO IMAGE ── */
.hero-image-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: min(580px, 48vw);
  overflow: hidden;
  z-index: 1;
  animation: imgReveal 1.6s cubic-bezier(0.4, 0, 0.2, 1) both 0.3s;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
      #6d7881 0%,
      rgba(109, 120, 129, 0.4) 30%,
      transparent 60%);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
      #6d7881 0%,
      transparent 35%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) brightness(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-img {
  transform: scale(1.04);
}

/* Gold ring overlay on image */
.hero-ring {
  position: absolute;
  z-index: 3;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(460px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  animation: ringPulse 5s ease-in-out infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  animation: ringPulse 7s ease-in-out infinite reverse;
}

/* Gold accent line on image edge */
.hero-image-wrap .gold-accent {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  z-index: 4;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}

@keyframes imgReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-51%) scale(1.015);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SCROLL INDICATOR ── */
.scroll-ind {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 31, 46, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(26, 31, 46, 0.5), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 5vw;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--sage);
  font-style: italic;
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── WELCOME BANNER ── */
.welcome {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 90, 79, 0.3), transparent 60%);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.3;
  padding-top: 1rem;
}

.welcome-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-style: normal;
}

.welcome-text {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  font-weight: 300;
}

.welcome-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.promise-list {
  list-style: none;
  margin-top: 1.8rem;
}

.promise-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.promise-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.promise-list strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  background: var(--sage);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.3) 0%, rgba(13, 17, 23, 0.5) 100%);
}

.about-visual-symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.08);
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--gold);
  color: var(--deep);
  padding: 1.2rem 1.8rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0;
}

.about-content {
  padding-top: 1rem;
}

.wisdom-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.wisdom-tag {
  padding: 0.4rem 1rem;
  background: white;
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--sage);
}

/* ── FIVE DIMENSIONS ── */
.dimensions {
  background: #f5f0e8;
}

.dimensions-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.dimensions-header .divider {
  margin: 2rem auto;
}

.dims-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dim-card {
  background: white;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.dim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dim-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.dim-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.dim-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── COURSE MODULES ── */
.modules {
  background: var(--deep);
}

.modules-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.modules-header .section-title {
  color: #fff;
}

.modules-header .section-title em {
  color: var(--gold);
}

.mod-list {
  max-width: 900px;
}

.mod-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.3s;
}

.mod-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.mod-item:hover .mod-num {
  color: var(--gold);
}

.mod-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  transition: color 0.3s;
}

.mod-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.mod-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.mod-content .mod-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mod-expand {
  display: none;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mod-expand.open {
  display: block;
}

.mod-outcomes {
  list-style: none;
}

.mod-outcomes li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
  position: relative;
}

.mod-outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── HOW WE WORK ── */
.how {
  background: var(--cream);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
}

.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-invest {
  background: var(--ink);
  padding: 3rem;
  color: white;
}

.how-invest h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.invest-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.invest-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

.invest-features {
  list-style: none;
  margin-bottom: 2rem;
}

.invest-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  gap: 0.8rem;
}

.invest-features li::before {
  content: '✓';
  color: var(--gold);
}

.delivery-modes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.mode-tag {
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

/* ── SELF ASSESSMENT CTA ── */
.assessment {
  background: var(--sage);
  text-align: center;
  padding: 5rem 5vw;
}

.assessment .section-title {
  color: white;
}

.assessment .section-title em {
  color: var(--gold-light);
}

.assessment .section-body {
  color: rgba(255, 255, 255, 0.65);
  margin: 1.5rem auto 2.5rem;
  text-align: left;
  display: inline-block;
}

.assessment .divider {
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.3);
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--gold-pale);
  padding: 5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-inner {
  max-width: 700px;
  text-align: center;
}

.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 2rem;
}

.test-quote::before {
  content: '\201C';
  color: var(--gold);
}

.test-quote::after {
  content: '\201D';
  color: var(--gold);
}

.test-author {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── CONTACT ── */
.contact {
  background: var(--ink);
  padding: 6rem 5vw;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title {
  color: #fff;
}

.contact-info .section-title em {
  color: var(--gold);
}

.contact-info .section-body {
  color: rgba(255, 255, 255, 0.5);
}

.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-item-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.contact-item-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.contact-item-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.form-row {
  margin-bottom: 1.2rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.25s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
}

.form-row textarea {
  height: 120px;
  resize: vertical;
}

.form-row select {
  appearance: none;
}

.form-row select option {
  background: var(--ink);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 3rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

footer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {

  .welcome-grid,
  .about-grid,
  .how-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dims-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-wrap {
    width: 100%;
    opacity: 0.4;
  }

  .hero-image-wrap::before {
    background: linear-gradient(to right, #000000 0%, #313b44 100%);
    opacity: 0.5;
  }

  .hero-ring {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .about-badge {
    right: 1rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .dims-grid {
    grid-template-columns: 1fr;
  }

  .form-2col {
    grid-template-columns: 1fr;
  }
}

/* ── REVEAL ANIMATION ── */
/* Visible by default — JS enables animation after page load */
.reveal {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: none;
}