@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap");

:root {
  --plum: #130815;
  --plum-2: #260b22;
  --burgundy: #5f122e;
  --burgundy-2: #7f1f3d;
  --gold: #d7aa4a;
  --gold-2: #f1d37a;
  --ivory: #fff7e9;
  --cream: #f5ead3;
  --rose: #bd7c83;
  --ink: #211419;
  --muted: #bfa99a;
  --line: rgba(215, 170, 74, 0.4);
  --line-soft: rgba(215, 170, 74, 0.18);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  --shadow-lift: 0 40px 90px rgba(0, 0, 0, 0.5);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.68, 0.18, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(127, 31, 61, 0.32), transparent 30rem),
    radial-gradient(circle at 86% 0%, rgba(215, 170, 74, 0.1), transparent 26rem),
    linear-gradient(180deg, #0f0711 0%, #1b0919 42%, #120711 100%);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
}

/* ---------- Header / Nav ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(18px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(15, 7, 17, 0.72);
  backdrop-filter: blur(18px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.topbar.is-scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  background: rgba(12, 6, 14, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: box-shadow 0.4s var(--ease);
}

.brand:hover .brand-mark {
  box-shadow: 0 0 0 4px rgba(215, 170, 74, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 247, 233, 0.82);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width 0.35s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-2);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.footer a:hover {
  color: var(--gold-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(19, 8, 21, 0.6);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--gold-2);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 13px 26px;
  background: linear-gradient(180deg, #f2d579, #bf8129);
  color: #1f1011;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(191, 129, 41, 0.32);
}

.button.secondary {
  background: transparent;
  color: var(--ivory);
}

.button.secondary:hover {
  background: rgba(215, 170, 74, 0.1);
  box-shadow: none;
}

.button.text {
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gold-2);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 73px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: -10% -10% 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(127, 31, 61, 0.5), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(95, 18, 46, 0.4), transparent 70%);
  will-change: transform;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -8%;
  z-index: 0;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 211, 122, 0.16), transparent 64%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 88px) 0;
}

.hero-compact {
  min-height: auto;
}

.hero-compact .hero-inner {
  padding: clamp(44px, 7vh, 80px) 0;
}

.hero-visuals-single {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: 0.01em;
}

.lead {
  max-width: 56ch;
  margin: 20px 0 0;
  color: rgba(255, 247, 233, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 300;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.hero-proof span {
  display: block;
  min-height: 92px;
  padding: 18px;
  background: rgba(19, 8, 21, 0.7);
  color: rgba(255, 247, 233, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

/* Video / image hero background (custom-website) */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 7, 17, 0.95) 0%, rgba(15, 7, 17, 0.78) 42%, rgba(15, 7, 17, 0.34) 100%),
    linear-gradient(180deg, rgba(15, 7, 17, 0.2), rgba(15, 7, 17, 0.86));
}

/* Ornate framed panel (thank-you, custom hero card) */
.ornate-panel {
  position: relative;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(19, 8, 21, 0.7);
  box-shadow: var(--shadow);
}

.ornate-panel::before,
.ornate-panel::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-color: var(--gold);
  opacity: 0.7;
}

.ornate-panel::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.ornate-panel::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.ornate-panel img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.hero-card {
  align-self: center;
}

.hero-card img {
  aspect-ratio: 4 / 5;
}

/* ---------- Hero visuals: Bundle + Custom Website ---------- */
.hero-visuals {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.visual-card {
  position: relative;
  margin: 0;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(33, 12, 30, 0.72), rgba(15, 7, 17, 0.82));
  box-shadow: var(--shadow);
  will-change: transform;
}

