:root {
  --ivory: #f7f1e6;
  --ivory-2: #fffaf1;
  --paper: #fffdf8;
  --charcoal: #191818;
  --charcoal-2: #2b2729;
  --muted: #716a63;
  --line: rgba(25, 24, 24, 0.12);
  --line-strong: rgba(25, 24, 24, 0.22);
  --accent: #c9ff3d;
  --accent-2: #e0ff87;
  --plum: #322238;
  --taupe: #e9dfd0;
  --shadow: 0 24px 70px rgba(25, 24, 24, 0.13);
  --soft-shadow: 0 14px 36px rgba(25, 24, 24, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1160px;
  --header-height: 78px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(201, 255, 61, 0.24), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(50, 34, 56, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--ivory-2), var(--ivory));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(25, 24, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 24, 24, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 70%);
  z-index: -1;
}

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

img,
svg {
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--accent);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: min(calc(100% - 2rem), 1220px);
  margin: 0.85rem auto 0;
  padding: 0.72rem 0.78rem 0.72rem 1rem;
  border: 1px solid rgba(25, 24, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(25, 24, 24, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--accent);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 1px rgba(25, 24, 24, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a,
.nav-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: var(--charcoal-2);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(25, 24, 24, 0.07);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 0.24rem;
  color: var(--charcoal);
  background: var(--charcoal);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(25, 24, 24, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--plum);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: 7rem 0;
}

.section-shell.compact {
  padding: 4.6rem 0;
}

.hero,
.inquiry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 1rem);
}

.hero-copy,
.inquiry-intro {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subtitle,
.inquiry-intro > p {
  max-width: 610px;
  margin-bottom: 1.55rem;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.75rem;
}

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(25, 24, 24, 0.14);
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--charcoal);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(110, 145, 0, 0.18), inset 0 0 0 1px rgba(25, 24, 24, 0.1);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 42px rgba(110, 145, 0, 0.23), inset 0 0 0 1px rgba(25, 24, 24, 0.15);
}

.button-ghost {
  background: rgba(255, 253, 248, 0.66);
}

.button-ghost.dark {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.52);
  font-size: 0.83rem;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.flow-card {
  width: min(100%, 420px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 36px;
  padding: 1.25rem;
  background:
    linear-gradient(155deg, rgba(255, 253, 248, 0.94), rgba(247, 241, 230, 0.74)),
    radial-gradient(circle at top right, rgba(201, 255, 61, 0.38), transparent 40%);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.flow-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(201, 255, 61, 0.22);
}

.flow-card h2 {
  margin-bottom: 1.35rem;
  font-family: var(--font);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mini-field {
  height: 52px;
  margin-bottom: 0.75rem;
  border-radius: 16px;
  background: rgba(25, 24, 24, 0.07);
  border: 1px solid rgba(25, 24, 24, 0.08);
}

.mini-field.short {
  width: 72%;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1rem 0;
}

.choice-row span,
.mini-button {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--charcoal-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-button {
  justify-content: center;
  color: var(--charcoal);
  background: var(--accent);
  border-color: rgba(25, 24, 24, 0.12);
}

.orbit-card {
  position: absolute;
  z-index: 2;
  max-width: 190px;
  border: 1px solid rgba(25, 24, 24, 0.1);
  border-radius: 20px;
  padding: 0.86rem 0.9rem;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
  font-size: 0.88rem;
  line-height: 1.25;
}

.card-one {
  left: 0;
  top: 19%;
  transform: rotate(4deg);
}

.card-two {
  right: 0;
  bottom: 18%;
  transform: rotate(-4deg);
}

.orbit-ring {
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(25, 24, 24, 0.18);
  border-radius: 50%;
  animation: slow-spin 28s linear infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.card-grid,
.service-grid,
.process-track,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.three-cols,
.process-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.service-card,
.notice-card,
.legal-card,
.thank-card,
.inquiry-form,
.trust-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: var(--soft-shadow);
}

.info-card,
.step-card,
.service-card {
  padding: 1.25rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:hover,
.step-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(25, 24, 24, 0.11);
}

.info-card p,
.step-card p,
.service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.card-icon,
.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--accent-2);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  color: var(--plum);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.3em;
}

.fit-list {
  display: grid;
  gap: 0.75rem;
}

.fit-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.62);
}

