:root {
  --navy: #012e60;
  --navy-dark: #001f42;
  --navy-soft: #244d78;
  --beige: #c8ab80;
  --beige-soft: #efe5d5;
  --paper: #fbf7ef;
  --white: #ffffff;
  --ink: #14243a;
  --muted: #667386;
  --line: rgba(1, 46, 96, 0.12);
  --shadow: 0 24px 70px rgba(1, 46, 96, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 171, 128, 0.22), transparent 34rem),
    linear-gradient(180deg, #fbf7ef 0%, #ffffff 48%, #fbf7ef 100%);
  line-height: 1.55;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.section-shell {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1080px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 12px 14px;
  background: rgba(251, 247, 239, 0.78);
  border: 1px solid rgba(1, 46, 96, 0.10);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(1, 46, 96, 0.08);
}

.brand img { width: 132px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 650;
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(1, 46, 96, 0.075);
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: 70px 0 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--navy-dark);
  font-size: clamp(2.45rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-dark);
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(1, 46, 96, 0.20);
}
.button.primary:hover { background: var(--navy-dark); }
.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.button.secondary:hover { background: rgba(1, 46, 96, 0.05); }
.button.full { width: 100%; }

.minimal-visual {
  position: relative;
  min-height: 460px;
}

.minimal-visual::before {
  content: "";
  position: absolute;
  inset: 44px 34px 58px 66px;
  border-radius: 56px;
  background: linear-gradient(145deg, var(--navy), #0c4b82);
  transform: rotate(-12deg);
  box-shadow: var(--shadow);
}

.minimal-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 260px;
  left: 0;
  bottom: 40px;
  border-radius: 42px;
  background: linear-gradient(145deg, var(--beige-soft), var(--beige));
  transform: rotate(12deg);
  opacity: 0.95;
}

.visual-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.visual-card-main {
  top: 78px;
  right: 4px;
  width: min(310px, 78%);
  min-height: 300px;
  padding: 24px;
  border-radius: var(--radius);
}

.visual-card-small {
  left: 18px;
  bottom: 54px;
  width: 250px;
  padding: 20px;
  border-radius: 24px;
}

.visual-card-small p {
  margin: 0;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.visual-card-small .line {
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px 0 10px 8px;
  background: var(--line);
}

.dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--beige);
}

.visual-tag {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200, 171, 128, 0.24);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-shape {
  position: relative;
  height: 155px;
  border-radius: 22px;
  border: 1px solid rgba(1, 46, 96, 0.12);
  background:
    linear-gradient(135deg, rgba(1, 46, 96, 0.07), transparent 56%),
    #fffaf3;
  overflow: hidden;
}

.package-shape::before,
.package-shape::after {
  content: "";
  position: absolute;
  background: rgba(1, 46, 96, 0.14);
}
.package-shape::before { width: 1px; height: 100%; left: 50%; top: 0; transform: rotate(28deg); }
.package-shape::after { height: 1px; width: 86%; left: 7%; top: 52%; }
.package-shape span:first-child {
  position: absolute;
  width: 68px;
  height: 68px;
  left: 28px;
  top: 28px;
  border-radius: 18px;
  background: var(--navy);
  opacity: 0.9;
}
.package-shape span:last-child {
  position: absolute;
  width: 84px;
  height: 84px;
  right: 26px;
  bottom: 20px;
  border-radius: 20px;
  background: var(--beige);
  opacity: 0.95;
}

.compact-section { padding: 40px 0 90px; }

.section-intro {
  max-width: 660px;
  margin-bottom: 34px;
}

.clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.clean-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.clean-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--beige);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.clean-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-band {
  padding: 82px 0;
  background: var(--navy-dark);
  color: var(--white);
}

.process-inner h2 {
  max-width: 520px;
  color: var(--white);
}

.process-inner .eyebrow { color: var(--beige-soft); }

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.process-line div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.process-line strong {
  display: block;
  margin-bottom: 8px;
  color: var(--beige-soft);
  font-size: 1rem;
}

.process-line p {
  max-width: 250px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cta {
  padding: 96px 0;
  text-align: center;
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer img { width: 118px; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a:hover { color: var(--navy); }


.thanks-section {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 120px;
}

.thanks-section h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
  padding: 96px 0 120px;
}

.contact-intro {
  position: sticky;
  top: 118px;
}

.contact-intro h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.contact-intro .lead a {
  color: var(--navy);
  font-weight: 750;
}

.email-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.optional {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(1, 46, 96, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea { resize: vertical; min-height: 190px; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(1, 46, 96, 0.38);
  box-shadow: 0 0 0 4px rgba(1, 46, 96, 0.08);
  background: var(--white);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    top: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .minimal-visual {
    min-height: 380px;
    max-width: 520px;
  }

  .contact-intro { position: static; }
  .clean-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .clean-card { min-height: auto; }
  .clean-card span { margin-bottom: 28px; }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header,
  .footer { width: min(100% - 26px, 1080px); }

  .hero {
    min-height: auto;
    padding: 44px 0 72px;
  }

  h1 { font-size: clamp(2.65rem, 17vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .minimal-visual { min-height: 330px; }
  .minimal-visual::before { inset: 34px 20px 54px 44px; border-radius: 40px; }
  .minimal-visual::after { width: 128px; height: 210px; }
  .visual-card-main { width: 250px; min-height: 260px; padding: 20px; }
  .visual-card-small { width: 215px; left: 0; bottom: 36px; }

  .compact-section { padding-bottom: 70px; }
  .process-band { padding: 66px 0; }
  .cta { padding: 76px 0; }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
