:root {
  --bg: #f6efe3;
  --bg-soft: #efe5d6;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-deep: #fffaf3;
  --text: #16263b;
  --text-soft: #516072;
  --navy: #16314d;
  --navy-strong: #0d2136;
  --teal: #2f8f83;
  --teal-soft: #8fd1c0;
  --gold: #bf7b2f;
  --gold-soft: #e7c28f;
  --line: rgba(22, 49, 77, 0.12);
  --shadow: 0 28px 70px rgba(16, 29, 46, 0.14);
  --shadow-soft: 0 18px 45px rgba(16, 29, 46, 0.08);
  --radius-lg: 26px;
  --radius-xl: 38px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(191, 123, 47, 0.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(47, 143, 131, 0.18), transparent 22%),
    linear-gradient(180deg, #fbf7f1 0%, #f5ecdf 44%, #f8f2e9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 49, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 49, 77, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 92%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--navy), var(--teal));
  box-shadow: 0 16px 34px rgba(22, 49, 77, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3,
.contact-routing strong,
.footer-brand strong {
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 18px 38px rgba(22, 49, 77, 0.2);
}

.button--secondary,
.button--ghost {
  color: var(--navy-strong);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(22, 49, 77, 0.1);
}

.button--full {
  width: 100%;
}

.section {
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 136px);
}

.eyebrow,
.offer-kicker,
.step-card span,
.promise-card span,
.hero-frame figcaption span,
.seal-card span,
.floating-card span,
.offers-visual__copy span,
.contact-routing span,
.channel-card span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.offer-kicker,
.step-card span,
.promise-card span {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.96;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.15;
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-text,
.section-head p,
.offer-card p,
.promise-card p,
.step-card p,
.trust-card p,
.contact-panel p,
.contact-note p,
.footer-brand p,
.offers-visual__copy p,
.brand-copy span {
  color: var(--text-soft);
}

.hero-text {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.hero-signals,
.promise-grid,
.offers-grid,
.step-list,
.trust-grid,
.channel-list {
  display: grid;
  gap: 16px;
}

.hero-signals {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.signal-card,
.promise-card,
.offer-card,
.step-card,
.trust-card,
.contact-panel,
.offers-visual,
.legal-shell section,
.legal-header,
.footer-brand,
.footer-links {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.signal-card,
.promise-card,
.offer-card,
.step-card,
.trust-card,
.contact-panel,
.offers-visual,
.legal-shell section,
.legal-header,
.footer-brand,
.footer-links {
  border-radius: var(--radius-lg);
}

.signal-card {
  padding: 20px;
}

.signal-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-strong);
}

.signal-card span {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.72fr);
  gap: 18px;
  align-items: end;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 35, 0.05), rgba(10, 22, 35, 0.48));
}

.hero-frame img,
.method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame--main {
  height: 650px;
}

.hero-frame--secondary {
  height: 250px;
}

.hero-frame figcaption,
.method-visual figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(10, 22, 35, 0.5);
  backdrop-filter: blur(14px);
}

.hero-frame figcaption span,
.seal-card span,
.floating-card span,
.offers-visual__copy span,
.contact-routing span,
.channel-card span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-stack {
  display: grid;
  gap: 18px;
  align-self: center;
}

.seal-card,
.floating-card,
.contact-note {
  position: relative;
  overflow: hidden;
  background: rgba(12, 30, 47, 0.9);
  color: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.seal-card::before,
.floating-card::before,
.contact-note::before {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 209, 192, 0.24), transparent 65%);
}

.seal-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  animation: drift 7s ease-in-out infinite;
}

.seal-card img {
  width: 100%;
  max-width: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.seal-card strong,
.floating-card strong,
.contact-note strong {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  line-height: 1.5;
}

.seal-card div,
.contact-note p {
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  left: 30px;
  bottom: 26px;
  width: min(280px, calc(100% - 60px));
  padding: 20px 22px;
  animation: drift 8.5s ease-in-out infinite;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-card,
.offer-card,
.step-card,
.trust-card {
  padding: 28px;
}

.promise-card span {
  margin-bottom: 14px;
}

.promise-card h3,
.offer-card h3,
.step-card h3,
.trust-card h3 {
  margin-bottom: 12px;
}

.offers-layout,
.method-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}

.offers-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.offers-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(255, 247, 237, 0.78));
}