.fit-list span {
  max-width: 360px;
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
}

.process-track {
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 24, 24, 0.22), transparent);
  z-index: -1;
}

.narrow-track {
  max-width: 980px;
  margin-inline: auto;
}

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

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background:
    linear-gradient(135deg, rgba(50, 34, 56, 0.97), rgba(25, 24, 24, 0.95)),
    radial-gradient(circle at top right, rgba(201, 255, 61, 0.28), transparent 40%);
  color: var(--paper);
}

.trust-panel p,
.trust-panel .eyebrow {
  color: rgba(255, 253, 248, 0.72);
}

.trust-panel h2 {
  color: var(--paper);
}

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

.trust-grid span {
  min-height: 94px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
}

.faq-list {
  max-width: 850px;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 10px 28px rgba(25, 24, 24, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 880;
  letter-spacing: -0.02em;
}

details p {
  margin: 0.85rem 0 0;
}

.cta-panel,
.thank-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.5rem, 6vw, 4rem);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(201, 255, 61, 0.27), transparent 40%),
    linear-gradient(135deg, var(--charcoal), var(--plum));
  color: var(--paper);
}

.cta-panel h2,
.thank-card h1 {
  color: var(--paper);
}

.cta-panel p,
.cta-panel .eyebrow,
.thank-card p,
.thank-card .eyebrow {
  color: rgba(255, 253, 248, 0.74);
}

.inquiry-hero {
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
}

.notice-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(201, 255, 61, 0.16);
}

.notice-card span {
  color: var(--muted);
  line-height: 1.55;
}

.inquiry-form {
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.82);
}

.form-header {
  margin-bottom: 1.2rem;
}

.form-header h2 {
  margin-bottom: 0.45rem;
  font-family: var(--font);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.form-header p {
  margin-bottom: 0;
}

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

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

label span {
  color: var(--charcoal-2);
  font-size: 0.88rem;
  font-weight: 850;
}

label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 24, 24, 0.14);
  border-radius: 16px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.92rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(50, 34, 56, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 255, 61, 0.25);
  background: #fff;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.14rem;
  accent-color: var(--charcoal);
}

.checkbox-row span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.form-error {
  margin: 0.4rem 0 0.8rem;
  color: #8a2d2d;
  font-weight: 800;
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 0.2rem;
}

.form-footnote {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.86rem;
}

.thank-you {
  min-height: calc(100vh - var(--header-height) - 6rem);
  display: grid;
  place-items: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--accent);
  font-size: 2rem;
  font-weight: 900;
}

.thank-card h1 {
  margin-inline: auto;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.thank-card > p {
  max-width: 660px;
  margin-inline: auto;
}

.thank-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}

.thank-steps div {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.thank-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--accent);
}

.thank-steps span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.legal-page {
  max-width: 900px;
}

.legal-card {
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.legal-card h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
}

.legal-card h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font);
  font-size: 1.2rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.site-footer {
  width: min(calc(100% - 2rem), 1220px);
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.62);
}

.site-footer div {
  display: grid;
  gap: 0.18rem;
}

