:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --ink-muted: #3d3d3d;
  --paper: #f6f3ea;
  --gold: #c9a15b;
  --rust: #9c5b3a;
  --sage: #5a6f5f;
  --accent: #23424f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 25, 15, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fef8e8 0%, #f4efe4 35%, #efe9db 100%);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: float 14s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #f9db9b 0%, rgba(249, 219, 155, 0) 70%);
  top: -120px;
  left: -80px;
}

.orb-b {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #d6b6a1 0%, rgba(214, 182, 161, 0) 70%);
  bottom: -180px;
  right: -140px;
  animation-delay: -4s;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #a8c0b1 0%, rgba(168, 192, 177, 0) 70%);
  top: 48%;
  left: 55%;
  animation-delay: -7s;
}

.site-header {
  padding: 28px 6vw 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(35, 66, 79, 0.12);
  background: #fffaf0;
}

.logo-text {
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(200px, 28vw, 320px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 66, 79, 0.12);
  margin-bottom: 18px;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 4s linear infinite;
}

.hero-slider img:nth-child(2) {
  animation-delay: -2s;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 10px;
}

.lead {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(35, 66, 79, 0.25);
}

.btn-secondary {
  background: var(--gold);
  color: #2a231a;
  width: 100%;
}

.btn-ghost {
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: var(--ink);
}

.btn-link {
  background: transparent;
  padding: 12px 0;
  border-radius: 0;
  color: var(--rust);
  position: relative;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.trust-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-media {
  display: grid;
  gap: 16px;
  align-items: start;
}

.hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 66, 79, 0.12);
}

.hero-badge {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(35, 66, 79, 0.08);
}

.badge-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.badge-note {
  margin: 0;
  color: var(--ink-muted);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(156, 91, 58, 0.1);
}

.card-top {
  padding: 26px;
  background: linear-gradient(140deg, #fff7e4, #f2e4c6);
}

.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rust);
}

.card-title {
  font-size: 1.8rem;
  color: #2b241c;
  margin-bottom: 6px;
}

.card-body {
  padding: 24px 26px 28px;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.card-body li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-muted);
}

.card-body li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 5px;
}

.section {
  padding: 70px 6vw;
}

.section-head {
  max-width: 620px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0 12px;
}

.media-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(35, 66, 79, 0.1);
  box-shadow: 0 12px 24px rgba(35, 66, 79, 0.12);
}

.tile {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(35, 66, 79, 0.08);
  box-shadow: 0 12px 24px rgba(35, 66, 79, 0.08);
  transition: transform 0.2s ease;
}

.tile:hover {
  transform: translateY(-4px);
}

.steps {
  background: linear-gradient(120deg, rgba(35, 66, 79, 0.08), rgba(201, 161, 91, 0.18));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.step {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rust);
}

.contact {
  background: #f9f5ea;
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-info {
  margin-top: 24px;
  background: rgba(35, 66, 79, 0.06);
  border-radius: 16px;
  padding: 18px;
}

.info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage);
  margin-bottom: 4px;
}

.info-value {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-step {
  display: grid;
  gap: 16px;
}

.is-hidden {
  display: none;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.otp-input {
  letter-spacing: 6px;
  text-align: center;
  font-weight: 600;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  font-family: inherit;
  background: #fdfcf9;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.success-title {
  margin: 0;
  font-size: 1.4rem;
}

.success-text {
  margin-bottom: 16px;
}

.success-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.step-5 {
  text-align: center;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(35, 66, 79, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.success-note {
  margin-top: 10px;
  color: var(--ink-muted);
}

.countdown {
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}

.assurance {
  padding-top: 20px;
}

.assurance-card {
  background: linear-gradient(120deg, #23424f, #395b4f);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.assurance-card p {
  color: rgba(255, 255, 255, 0.8);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.site-footer {
  padding: 24px 6vw 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.image-credit {
  font-size: 0.85rem;
  color: var(--ink-muted);
  max-width: 520px;
}

.image-credit a {
  text-decoration: underline;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-secondary {
    width: auto;
  }

  .contact-inner {
    padding: 24px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-slider {
    height: 220px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-actions .btn {
    width: 100%;
  }
}
