:root {
  --gold: #d4a853;
  --gold-bright: #e8c872;
  --gold-dark: #b08a3a;
  --peach: #d4897a;
  --peach-warm: #e0a06c;
  --ink: #2c2825;
  --ink-soft: #8a837c;
  --cream: #fdf6e8;
  --surface: rgba(44, 40, 37, 0.42);
  --cta: #2c2825;
  --cta-text: #fdf6e8;
  --font-display: "Fraunces", "Songti SC", "Noto Serif SC", Georgia, serif;
  --font-body: "DM Sans", "PingFang SC", "Noto Sans SC", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background: #2c2825;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(44, 40, 37, 0.15) 0%, rgba(44, 40, 37, 0.25) 40%, rgba(44, 40, 37, 0.82) 78%, rgba(44, 40, 37, 0.94) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.brand-mark img {
  width: 3rem;
  height: 3rem;
  animation: softPulse 4.5s ease-in-out infinite;
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.tagline {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(253, 246, 232, 0.82);
  font-weight: 400;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.75rem;
}

.cta {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--peach-warm));
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover:not(:disabled):not(.is-disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 168, 83, 0.38);
}

.cta:active:not(:disabled):not(.is-disabled) {
  transform: translateY(0);
}

.cta:disabled,
.cta.is-disabled {
  cursor: not-allowed;
  filter: grayscale(0.35) brightness(0.85);
  box-shadow: none;
  opacity: 0.72;
}

.cta-hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(253, 246, 232, 0.65);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 246, 232, 0.45);
  writing-mode: vertical-rl;
  animation: fadeBob 2.8s ease-in-out infinite;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(232, 200, 114, 0.12), transparent 55%),
    radial-gradient(90% 70% at 100% 20%, rgba(212, 137, 122, 0.12), transparent 50%),
    #1f1c1a;
}

.section--tight {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.about-text {
  margin: 0 0 1rem;
  color: rgba(253, 246, 232, 0.78);
  line-height: 1.65;
  font-size: 1.02rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.section__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--cream);
}

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

.steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.steps .num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--peach));
}

.steps p {
  margin: 0.15rem 0 0;
  color: rgba(253, 246, 232, 0.78);
  line-height: 1.55;
  font-size: 1rem;
}

.steps strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 246, 232, 0.12);
  color: rgba(253, 246, 232, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

.meta a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer {
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem) 2rem;
  background: #1a1715;
  color: rgba(253, 246, 232, 0.4);
  font-size: 0.8rem;
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(232, 200, 114, 0));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(232, 200, 114, 0.35));
  }
}

@keyframes fadeBob {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateY(6px);
  }
}

@media (min-width: 900px) {
  .hero {
    justify-content: center;
    padding-left: clamp(3rem, 8vw, 7rem);
  }

  .hero__content {
    max-width: 28rem;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(44, 40, 37, 0.88) 0%, rgba(44, 40, 37, 0.55) 42%, rgba(44, 40, 37, 0.18) 70%, rgba(44, 40, 37, 0.05) 100%),
      linear-gradient(180deg, rgba(44, 40, 37, 0.1) 0%, rgba(44, 40, 37, 0.35) 100%);
  }

  .scroll-cue {
    writing-mode: horizontal-tb;
  }
}

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