.site-footer strong {
  letter-spacing: -0.02em;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--charcoal);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .section-shell {
    padding: 5.2rem 0;
  }

  .hero,
  .inquiry-hero,
  .split-layout,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .three-cols,
  .process-track,
  .service-grid,
  .thank-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-track::before {
    display: none;
  }

  .fit-list span {
    max-width: 300px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    position: sticky;
    top: 0.55rem;
    max-width: min(calc(100% - 1rem), 1220px);
    margin-top: 0.55rem;
    border-radius: 26px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .section-shell,
  .section-shell.compact {
    width: min(calc(100% - 1.15rem), var(--max));
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .hero-actions,
  .centered-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .flow-card {
    width: min(94%, 370px);
    border-radius: 28px;
    transform: rotate(-1deg);
  }

  .orbit-ring {
    inset: 8%;
  }

  .orbit-card {
    max-width: 150px;
    font-size: 0.78rem;
  }

  .card-one {
    left: 0.2rem;
    top: 5%;
  }

  .card-two {
    right: 0.2rem;
    bottom: 4%;
  }

  .three-cols,
  .process-track,
  .service-grid,
  .trust-grid,
  .form-grid,
  .thank-steps {
    grid-template-columns: 1fr;
  }

  .fit-list div {
    display: grid;
  }

  .fit-list span {
    max-width: none;
    text-align: left;
  }

  .inquiry-form {
    border-radius: 24px;
  }

  .site-footer {
    width: min(calc(100% - 1.15rem), 1220px);
    display: grid;
    border-radius: 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .nav-toggle {
    padding: 0.7rem 0.85rem;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* ==============================
   v1.1 visual refinement pass
   - fixed glass navigation
   - smaller type scale
   - tighter funnel spacing
   - more distinct consultation-flow palette
   ============================== */
:root {
  --ivory: #f2eee7;
  --ivory-2: #fbf8f1;
  --paper: #fffdf8;
  --charcoal: #1f1b24;
  --charcoal-2: #332c3a;
  --muted: #6f6874;
  --line: rgba(31, 27, 36, 0.11);
  --line-strong: rgba(31, 27, 36, 0.22);
  --accent: #baf4ff;
  --accent-2: #dfff6d;
  --plum: #291a31;
  --taupe: #e3d8cb;
  --shadow: 0 22px 60px rgba(31, 27, 36, 0.12);
  --soft-shadow: 0 12px 30px rgba(31, 27, 36, 0.075);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --header-height: 64px;
}

html {
  scroll-padding-top: 98px;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 255, 109, 0.20), transparent 29rem),
    radial-gradient(circle at 82% 8%, rgba(186, 244, 255, 0.32), transparent 28rem),
    radial-gradient(circle at 70% 46%, rgba(41, 26, 49, 0.075), transparent 34rem),
    linear-gradient(180deg, var(--ivory-2), var(--ivory));
}

body::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(31, 27, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 27, 36, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

main {
  padding-top: 92px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 2rem), 1120px);
  max-width: none;
  min-height: var(--header-height);
  margin: 0;
  padding: 0.52rem 0.6rem 0.52rem 0.78rem;
  transform: translateX(-50%);
  border-color: rgba(31, 27, 36, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(246, 241, 232, 0.76));
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 16px 38px rgba(31, 27, 36, 0.1);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: 0.78rem;
  letter-spacing: -0.07em;
}

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

.brand-copy small {
  font-size: 0.66rem;
}

.site-nav a,
.nav-toggle {
  padding: 0.58rem 0.78rem;
  font-size: 0.84rem;
}

.site-nav .nav-cta {
  background: var(--charcoal);
  box-shadow: 0 9px 22px rgba(31, 27, 36, 0.18);
}

.section-shell {
  padding: 5rem 0;
}

.section-shell.compact {
  padding: 3.4rem 0;
}

.hero,
.inquiry-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: calc(100svh - 118px);
}

h1,
h2 {
  letter-spacing: -0.052em;
  line-height: 0.96;
}

h1 {
  max-width: 660px;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 7.2vw, 6.35rem);
}

h2 {
  margin-bottom: 0.82rem;
  font-size: clamp(2rem, 4.2vw, 3.85rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

p {
  line-height: 1.62;
}

.eyebrow {
  margin-bottom: 0.68rem;
  color: var(--plum);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.hero-subtitle,
.inquiry-intro > p {
  max-width: 570px;
  margin-bottom: 1.15rem;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.58;
}

.hero-actions {
  gap: 0.62rem;
  margin-top: 1.25rem;
}

.button {
  min-height: 46px;
  padding: 0.76rem 1rem;
  font-size: 0.88rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 14px 28px rgba(54, 103, 116, 0.14), inset 0 0 0 1px rgba(31, 27, 36, 0.1);
}

.hero-proof {
  gap: 0.42rem;
  margin-top: 1rem;
}

.hero-proof span {
  padding: 0.38rem 0.62rem;
  font-size: 0.75rem;
}

.hero-visual {
  min-height: 480px;
}

.flow-card {
  width: min(100%, 372px);
  border-radius: 28px;
  padding: 1.05rem;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.96), rgba(242, 238, 231, 0.82)),
    radial-gradient(circle at 85% 0%, rgba(186, 244, 255, 0.48), transparent 44%);
  box-shadow: 0 24px 65px rgba(31, 27, 36, 0.14);
  transform: rotate(-1.25deg);
}

.flow-card::before {
  content: "";
  display: block;
  height: 6px;
  margin: 0 0 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), rgba(41, 26, 49, 0.2));
}

