:root {
  --ink: #17140f;
  --muted: #665f53;
  --line: rgba(23, 20, 15, 0.16);
  --paper: #f4efe5;
  --white: #ffffff;
  --gold: #c8891f;
  --teal: #247b73;
  --evergreen: #163d35;
  --charcoal: #17140f;
  --panel: #fbf7ef;
  --panel-strong: #fffaf0;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(200, 137, 31, 0.18), transparent 24%),
    radial-gradient(circle at 18% 58%, rgba(36, 123, 115, 0.1), transparent 28%),
    linear-gradient(180deg, #f4efe5 0%, #f1e8d9 48%, #f4efe5 100%);
  background-attachment: fixed;
  --sun-scroll: 0px;
}

body.is-locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 213, 104, 0.26), transparent 22%),
    radial-gradient(circle at 28% 76%, rgba(36, 123, 115, 0.11), transparent 28%);
  filter: blur(22px);
  opacity: 0.9;
  animation: pageGlow 22s ease-in-out infinite;
  pointer-events: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 167, 46, 0.78);
  outline-offset: 4px;
}

button,
.button,
.contact-link,
.site-nav a {
  cursor: pointer;
}

input,
textarea,
button {
  font: inherit;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 16%, rgba(198, 121, 22, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(244, 239, 229, 0.96), rgba(241, 232, 217, 0.98));
}

.password-gate.is-unlocked {
  display: none;
}

.password-card {
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid rgba(23, 20, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 30px 90px rgba(23, 20, 15, 0.14);
  backdrop-filter: blur(18px);
}

.password-card h2 {
  margin-bottom: 14px;
}

.password-card label {
  display: grid;
  gap: 8px;
  margin: 24px 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.password-card input {
  min-height: 48px;
  border: 1px solid rgba(23, 20, 15, 0.16);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.password-card .button {
  width: 100%;
  border: 0;
}

.password-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: #8d2e1f;
  font-size: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(244, 239, 229, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 47%, currentColor 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, currentColor 47%, currentColor 53%, transparent 54%);
  opacity: 0.9;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  margin-top: 6px;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 150px clamp(20px, 5vw, 64px) 34px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(23, 20, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 15, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 62%);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.9) 0%, rgba(244, 239, 229, 0.7) 48%, rgba(244, 239, 229, 0.08) 100%),
    linear-gradient(0deg, rgba(244, 239, 229, 0.72) 0%, rgba(244, 239, 229, 0.02) 62%);
}

.solar-orb {
  position: fixed;
  top: 11%;
  right: clamp(28px, 12vw, 180px);
  z-index: 0;
  width: clamp(250px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 244, 185, 0.68) 0 7%, rgba(245, 184, 58, 0.46) 20%, rgba(198, 121, 22, 0.28) 44%, rgba(198, 121, 22, 0.12) 64%, transparent 80%),
    radial-gradient(circle, rgba(245, 184, 58, 0.28), transparent 74%);
  box-shadow:
    0 0 150px rgba(198, 121, 22, 0.36),
    0 0 320px rgba(198, 121, 22, 0.24),
    0 0 480px rgba(36, 123, 115, 0.1);
  filter: blur(12px);
  opacity: 0.78;
  animation: solarPulse 10s ease-in-out infinite;
  pointer-events: none;
}

.solar-beam {
  position: fixed;
  z-index: 0;
  width: 72vw;
  height: 18vw;
  right: -8vw;
  top: 25%;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 107, 0.18), rgba(36, 123, 115, 0.07), transparent);
  filter: blur(24px);
  transform-origin: right center;
  pointer-events: none;
  animation: beamDrift 12s ease-in-out infinite;
}

.beam-one {
  transform: rotate(-12deg);
}

.beam-two {
  top: 38%;
  opacity: 0.65;
  transform: rotate(8deg);
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-bottom: 70px;
}

.hero,
.section,
.site-footer {
  isolation: isolate;
}

.hero > *,
.section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  max-width: 980px;
  font-size: clamp(68px, 10.5vw, 154px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
}

.mission-line {
  max-width: 720px;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(200, 137, 31, 0.48);
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button,
.site-nav a {
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 70px clamp(20px, 5vw, 64px);
  position: relative;
}

.intro-section {
  background: transparent;
  border-top: 0;
}

.intro-grid,
.approach-layout,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.intro-grid p,
.approach-layout p,
.contact p {
  margin-top: 8px;
  font-size: 19px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
  background: transparent;
}

.focus-card {
  min-height: 240px;
  padding: 30px;
  background: rgba(255, 250, 240, 0.34);
  border: 1px solid rgba(23, 20, 15, 0.09);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease;
}

.focus-card:hover {
  background: rgba(255, 250, 240, 0.72);
  transform: translateY(-2px);
}

.focus-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-card p {
  margin-bottom: 0;
}

.approach {
  background: transparent;
  color: var(--ink);
}

.approach p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 20px;
  border: 1px solid rgba(23, 20, 15, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.42);
  backdrop-filter: blur(14px);
}

.steps b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 18px;
}

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

.signals {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: 620px;
  background: var(--charcoal);
  color: var(--white);
}

.signal-panel {
  padding: 96px clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signal-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.signal-list {
  display: grid;
  align-content: center;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-list div {
  padding: 34px clamp(24px, 5vw, 52px);
  background: var(--panel);
}

.signal-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.signal-list span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.contact {
  background: transparent;
  border-top: 0;
}

@keyframes solarPulse {
  0%,
  100% {
    transform: translate3d(0, var(--sun-scroll), 0) scale(1);
    opacity: 0.78;
  }

  50% {
    transform: translate3d(0, var(--sun-scroll), 0) scale(1.06);
    opacity: 0.94;
  }
}

@keyframes beamDrift {
  0%,
  100% {
    translate: 0 var(--sun-scroll);
    opacity: 0.42;
  }

  50% {
    translate: -4vw calc(var(--sun-scroll) + 2vw);
    opacity: 0.82;
  }
}

@keyframes pageGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-4vw, 3vw, 0) scale(1.08);
  }
}

.contact-link {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-link span {
  flex: 0 0 auto;
  color: var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(23, 20, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 70px rgba(23, 20, 15, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 137, 31, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

.form-submit {
  width: 100%;
  border: 0;
}

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

.form-note a {
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: transparent;
  border-top: 1px solid rgba(23, 20, 15, 0.08);
  font-size: 14px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(20, 26, 30, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(244, 239, 229, 0.98);
    box-shadow: 0 18px 40px rgba(23, 20, 15, 0.12);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 16px;
  }

  .hero {
    min-height: 760px;
    padding-top: 128px;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  .solar-orb {
    top: 16%;
    right: -20px;
    width: 260px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(244, 239, 229, 0.94) 0%, rgba(244, 239, 229, 0.74) 55%, rgba(244, 239, 229, 0.18) 100%),
      linear-gradient(0deg, rgba(244, 239, 229, 0.82) 0%, rgba(244, 239, 229, 0.12) 70%);
  }

  .intro-grid,
  .approach-layout,
  .signals,
  .contact {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

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

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 720px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

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

  .section,
  .signal-panel {
    padding: 52px 18px;
  }

  .focus-card,
  .signal-list div {
    padding: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
