
:root {
  --navy: #101726;
  --navy-soft: #162033;
  --ivory: #f7f2ea;
  --surface: #fffdf8;
  --surface-soft: rgba(255,255,255,0.78);
  --line: rgba(16, 23, 38, 0.10);
  --line-strong: rgba(16, 23, 38, 0.16);
  --emerald: #0e655d;
  --emerald-deep: #0a4e48;
  --gold: #b38a4a;
  --sand: #e7dccb;
  --mist: #e7f0ed;
  --ink: #161b25;
  --muted: rgba(22, 27, 37, 0.68);
  --danger: #b85b44;
  --shadow-soft: 0 18px 38px rgba(16, 23, 38, 0.06);
  --shadow-lg: 0 30px 80px rgba(16, 23, 38, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arimo, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179,138,74,0.14), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(14,101,93,0.10), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f2ea 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
textarea { resize: vertical; }
[hidden] { display: none !important; }

.page-shell { min-height: 100vh; overflow: clip; }

.container {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 234, 0.82);
  border-bottom: 1px solid rgba(16,23,38,0.08);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: 218px;
  height: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.mobile-menu a {
  text-decoration: none;
  font-weight: 700;
  color: rgba(16,23,38,0.78);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  padding: 0 14px 14px;
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
}

.hero {
  padding: calc(32px + env(safe-area-inset-top, 0px)) 0 20px;
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.hero-copy,
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16,23,38,0.08);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(179,138,74,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,248,0.94));
}

.hero-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(16,23,38,0.98), rgba(16,23,38,0.92));
  color: #fff;
}

.eyebrow,
.section-tag,
.hero-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.section-tag {
  background: rgba(16,23,38,0.06);
  color: rgba(16,23,38,0.72);
}

.hero-copy h1,
.section-head h2,
.faq-copy h2,
.form-copy h2 {
  margin: 14px 0 10px;
  font-family: Cabin, Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(38px, 10vw, 70px);
  max-width: 12ch;
}

.hero-text,
.section-head p,
.form-copy p,
.note-card p,
.hero-card__footer p,
.service-card p,
.info-card p,
.process-card p,
.faq-answer p {
  margin: 0;
  line-height: 1.62;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-points span,
.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,23,38,0.08);
  background: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 700;
}

.hero-card__top strong {
  display: block;
  margin-top: 10px;
  font-family: Cabin, Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-card__stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-service {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-service__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  flex: 0 0 auto;
}

.hero-service__title {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-service__desc {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.5;
}

.hero-card__footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-card__footer p { color: rgba(255,255,255,0.78); }

.trust-bar {
  padding-bottom: 14px;
}

.trust-bar__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.trust-bar__row::-webkit-scrollbar { display: none; }

.section {
  padding: 24px 0;
}

.section--dark {
  background: linear-gradient(180deg, #111827, #0e1624);
  color: #fff;
}

.section--dark .section-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
}

.section--dark .section-head p,
.section--dark .service-card p,
.section--dark .info-card p {
  color: rgba(255,255,255,0.74);
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-head h2,
.faq-copy h2,
.form-copy h2 {
  font-size: clamp(30px, 8vw, 54px);
  max-width: 14ch;
}

.service-grid,
.why-grid,
.who-grid,
.process-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.info-card,
.process-card,
.note-card,
.form-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16,23,38,0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.90);
}

.service-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(14,101,93,0.07);
}

.service-card__accent {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.service-card h3,
.info-card h3,
.process-card h3,
.form-panel h3 {
  margin: 0 0 8px;
  font-family: Cabin, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.service-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(16,23,38,0.06);
  font-size: 12px;
  font-weight: 700;
  color: rgba(16,23,38,0.72);
}

.who-grid .info-card,
.section--dark .info-card {
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

.why-grid .info-card {
  padding: 20px;
}

.process-card {
  padding: 20px;
}

.process-card__num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(16,23,38,0.06);
  font-family: Cabin, Arial, sans-serif;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  gap: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16,23,38,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 70px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
}

.faq-question strong {
  font-size: 17px;
  line-height: 1.4;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16,23,38,0.06);
  flex: 0 0 auto;
  font-weight: 700;
}

.faq-answer {
  padding: 0 18px 18px;
}

.section--form {
  padding-bottom: 50px;
}

.form-layout {
  display: grid;
  gap: 18px;
}

.note-card {
  padding: 18px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(231,240,237,0.82));
}

.note-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-panel {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,248,0.96));
}

.intake-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16,23,38,0.58);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(16,23,38,0.12);
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.field textarea {
  min-height: 142px;
  padding: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.btn:focus-visible,
.site-nav a:focus-visible,
.mobile-menu a:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
.floating-cta:focus-visible {
  outline: none;
  border-color: rgba(14,101,93,0.42);
  box-shadow: 0 0 0 4px rgba(14,101,93,0.10);
}

.field--hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-meta {
  display: grid;
  gap: 8px;
}

.form-meta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  border: 1px solid transparent;
}

.form-feedback--error {
  color: var(--danger);
  background: rgba(184,91,68,0.08);
  border-color: rgba(184,91,68,0.14);
}

.form-feedback--success {
  color: var(--emerald);
  background: rgba(14,101,93,0.08);
  border-color: rgba(14,101,93,0.16);
}

.site-footer {
  padding: 26px 0 calc(92px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(16,23,38,0.08);
}

.footer-row {
  display: grid;
  gap: 14px;
}

.footer-row strong {
  display: block;
  font-size: 18px;
}

.footer-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  text-decoration: none;
  font-weight: 700;
}

.btn,
.floating-cta {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.btn:active,
.floating-cta:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  border-color: rgba(10,78,72,0.24);
  box-shadow: 0 16px 30px rgba(14,101,93,0.18);
}

.btn--ghost {
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  border-color: rgba(16,23,38,0.10);
  box-shadow: var(--shadow-soft);
}

.btn--submit {
  width: 100%;
}

.btn[disabled],
.menu-toggle[disabled] {
  opacity: .72;
  cursor: wait;
}

.btn__spinner {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: rotate .85s linear infinite;
}

.floating-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  background: linear-gradient(180deg, var(--navy), #0d1420);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 760px) {
  .container { width: min(var(--container), calc(100% - 42px)); }
  .site-nav { display: inline-flex; }
  .header-actions { display: inline-flex; }
  .menu-toggle, .mobile-menu, .floating-cta { display: none !important; }
  .hero { padding-top: 46px; }
  .hero-grid,
  .form-layout,
  .faq-layout { grid-template-columns: 1.08fr .92fr; align-items: start; }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 34px 0; }
  .footer-row { grid-template-columns: 1fr auto; align-items: center; }
  .footer-contact { align-items: flex-end; }
}

@media (min-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .who-grid,
  .why-grid,
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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