.flow-card-header {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(223, 255, 109, 0.18);
}

.flow-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

.mini-field {
  height: 44px;
  margin-bottom: 0.58rem;
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(31, 27, 36, 0.075), rgba(186, 244, 255, 0.25));
}

.choice-row {
  gap: 0.48rem;
  margin: 0.78rem 0;
}

.choice-row span,
.mini-button {
  min-height: 40px;
  font-size: 0.72rem;
}

.mini-button {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.orbit-card {
  max-width: 168px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 30px rgba(31, 27, 36, 0.1);
  font-size: 0.78rem;
}

.orbit-ring {
  inset: 16%;
  border-color: rgba(31, 27, 36, 0.13);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 1.45rem;
}

.info-card,
.step-card,
.service-card {
  padding: 1.05rem;
}

.info-card p,
.step-card p,
.service-card p {
  font-size: 0.88rem;
  line-height: 1.58;
}

.card-grid,
.service-grid,
.process-track,
.trust-grid {
  gap: 0.82rem;
}

.card-icon,
.step-number {
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: 0.78rem;
}

.split-layout {
  gap: clamp(1.25rem, 4vw, 3.6rem);
}

.fit-list {
  gap: 0.55rem;
}

.fit-list div {
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
}

.fit-list span {
  font-size: 0.86rem;
  line-height: 1.38;
}

.process-track::before {
  top: 1.9rem;
  opacity: 0.72;
}

.trust-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  padding: clamp(1.1rem, 3vw, 1.75rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(186, 244, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #211827, #2d1f35 48%, #15141a);
}

.trust-grid span {
  min-height: 74px;
  border-radius: 15px;
  padding: 0.82rem;
  font-size: 0.88rem;
}

details {
  padding: 0.78rem 0.95rem;
  border-radius: 14px;
}

details p {
  margin-top: 0.62rem;
}

.cta-panel,
.thank-card {
  max-width: 820px;
  padding: clamp(1.35rem, 4.5vw, 3rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(223, 255, 109, 0.20), transparent 38%),
    radial-gradient(circle at bottom right, rgba(186, 244, 255, 0.16), transparent 44%),
    linear-gradient(135deg, #1f1b24, #291a31);
}

.site-footer {
  width: min(calc(100% - 2rem), 1120px);
  margin-bottom: 0.8rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
}

.inquiry-form {
  border-radius: 24px;
}

.form-header {
  margin-bottom: 1rem;
}

.form-header h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.form-grid {
  gap: 0.65rem;
}

label {
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

input,
select,
textarea {
  border-radius: 13px;
  padding: 0.78rem 0.86rem;
}

textarea {
  min-height: 126px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(41, 26, 49, 0.45);
  box-shadow: 0 0 0 4px rgba(186, 244, 255, 0.32);
}

@media (max-width: 980px) {
  .section-shell {
    padding: 4rem 0;
  }

  .section-shell.compact {
    padding: 3rem 0;
  }

  .hero,
  .inquiry-hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  html {
    scroll-padding-top: 92px;
  }

  main {
    padding-top: 84px;
  }

  .site-header {
    position: fixed;
    top: 0.55rem;
    left: 50%;
    width: min(calc(100% - 1rem), 1120px);
    min-height: var(--header-height);
    margin: 0;
    padding: 0.5rem;
    transform: translateX(-50%);
    border-radius: 22px;
  }

  .site-nav {
    top: calc(100% + 0.42rem);
    background: rgba(255, 253, 248, 0.96);
  }

  .section-shell,
  .section-shell.compact {
    padding: 3.15rem 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9.5vw, 3.05rem);
  }

  .hero-subtitle,
  .inquiry-intro > p {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 370px;
  }

  .flow-card {
    width: min(92%, 340px);
    border-radius: 24px;
  }

  .orbit-ring {
    inset: 10%;
  }

  .orbit-card {
    max-width: 138px;
    font-size: 0.72rem;
  }

  .trust-panel,
  .cta-panel,
  .thank-card {
    border-radius: 20px;
  }

  .site-footer {
    width: min(calc(100% - 1.15rem), 1120px);
  }
}

@media (max-width: 430px) {
  main {
    padding-top: 80px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .hero-proof {
    display: grid;
  }
}