.visual-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.visual-price {
  position: absolute;
  top: -14px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(180deg, #2a0c24, #160812);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

/* Bundle: fanned card stack */
.visual-bundle {
  transform: translateY(14px);
}

.card-stack {
  position: relative;
  height: 230px;
}

.card-stack img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64%;
  aspect-ratio: 3 / 4.1;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  transform-origin: bottom center;
}

.card-stack img:nth-child(1) {
  transform: translateX(-50%) rotate(-11deg) translateY(8px);
  filter: brightness(0.82);
}

.card-stack img:nth-child(2) {
  transform: translateX(-50%) rotate(0deg);
  z-index: 2;
}

.card-stack img:nth-child(3) {
  transform: translateX(-50%) rotate(11deg) translateY(8px);
  filter: brightness(0.82);
}

/* Custom Website: phone device frame */
.device-phone {
  position: relative;
  width: min(100%, 196px);
  margin: 6px auto 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(160deg, #1d0a1a, #0b050d);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.device-phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(215, 170, 74, 0.55);
  z-index: 3;
}

.device-phone img {
  width: 100%;
  aspect-ratio: 9 / 18.5;
  border-radius: 18px;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.section.flush-hero {
  padding-top: clamp(20px, 3vw, 40px);
}

.section.wide {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 233, 0.05);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 247, 233, 0.68);
}

/* ---------- Offer grid ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offer-card,
.feature-card,
.faq-item,
.checkout-summary,
.form-shell {
  border: 1px solid var(--line-soft);
  background: rgba(19, 8, 21, 0.62);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.offer-card {
  display: grid;
  min-height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.offer-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.offer-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.offer-body,
.feature-card,
.faq-item,
.checkout-summary,
.form-shell {
  padding: clamp(22px, 3vw, 32px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag {
  border: 1px solid rgba(215, 170, 74, 0.34);
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 247, 233, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.price-ribbon {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.price-ribbon span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 247, 233, 0.66);
}

.price {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
}

/* ---------- Split / showcase ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.showcase {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  align-items: center;
}

.showcase img {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.showcase img:first-child {
  transform: translateY(28px);
}

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

.feature-card {
  border-radius: 6px;
}

.feature-card p,
.offer-card p,
.checkout-summary p,
.faq-item p,
.legal p,
.legal li {
  color: rgba(255, 247, 233, 0.72);
}

.feature-card ul,
.offer-card ul,
.legal ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 247, 233, 0.76);
}

.feature-card li,
.offer-card li,
.legal li {
  margin: 8px 0;
}

/* ---------- Ivory band ---------- */
.ivory-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
}

.ivory-band .section {
  color: var(--ink);
}

.ivory-band .eyebrow,
.ivory-band .price {
  color: var(--burgundy);
}

.ivory-band p,
.ivory-band li {
  color: rgba(33, 20, 25, 0.74);
}

.ivory-band .price-ribbon span {
  color: rgba(33, 20, 25, 0.6);
}

.template-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.template-strip img {
  min-width: 130px;
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(95, 18, 46, 0.28);
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.template-strip img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(95, 18, 46, 0.3);
}

/* ---------- Checkout / forms ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.checkout-summary {
  border-radius: 6px;
}

.form-shell {
  border-radius: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vls-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 247, 233, 0.82);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(215, 170, 74, 0.32);
  border-radius: 4px;
  padding: 12px 14px;
  background: rgba(255, 247, 233, 0.06);
  color: var(--ivory);
  font: inherit;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 170, 74, 0.14);
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: auto;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-2);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 6px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 36px max(18px, calc((100% - 1180px) / 2));
  background: #0f0711;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  color: rgba(255, 247, 233, 0.62);
}

.footer-inner > span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255, 247, 233, 0.76);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ---------- Legal ---------- */
.legal {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0;
}

.legal h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.legal h2 {
  margin-top: 36px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 73px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px max(18px, calc((100% - 1180px) / 2)) 22px;
    background: rgba(12, 6, 14, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.86rem;
  }

  .hero-inner,
  .split,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visuals {
    max-width: 460px;
    margin-top: 8px;
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions,
  .price-ribbon,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    text-align: left;
  }

  .button,
  button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .showcase {
    grid-template-columns: 1fr 1fr;
  }

  .card-stack {
    height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg,
  [data-parallax] {
    transform: none !important;
  }
}