.offers-visual {
  padding: 24px;
  display: grid;
  gap: 22px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(247, 238, 224, 0.9));
}

.offers-visual img {
  border-radius: 30px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.offers-visual__copy {
  padding: 0 4px;
}

.offers-visual__copy span,
.contact-routing span,
.channel-card span {
  color: var(--gold);
}

.method-layout {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
}

.step-list {
  margin-top: 8px;
}

.step-card {
  position: relative;
  padding-left: 30px;
}

.step-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(191, 123, 47, 0));
}

.method-visual {
  position: relative;
  overflow: hidden;
  height: 680px;
  margin: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.method-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 35, 0.04), rgba(10, 22, 35, 0.54));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 238, 0.8));
}

.contact-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.contact-panel {
  padding: 34px;
}

.contact-panel--form {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(250, 242, 230, 0.86));
}

.contact-panel--info {
  background:
    linear-gradient(180deg, rgba(246, 238, 225, 0.92), rgba(252, 248, 241, 0.84));
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 49, 77, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 148px;
  padding: 16px 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 143, 131, 0.52);
  box-shadow: 0 0 0 4px rgba(47, 143, 131, 0.12);
}

.contact-routing {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 49, 77, 0.08);
}

.contact-routing strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.08rem;
}

.form-note {
  min-height: 3.2em;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.channel-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 49, 77, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.channel-card.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 242, 237, 0.82));
  border-color: rgba(47, 143, 131, 0.24);
}

.channel-card a {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--navy);
  word-break: break-word;
}

.contact-note {
  margin-top: 24px;
  padding: 24px;
}

.site-footer {
  padding: 0 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.footer-brand,
.footer-links {
  padding: 22px 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 88px;
  flex: 0 0 auto;
  border-radius: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-weight: 800;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--text-soft);
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  padding: 24px 16px 52px;
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.10), transparent 26%),
    radial-gradient(circle at 100% 0, rgba(45, 27, 78, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f4efe7 48%, #f8f4ee 100%);
}

.legal-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  position: relative;
}

.legal-header {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  box-shadow:
    0 26px 60px rgba(16, 29, 46, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.back-link {
  width: fit-content;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 49, 77, 0.08);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  transform: translateY(-2px);
  color: var(--navy);
  border-color: rgba(47, 143, 131, 0.28);
  box-shadow: 0 14px 26px rgba(16, 29, 46, 0.08);
}

.legal-shell section {
  position: relative;
  margin-bottom: 18px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
  box-shadow:
    0 18px 42px rgba(16, 29, 46, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.legal-shell section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.88), rgba(45, 27, 78, 0.62));
}

.legal-shell section h2 {
  margin-bottom: 14px;
  color: var(--navy);
}

.legal-shell ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.legal-shell p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-shell section p + p,
.legal-shell section p + ul,
.legal-shell section ul + p {
  margin-top: 12px;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.legal-summary-card {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78));
  box-shadow:
    0 16px 34px rgba(16, 29, 46, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.legal-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-summary-card span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero,
  .offers-layout,
  .method-layout,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-signals,
  .promise-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-frame--main {
    height: 560px;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .floating-card {
    position: static;
    width: auto;
  }

  .method-visual {
    height: 540px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .section {
    padding: 74px 0;
  }

  .hero-actions,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button,
  .button--ghost {
    width: 100%;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .hero-frame--main {
    height: 440px;
  }

  .hero-stack,
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 24px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .legal-header,
  .legal-shell section {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    display: none;
  }

  .signal-card,
  .promise-card,
  .offer-card,
  .step-card,
  .trust-card,
  .footer-brand,
  .footer-links {
    padding: 22px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 54px;
  }

  .method-visual {
    height: 420px;
  }

  .hero-frame figcaption,
  .method-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
}
